diff --git a/.fern/metadata.json b/.fern/metadata.json index 3594085a7..48234cab0 100644 --- a/.fern/metadata.json +++ b/.fern/metadata.json @@ -19,5 +19,5 @@ "packageManager": "yarn", "testFramework": "jest" }, - "sdkVersion": "3.0.1" + "sdkVersion": "3.0.2" } diff --git a/reference.md b/reference.md index ccb2348b5..2b28c1528 100644 --- a/reference.md +++ b/reference.md @@ -23885,9393 +23885,6 @@ await client.ticketing.webhookReceivers.create({ - - - - -## Accounting AccountDetails -
client.accounting.accountDetails.retrieve() -> Merge.AccountDetails -
-
- -#### 📝 Description - -
-
- -
-
- -Get details for a linked account. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.accountDetails.retrieve(); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**requestOptions:** `AccountDetailsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -## Accounting AccountToken -
client.accounting.accountToken.retrieve(public_token) -> Merge.AccountToken -
-
- -#### 📝 Description - -
-
- -
-
- -Returns the account token for the end user with the provided public token. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.accountToken.retrieve("public_token"); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**public_token:** `string` - -
-
- -
-
- -**requestOptions:** `AccountTokenClient.RequestOptions` - -
-
-
-
- - -
-
-
- -## Accounting AccountingPeriods -
client.accounting.accountingPeriods.list({ ...params }) -> Merge.PaginatedAccountingPeriodList -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a list of `AccountingPeriod` objects. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.accountingPeriods.list({ - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - pageSize: 1 -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.AccountingPeriodsListRequest` - -
-
- -
-
- -**requestOptions:** `AccountingPeriodsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.accountingPeriods.retrieve(id, { ...params }) -> Merge.AccountingPeriod -
-
- -#### 📝 Description - -
-
- -
-
- -Returns an `AccountingPeriod` object with the given `id`. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.accountingPeriods.retrieve("id", { - includeRemoteData: true, - includeShellData: true -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**id:** `string` - -
-
- -
-
- -**request:** `Merge.accounting.AccountingPeriodsRetrieveRequest` - -
-
- -
-
- -**requestOptions:** `AccountingPeriodsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -## Accounting Accounts -
client.accounting.accounts.list({ ...params }) -> Merge.PaginatedAccountList -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a list of `Account` objects. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.accounts.list({ - accountType: "account_type", - classification: "", - companyId: "company_id", - createdAfter: new Date("2024-01-15T09:30:00.000Z"), - createdBefore: new Date("2024-01-15T09:30:00.000Z"), - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - expand: "company", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - name: "name", - pageSize: 1, - remoteFields: "classification", - remoteId: "remote_id", - showEnumOrigins: "classification", - status: "" -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.AccountsListRequest` - -
-
- -
-
- -**requestOptions:** `AccountsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.accounts.create({ ...params }) -> Merge.AccountResponse -
-
- -#### 📝 Description - -
-
- -
-
- -Creates an `Account` object with the given values. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.accounts.create({ - isDebugMode: true, - runAsync: true, - model: {} -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.AccountEndpointRequest` - -
-
- -
-
- -**requestOptions:** `AccountsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.accounts.retrieve(id, { ...params }) -> Merge.Account -
-
- -#### 📝 Description - -
-
- -
-
- -Returns an `Account` object with the given `id`. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.accounts.retrieve("id", { - expand: "company", - includeRemoteData: true, - includeShellData: true, - remoteFields: "classification", - showEnumOrigins: "classification" -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**id:** `string` - -
-
- -
-
- -**request:** `Merge.accounting.AccountsRetrieveRequest` - -
-
- -
-
- -**requestOptions:** `AccountsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.accounts.metaPostRetrieve() -> Merge.MetaResponse -
-
- -#### 📝 Description - -
-
- -
-
- -Returns metadata for `Account` POSTs. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.accounts.metaPostRetrieve(); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**requestOptions:** `AccountsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -## Accounting Addresses -
client.accounting.addresses.retrieve(id, { ...params }) -> Merge.Address -
-
- -#### 📝 Description - -
-
- -
-
- -Returns an `Address` object with the given `id`. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.addresses.retrieve("id", { - includeRemoteData: true, - includeShellData: true, - remoteFields: "type", - showEnumOrigins: "type" -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**id:** `string` - -
-
- -
-
- -**request:** `Merge.accounting.AddressesRetrieveRequest` - -
-
- -
-
- -**requestOptions:** `AddressesClient.RequestOptions` - -
-
-
-
- - -
-
-
- -## Accounting AsyncPassthrough -
client.accounting.asyncPassthrough.create({ ...params }) -> Merge.AsyncPassthroughReciept -
-
- -#### 📝 Description - -
-
- -
-
- -Asynchronously pull data from an endpoint not currently supported by Merge. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.asyncPassthrough.create({ - method: "GET", - path: "/scooters" -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.DataPassthroughRequest` - -
-
- -
-
- -**requestOptions:** `AsyncPassthroughClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.asyncPassthrough.retrieve(async_passthrough_receipt_id) -> Merge.AsyncPassthroughRetrieveResponse -
-
- -#### 📝 Description - -
-
- -
-
- -Retrieves data from earlier async-passthrough POST request -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.asyncPassthrough.retrieve("async_passthrough_receipt_id"); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**async_passthrough_receipt_id:** `string` - -
-
- -
-
- -**requestOptions:** `AsyncPassthroughClient.RequestOptions` - -
-
-
-
- - -
-
-
- -## Accounting AsyncTasks -
client.accounting.asyncTasks.retrieve(id) -> Merge.AsyncPostTask -
-
- -#### 📝 Description - -
-
- -
-
- -Returns an `AsyncPostTask` object with the given `id`. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.asyncTasks.retrieve("id"); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**id:** `string` - -
-
- -
-
- -**requestOptions:** `AsyncTasksClient.RequestOptions` - -
-
-
-
- - -
-
-
- -## Accounting Attachments -
client.accounting.attachments.list({ ...params }) -> Merge.PaginatedAccountingAttachmentList -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a list of `AccountingAttachment` objects. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.attachments.list({ - companyId: "company_id", - createdAfter: new Date("2024-01-15T09:30:00.000Z"), - createdBefore: new Date("2024-01-15T09:30:00.000Z"), - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - pageSize: 1, - remoteId: "remote_id" -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.AttachmentsListRequest` - -
-
- -
-
- -**requestOptions:** `AttachmentsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.attachments.create({ ...params }) -> Merge.AccountingAttachmentResponse -
-
- -#### 📝 Description - -
-
- -
-
- -Creates an `AccountingAttachment` object with the given values. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.attachments.create({ - isDebugMode: true, - runAsync: true, - model: {} -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.AccountingAttachmentEndpointRequest` - -
-
- -
-
- -**requestOptions:** `AttachmentsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.attachments.retrieve(id, { ...params }) -> Merge.AccountingAttachment -
-
- -#### 📝 Description - -
-
- -
-
- -Returns an `AccountingAttachment` object with the given `id`. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.attachments.retrieve("id", { - includeRemoteData: true, - includeShellData: true -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**id:** `string` - -
-
- -
-
- -**request:** `Merge.accounting.AttachmentsRetrieveRequest` - -
-
- -
-
- -**requestOptions:** `AttachmentsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.attachments.metaPostRetrieve() -> Merge.MetaResponse -
-
- -#### 📝 Description - -
-
- -
-
- -Returns metadata for `AccountingAttachment` POSTs. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.attachments.metaPostRetrieve(); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**requestOptions:** `AttachmentsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -## Accounting AuditTrail -
client.accounting.auditTrail.list({ ...params }) -> Merge.PaginatedAuditLogEventList -
-
- -#### 📝 Description - -
-
- -
-
- -Gets a list of audit trail events. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.auditTrail.list({ - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - endDate: "end_date", - eventType: "event_type", - pageSize: 1, - startDate: "start_date", - userEmail: "user_email" -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.AuditTrailListRequest` - -
-
- -
-
- -**requestOptions:** `AuditTrailClient.RequestOptions` - -
-
-
-
- - -
-
-
- -## Accounting AvailableActions -
client.accounting.availableActions.retrieve() -> Merge.AvailableActions -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a list of models and actions available for an account. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.availableActions.retrieve(); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**requestOptions:** `AvailableActionsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -## Accounting BalanceSheets -
client.accounting.balanceSheets.list({ ...params }) -> Merge.PaginatedBalanceSheetList -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a list of `BalanceSheet` objects. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.balanceSheets.list({ - companyId: "company_id", - createdAfter: new Date("2024-01-15T09:30:00.000Z"), - createdBefore: new Date("2024-01-15T09:30:00.000Z"), - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - expand: "company", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - pageSize: 1, - remoteId: "remote_id" -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.BalanceSheetsListRequest` - -
-
- -
-
- -**requestOptions:** `BalanceSheetsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.balanceSheets.retrieve(id, { ...params }) -> Merge.BalanceSheet -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a `BalanceSheet` object with the given `id`. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.balanceSheets.retrieve("id", { - expand: "company", - includeRemoteData: true, - includeShellData: true -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**id:** `string` - -
-
- -
-
- -**request:** `Merge.accounting.BalanceSheetsRetrieveRequest` - -
-
- -
-
- -**requestOptions:** `BalanceSheetsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -## Accounting BankFeedAccounts -
client.accounting.bankFeedAccounts.list({ ...params }) -> Merge.PaginatedBankFeedAccountList -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a list of `BankFeedAccount` objects. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.bankFeedAccounts.list({ - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - pageSize: 1 -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.BankFeedAccountsListRequest` - -
-
- -
-
- -**requestOptions:** `BankFeedAccountsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.bankFeedAccounts.create({ ...params }) -> Merge.BankFeedAccountResponse -
-
- -#### 📝 Description - -
-
- -
-
- -Creates a `BankFeedAccount` object with the given values. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.bankFeedAccounts.create({ - isDebugMode: true, - runAsync: true, - model: {} -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.BankFeedAccountEndpointRequest` - -
-
- -
-
- -**requestOptions:** `BankFeedAccountsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.bankFeedAccounts.retrieve(id, { ...params }) -> Merge.BankFeedAccount -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a `BankFeedAccount` object with the given `id`. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.bankFeedAccounts.retrieve("id", { - includeRemoteData: true, - includeShellData: true -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**id:** `string` - -
-
- -
-
- -**request:** `Merge.accounting.BankFeedAccountsRetrieveRequest` - -
-
- -
-
- -**requestOptions:** `BankFeedAccountsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.bankFeedAccounts.metaPostRetrieve() -> Merge.MetaResponse -
-
- -#### 📝 Description - -
-
- -
-
- -Returns metadata for `BankFeedAccount` POSTs. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.bankFeedAccounts.metaPostRetrieve(); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**requestOptions:** `BankFeedAccountsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -## Accounting BankFeedTransactions -
client.accounting.bankFeedTransactions.list({ ...params }) -> Merge.PaginatedBankFeedTransactionList -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a list of `BankFeedTransaction` objects. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.bankFeedTransactions.list({ - createdAfter: new Date("2024-01-15T09:30:00.000Z"), - createdBefore: new Date("2024-01-15T09:30:00.000Z"), - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - expand: "bank_feed_account", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - isProcessed: true, - modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - pageSize: 1, - remoteId: "remote_id" -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.BankFeedTransactionsListRequest` - -
-
- -
-
- -**requestOptions:** `BankFeedTransactionsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.bankFeedTransactions.create({ ...params }) -> Merge.BankFeedTransactionResponse -
-
- -#### 📝 Description - -
-
- -
-
- -Creates a `BankFeedTransaction` object with the given values. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.bankFeedTransactions.create({ - isDebugMode: true, - runAsync: true, - model: {} -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.BankFeedTransactionEndpointRequest` - -
-
- -
-
- -**requestOptions:** `BankFeedTransactionsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.bankFeedTransactions.retrieve(id, { ...params }) -> Merge.BankFeedTransaction -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a `BankFeedTransaction` object with the given `id`. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.bankFeedTransactions.retrieve("id", { - expand: "bank_feed_account", - includeRemoteData: true, - includeShellData: true -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**id:** `string` - -
-
- -
-
- -**request:** `Merge.accounting.BankFeedTransactionsRetrieveRequest` - -
-
- -
-
- -**requestOptions:** `BankFeedTransactionsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.bankFeedTransactions.metaPostRetrieve() -> Merge.MetaResponse -
-
- -#### 📝 Description - -
-
- -
-
- -Returns metadata for `BankFeedTransaction` POSTs. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.bankFeedTransactions.metaPostRetrieve(); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**requestOptions:** `BankFeedTransactionsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -## Accounting CashFlowStatements -
client.accounting.cashFlowStatements.list({ ...params }) -> Merge.PaginatedCashFlowStatementList -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a list of `CashFlowStatement` objects. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.cashFlowStatements.list({ - companyId: "company_id", - createdAfter: new Date("2024-01-15T09:30:00.000Z"), - createdBefore: new Date("2024-01-15T09:30:00.000Z"), - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - expand: "company", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - pageSize: 1, - remoteId: "remote_id" -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.CashFlowStatementsListRequest` - -
-
- -
-
- -**requestOptions:** `CashFlowStatementsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.cashFlowStatements.retrieve(id, { ...params }) -> Merge.CashFlowStatement -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a `CashFlowStatement` object with the given `id`. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.cashFlowStatements.retrieve("id", { - expand: "company", - includeRemoteData: true, - includeShellData: true -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**id:** `string` - -
-
- -
-
- -**request:** `Merge.accounting.CashFlowStatementsRetrieveRequest` - -
-
- -
-
- -**requestOptions:** `CashFlowStatementsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -## Accounting CompanyInfo -
client.accounting.companyInfo.list({ ...params }) -> Merge.PaginatedCompanyInfoList -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a list of `CompanyInfo` objects. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.companyInfo.list({ - createdAfter: new Date("2024-01-15T09:30:00.000Z"), - createdBefore: new Date("2024-01-15T09:30:00.000Z"), - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - expand: "addresses", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - pageSize: 1, - remoteId: "remote_id" -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.CompanyInfoListRequest` - -
-
- -
-
- -**requestOptions:** `CompanyInfoClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.companyInfo.retrieve(id, { ...params }) -> Merge.CompanyInfo -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a `CompanyInfo` object with the given `id`. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.companyInfo.retrieve("id", { - expand: "addresses", - includeRemoteData: true, - includeShellData: true -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**id:** `string` - -
-
- -
-
- -**request:** `Merge.accounting.CompanyInfoRetrieveRequest` - -
-
- -
-
- -**requestOptions:** `CompanyInfoClient.RequestOptions` - -
-
-
-
- - -
-
-
- -## Accounting Contacts -
client.accounting.contacts.list({ ...params }) -> Merge.PaginatedContactList -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a list of `Contact` objects. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.contacts.list({ - companyId: "company_id", - createdAfter: new Date("2024-01-15T09:30:00.000Z"), - createdBefore: new Date("2024-01-15T09:30:00.000Z"), - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - emailAddress: "email_address", - expand: "addresses", - includeDeletedData: true, - includeRemoteData: true, - includeRemoteFields: true, - includeShellData: true, - isCustomer: "is_customer", - isSupplier: "is_supplier", - modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - name: "name", - pageSize: 1, - remoteFields: "status", - remoteId: "remote_id", - showEnumOrigins: "status", - status: "" -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.ContactsListRequest` - -
-
- -
-
- -**requestOptions:** `ContactsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.contacts.create({ ...params }) -> Merge.ContactResponse -
-
- -#### 📝 Description - -
-
- -
-
- -Creates a `Contact` object with the given values. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.contacts.create({ - isDebugMode: true, - runAsync: true, - model: {} -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.ContactEndpointRequest` - -
-
- -
-
- -**requestOptions:** `ContactsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.contacts.retrieve(id, { ...params }) -> Merge.Contact -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a `Contact` object with the given `id`. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.contacts.retrieve("id", { - expand: "addresses", - includeRemoteData: true, - includeRemoteFields: true, - includeShellData: true, - remoteFields: "status", - showEnumOrigins: "status" -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**id:** `string` - -
-
- -
-
- -**request:** `Merge.accounting.ContactsRetrieveRequest` - -
-
- -
-
- -**requestOptions:** `ContactsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.contacts.partialUpdate(id, { ...params }) -> Merge.ContactResponse -
-
- -#### 📝 Description - -
-
- -
-
- -Updates a `Contact` object with the given `id`. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.contacts.partialUpdate("id", { - isDebugMode: true, - runAsync: true, - model: {} -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**id:** `string` - -
-
- -
-
- -**request:** `Merge.accounting.PatchedContactEndpointRequest` - -
-
- -
-
- -**requestOptions:** `ContactsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.contacts.metaPatchRetrieve(id) -> Merge.MetaResponse -
-
- -#### 📝 Description - -
-
- -
-
- -Returns metadata for `Contact` PATCHs. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.contacts.metaPatchRetrieve("id"); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**id:** `string` - -
-
- -
-
- -**requestOptions:** `ContactsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.contacts.metaPostRetrieve() -> Merge.MetaResponse -
-
- -#### 📝 Description - -
-
- -
-
- -Returns metadata for `Contact` POSTs. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.contacts.metaPostRetrieve(); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**requestOptions:** `ContactsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.contacts.remoteFieldClassesList({ ...params }) -> Merge.PaginatedRemoteFieldClassList -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a list of `RemoteFieldClass` objects. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.contacts.remoteFieldClassesList({ - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - isCommonModelField: true, - isCustom: true, - pageSize: 1 -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.ContactsRemoteFieldClassesListRequest` - -
-
- -
-
- -**requestOptions:** `ContactsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -## Accounting CreditNotes -
client.accounting.creditNotes.list({ ...params }) -> Merge.PaginatedCreditNoteList -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a list of `CreditNote` objects. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.creditNotes.list({ - companyId: "company_id", - createdAfter: new Date("2024-01-15T09:30:00.000Z"), - createdBefore: new Date("2024-01-15T09:30:00.000Z"), - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - expand: "accounting_period", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - pageSize: 1, - remoteFields: "status", - remoteId: "remote_id", - showEnumOrigins: "status", - transactionDateAfter: new Date("2024-01-15T09:30:00.000Z"), - transactionDateBefore: new Date("2024-01-15T09:30:00.000Z") -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.CreditNotesListRequest` - -
-
- -
-
- -**requestOptions:** `CreditNotesClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.creditNotes.create({ ...params }) -> Merge.CreditNoteResponse -
-
- -#### 📝 Description - -
-
- -
-
- -Creates a `CreditNote` object with the given values. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.creditNotes.create({ - isDebugMode: true, - runAsync: true, - model: {} -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.CreditNoteEndpointRequest` - -
-
- -
-
- -**requestOptions:** `CreditNotesClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.creditNotes.retrieve(id, { ...params }) -> Merge.CreditNote -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a `CreditNote` object with the given `id`. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.creditNotes.retrieve("id", { - expand: "accounting_period", - includeRemoteData: true, - includeShellData: true, - remoteFields: "status", - showEnumOrigins: "status" -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**id:** `string` - -
-
- -
-
- -**request:** `Merge.accounting.CreditNotesRetrieveRequest` - -
-
- -
-
- -**requestOptions:** `CreditNotesClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.creditNotes.metaPostRetrieve() -> Merge.MetaResponse -
-
- -#### 📝 Description - -
-
- -
-
- -Returns metadata for `CreditNote` POSTs. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.creditNotes.metaPostRetrieve(); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**requestOptions:** `CreditNotesClient.RequestOptions` - -
-
-
-
- - -
-
-
- -## Accounting Scopes -
client.accounting.scopes.defaultScopesRetrieve() -> Merge.CommonModelScopeApi -
-
- -#### 📝 Description - -
-
- -
-
- -Get the default permissions for Merge Common Models and fields across all Linked Accounts of a given category. [Learn more](https://help.merge.dev/en/articles/5950052-common-model-and-field-scopes). -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.scopes.defaultScopesRetrieve(); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**requestOptions:** `ScopesClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.scopes.linkedAccountScopesRetrieve() -> Merge.CommonModelScopeApi -
-
- -#### 📝 Description - -
-
- -
-
- -Get all available permissions for Merge Common Models and fields for a single Linked Account. [Learn more](https://help.merge.dev/en/articles/5950052-common-model-and-field-scopes). -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.scopes.linkedAccountScopesRetrieve(); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**requestOptions:** `ScopesClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.scopes.linkedAccountScopesCreate({ ...params }) -> Merge.CommonModelScopeApi -
-
- -#### 📝 Description - -
-
- -
-
- -Update permissions for any Common Model or field for a single Linked Account. Any Scopes not set in this POST request will inherit the default Scopes. [Learn more](https://help.merge.dev/en/articles/5950052-common-model-and-field-scopes) -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.scopes.linkedAccountScopesCreate({ - commonModels: [{ - modelName: "Employee", - modelPermissions: { - "READ": { - isEnabled: true - }, - "WRITE": { - isEnabled: false - } - }, - fieldPermissions: { - enabledFields: ["avatar", "home_location"], - disabledFields: ["work_location"] - } - }, { - modelName: "Benefit", - modelPermissions: { - "WRITE": { - isEnabled: false - } - } - }] -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.LinkedAccountCommonModelScopeDeserializerRequest` - -
-
- -
-
- -**requestOptions:** `ScopesClient.RequestOptions` - -
-
-
-
- - -
-
-
- -## Accounting DeleteAccount -
client.accounting.deleteAccount.delete() -> void -
-
- -#### 📝 Description - -
-
- -
-
- -Delete a linked account. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.deleteAccount.delete(); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**requestOptions:** `DeleteAccountClient.RequestOptions` - -
-
-
-
- - -
-
-
- -## Accounting Employees -
client.accounting.employees.list({ ...params }) -> Merge.PaginatedEmployeeList -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a list of `Employee` objects. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.employees.list({ - companyId: "company_id", - createdAfter: new Date("2024-01-15T09:30:00.000Z"), - createdBefore: new Date("2024-01-15T09:30:00.000Z"), - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - expand: "company", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - pageSize: 1, - remoteId: "remote_id" -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.EmployeesListRequest` - -
-
- -
-
- -**requestOptions:** `EmployeesClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.employees.retrieve(id, { ...params }) -> Merge.Employee -
-
- -#### 📝 Description - -
-
- -
-
- -Returns an `Employee` object with the given `id`. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.employees.retrieve("id", { - expand: "company", - includeRemoteData: true, - includeShellData: true -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**id:** `string` - -
-
- -
-
- -**request:** `Merge.accounting.EmployeesRetrieveRequest` - -
-
- -
-
- -**requestOptions:** `EmployeesClient.RequestOptions` - -
-
-
-
- - -
-
-
- -## Accounting ExpenseReports -
client.accounting.expenseReports.list({ ...params }) -> Merge.PaginatedExpenseReportList -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a list of `ExpenseReport` objects. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.expenseReports.list({ - companyId: "company_id", - createdAfter: new Date("2024-01-15T09:30:00.000Z"), - createdBefore: new Date("2024-01-15T09:30:00.000Z"), - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - expand: "accounting_period", - includeDeletedData: true, - includeRemoteData: true, - includeRemoteFields: true, - includeShellData: true, - modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - pageSize: 1, - remoteId: "remote_id" -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.ExpenseReportsListRequest` - -
-
- -
-
- -**requestOptions:** `ExpenseReportsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.expenseReports.create({ ...params }) -> Merge.ExpenseReportResponse -
-
- -#### 📝 Description - -
-
- -
-
- -Creates an `ExpenseReport` object with the given values. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.expenseReports.create({ - isDebugMode: true, - runAsync: true, - model: { - trackingCategories: ["a1b2c3d4-e5f6-4a5b-9c3d-2e1f0a9b8c7d", "d4c3b2a1-9e8f-7g6h-5i4j-3k2l1m0n9o8p"] - } -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.ExpenseReportEndpointRequest` - -
-
- -
-
- -**requestOptions:** `ExpenseReportsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.expenseReports.linesList(expense_report_id, { ...params }) -> Merge.PaginatedExpenseReportLineList -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a list of `ExpenseReportLine` objects that point to a `ExpenseReport` with the given id. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.expenseReports.linesList("expense_report_id", { - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - expand: "account", - includeDeletedData: true, - includeRemoteData: true, - includeRemoteFields: true, - includeShellData: true, - pageSize: 1 -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**expense_report_id:** `string` - -
-
- -
-
- -**request:** `Merge.accounting.ExpenseReportsLinesListRequest` - -
-
- -
-
- -**requestOptions:** `ExpenseReportsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.expenseReports.retrieve(id, { ...params }) -> Merge.ExpenseReport -
-
- -#### 📝 Description - -
-
- -
-
- -Returns an `ExpenseReport` object with the given `id`. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.expenseReports.retrieve("id", { - expand: "accounting_period", - includeRemoteData: true, - includeRemoteFields: true, - includeShellData: true -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**id:** `string` - -
-
- -
-
- -**request:** `Merge.accounting.ExpenseReportsRetrieveRequest` - -
-
- -
-
- -**requestOptions:** `ExpenseReportsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.expenseReports.linesRemoteFieldClassesList({ ...params }) -> Merge.PaginatedRemoteFieldClassList -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a list of `RemoteFieldClass` objects. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.expenseReports.linesRemoteFieldClassesList({ - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - isCommonModelField: true, - isCustom: true, - pageSize: 1 -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.ExpenseReportsLinesRemoteFieldClassesListRequest` - -
-
- -
-
- -**requestOptions:** `ExpenseReportsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.expenseReports.metaPostRetrieve() -> Merge.MetaResponse -
-
- -#### 📝 Description - -
-
- -
-
- -Returns metadata for `ExpenseReport` POSTs. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.expenseReports.metaPostRetrieve(); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**requestOptions:** `ExpenseReportsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.expenseReports.remoteFieldClassesList({ ...params }) -> Merge.PaginatedRemoteFieldClassList -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a list of `RemoteFieldClass` objects. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.expenseReports.remoteFieldClassesList({ - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - isCommonModelField: true, - isCustom: true, - pageSize: 1 -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.ExpenseReportsRemoteFieldClassesListRequest` - -
-
- -
-
- -**requestOptions:** `ExpenseReportsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -## Accounting Expenses -
client.accounting.expenses.list({ ...params }) -> Merge.PaginatedExpenseList -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a list of `Expense` objects. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.expenses.list({ - companyId: "company_id", - createdAfter: new Date("2024-01-15T09:30:00.000Z"), - createdBefore: new Date("2024-01-15T09:30:00.000Z"), - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - expand: "account", - includeDeletedData: true, - includeRemoteData: true, - includeRemoteFields: true, - includeShellData: true, - modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - pageSize: 1, - remoteId: "remote_id", - transactionDateAfter: new Date("2024-01-15T09:30:00.000Z"), - transactionDateBefore: new Date("2024-01-15T09:30:00.000Z") -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.ExpensesListRequest` - -
-
- -
-
- -**requestOptions:** `ExpensesClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.expenses.create({ ...params }) -> Merge.ExpenseResponse -
-
- -#### 📝 Description - -
-
- -
-
- -Creates an `Expense` object with the given values. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.expenses.create({ - isDebugMode: true, - runAsync: true, - model: {} -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.ExpenseEndpointRequest` - -
-
- -
-
- -**requestOptions:** `ExpensesClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.expenses.retrieve(id, { ...params }) -> Merge.Expense -
-
- -#### 📝 Description - -
-
- -
-
- -Returns an `Expense` object with the given `id`. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.expenses.retrieve("id", { - expand: "account", - includeRemoteData: true, - includeRemoteFields: true, - includeShellData: true -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**id:** `string` - -
-
- -
-
- -**request:** `Merge.accounting.ExpensesRetrieveRequest` - -
-
- -
-
- -**requestOptions:** `ExpensesClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.expenses.linesRemoteFieldClassesList({ ...params }) -> Merge.PaginatedRemoteFieldClassList -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a list of `RemoteFieldClass` objects. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.expenses.linesRemoteFieldClassesList({ - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - isCommonModelField: true, - isCustom: true, - pageSize: 1 -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.ExpensesLinesRemoteFieldClassesListRequest` - -
-
- -
-
- -**requestOptions:** `ExpensesClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.expenses.metaPostRetrieve() -> Merge.MetaResponse -
-
- -#### 📝 Description - -
-
- -
-
- -Returns metadata for `Expense` POSTs. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.expenses.metaPostRetrieve(); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**requestOptions:** `ExpensesClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.expenses.remoteFieldClassesList({ ...params }) -> Merge.PaginatedRemoteFieldClassList -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a list of `RemoteFieldClass` objects. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.expenses.remoteFieldClassesList({ - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - isCommonModelField: true, - isCustom: true, - pageSize: 1 -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.ExpensesRemoteFieldClassesListRequest` - -
-
- -
-
- -**requestOptions:** `ExpensesClient.RequestOptions` - -
-
-
-
- - -
-
-
- -## Accounting FieldMapping -
client.accounting.fieldMapping.fieldMappingsRetrieve({ ...params }) -> Merge.FieldMappingApiInstanceResponse -
-
- -#### 📝 Description - -
-
- -
-
- -Get all Field Mappings for this Linked Account. Field Mappings are mappings between third-party Remote Fields and user defined Merge fields. [Learn more](https://docs.merge.dev/supplemental-data/field-mappings/overview/). -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.fieldMapping.fieldMappingsRetrieve({ - excludeRemoteFieldMetadata: true -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.FieldMappingsRetrieveRequest` - -
-
- -
-
- -**requestOptions:** `FieldMappingClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.fieldMapping.fieldMappingsCreate({ ...params }) -> Merge.FieldMappingInstanceResponse -
-
- -#### 📝 Description - -
-
- -
-
- -Create new Field Mappings that will be available after the next scheduled sync. This will cause the next sync for this Linked Account to sync **ALL** data from start. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.fieldMapping.fieldMappingsCreate({ - excludeRemoteFieldMetadata: true, - targetFieldName: "example_target_field_name", - targetFieldDescription: "this is a example description of the target field", - remoteFieldTraversalPath: ["example_remote_field"], - remoteMethod: "GET", - remoteUrlPath: "/example-url-path", - commonModelName: "ExampleCommonModel" -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.CreateFieldMappingRequest` - -
-
- -
-
- -**requestOptions:** `FieldMappingClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.fieldMapping.fieldMappingsDestroy(field_mapping_id) -> Merge.FieldMappingInstanceResponse -
-
- -#### 📝 Description - -
-
- -
-
- -Deletes Field Mappings for a Linked Account. All data related to this Field Mapping will be deleted and these changes will be reflected after the next scheduled sync. This will cause the next sync for this Linked Account to sync **ALL** data from start. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.fieldMapping.fieldMappingsDestroy("field_mapping_id"); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**field_mapping_id:** `string` - -
-
- -
-
- -**requestOptions:** `FieldMappingClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.fieldMapping.fieldMappingsPartialUpdate(field_mapping_id, { ...params }) -> Merge.FieldMappingInstanceResponse -
-
- -#### 📝 Description - -
-
- -
-
- -Create or update existing Field Mappings for a Linked Account. Changes will be reflected after the next scheduled sync. This will cause the next sync for this Linked Account to sync **ALL** data from start. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.fieldMapping.fieldMappingsPartialUpdate("field_mapping_id"); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**field_mapping_id:** `string` - -
-
- -
-
- -**request:** `Merge.accounting.PatchedEditFieldMappingRequest` - -
-
- -
-
- -**requestOptions:** `FieldMappingClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.fieldMapping.remoteFieldsRetrieve({ ...params }) -> Merge.RemoteFieldApiResponse -
-
- -#### 📝 Description - -
-
- -
-
- -Get all remote fields for a Linked Account. Remote fields are third-party fields that are accessible after initial sync if remote_data is enabled. You can use remote fields to override existing Merge fields or map a new Merge field. [Learn more](https://docs.merge.dev/supplemental-data/field-mappings/overview/). -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.fieldMapping.remoteFieldsRetrieve({ - commonModels: "common_models", - includeExampleValues: "include_example_values" -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.RemoteFieldsRetrieveRequest` - -
-
- -
-
- -**requestOptions:** `FieldMappingClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.fieldMapping.targetFieldsRetrieve() -> Merge.ExternalTargetFieldApiResponse -
-
- -#### 📝 Description - -
-
- -
-
- -Get all organization-wide Target Fields, this will not include any Linked Account specific Target Fields. Organization-wide Target Fields are additional fields appended to the Merge Common Model for all Linked Accounts in a category. [Learn more](https://docs.merge.dev/supplemental-data/field-mappings/target-fields/). -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.fieldMapping.targetFieldsRetrieve(); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**requestOptions:** `FieldMappingClient.RequestOptions` - -
-
-
-
- - -
-
-
- -## Accounting GeneralLedgerTransactions -
client.accounting.generalLedgerTransactions.list({ ...params }) -> Merge.PaginatedGeneralLedgerTransactionList -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a list of `GeneralLedgerTransaction` objects. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.generalLedgerTransactions.list({ - companyId: "company_id", - createdAfter: new Date("2024-01-15T09:30:00.000Z"), - createdBefore: new Date("2024-01-15T09:30:00.000Z"), - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - expand: "accounting_period", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - pageSize: 1, - postedDateAfter: new Date("2024-01-15T09:30:00.000Z"), - postedDateBefore: new Date("2024-01-15T09:30:00.000Z"), - remoteId: "remote_id" -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.GeneralLedgerTransactionsListRequest` - -
-
- -
-
- -**requestOptions:** `GeneralLedgerTransactionsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.generalLedgerTransactions.retrieve(id, { ...params }) -> Merge.GeneralLedgerTransaction -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a `GeneralLedgerTransaction` object with the given `id`. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.generalLedgerTransactions.retrieve("id", { - expand: "accounting_period", - includeRemoteData: true, - includeShellData: true -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**id:** `string` - -
-
- -
-
- -**request:** `Merge.accounting.GeneralLedgerTransactionsRetrieveRequest` - -
-
- -
-
- -**requestOptions:** `GeneralLedgerTransactionsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -## Accounting GenerateKey -
client.accounting.generateKey.create({ ...params }) -> Merge.RemoteKey -
-
- -#### 📝 Description - -
-
- -
-
- -Create a remote key. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.generateKey.create({ - name: "Remote Deployment Key 1" -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.GenerateRemoteKeyRequest` - -
-
- -
-
- -**requestOptions:** `GenerateKeyClient.RequestOptions` - -
-
-
-
- - -
-
-
- -## Accounting IncomeStatements -
client.accounting.incomeStatements.list({ ...params }) -> Merge.PaginatedIncomeStatementList -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a list of `IncomeStatement` objects. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.incomeStatements.list({ - companyId: "company_id", - createdAfter: new Date("2024-01-15T09:30:00.000Z"), - createdBefore: new Date("2024-01-15T09:30:00.000Z"), - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - expand: "company", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - pageSize: 1, - remoteId: "remote_id" -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.IncomeStatementsListRequest` - -
-
- -
-
- -**requestOptions:** `IncomeStatementsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.incomeStatements.retrieve(id, { ...params }) -> Merge.IncomeStatement -
-
- -#### 📝 Description - -
-
- -
-
- -Returns an `IncomeStatement` object with the given `id`. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.incomeStatements.retrieve("id", { - expand: "company", - includeRemoteData: true, - includeShellData: true -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**id:** `string` - -
-
- -
-
- -**request:** `Merge.accounting.IncomeStatementsRetrieveRequest` - -
-
- -
-
- -**requestOptions:** `IncomeStatementsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -## Accounting Invoices -
client.accounting.invoices.list({ ...params }) -> Merge.PaginatedInvoiceList -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a list of `Invoice` objects. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.invoices.list({ - companyId: "company_id", - contactId: "contact_id", - createdAfter: new Date("2024-01-15T09:30:00.000Z"), - createdBefore: new Date("2024-01-15T09:30:00.000Z"), - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - expand: "accounting_period", - includeDeletedData: true, - includeRemoteData: true, - includeRemoteFields: true, - includeShellData: true, - issueDateAfter: new Date("2024-01-15T09:30:00.000Z"), - issueDateBefore: new Date("2024-01-15T09:30:00.000Z"), - modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - number: "number", - pageSize: 1, - remoteFields: "type", - remoteId: "remote_id", - showEnumOrigins: "type", - status: "DRAFT", - type: "ACCOUNTS_PAYABLE" -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.InvoicesListRequest` - -
-
- -
-
- -**requestOptions:** `InvoicesClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.invoices.create({ ...params }) -> Merge.InvoiceResponse -
-
- -#### 📝 Description - -
-
- -
-
- -Creates an `Invoice` object with the given values. - Including a `PurchaseOrder` id in the `purchase_orders` property will generate an Accounts Payable Invoice from the specified Purchase Order(s). - -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.invoices.create({ - isDebugMode: true, - runAsync: true, - model: {} -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.InvoiceEndpointRequest` - -
-
- -
-
- -**requestOptions:** `InvoicesClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.invoices.retrieve(id, { ...params }) -> Merge.Invoice -
-
- -#### 📝 Description - -
-
- -
-
- -Returns an `Invoice` object with the given `id`. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.invoices.retrieve("id", { - expand: "accounting_period", - includeRemoteData: true, - includeRemoteFields: true, - includeShellData: true, - remoteFields: "type", - showEnumOrigins: "type" -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**id:** `string` - -
-
- -
-
- -**request:** `Merge.accounting.InvoicesRetrieveRequest` - -
-
- -
-
- -**requestOptions:** `InvoicesClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.invoices.partialUpdate(id, { ...params }) -> Merge.InvoiceResponse -
-
- -#### 📝 Description - -
-
- -
-
- -Updates an `Invoice` object with the given `id`. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.invoices.partialUpdate("id", { - isDebugMode: true, - runAsync: true, - model: {} -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**id:** `string` - -
-
- -
-
- -**request:** `Merge.accounting.PatchedInvoiceEndpointRequest` - -
-
- -
-
- -**requestOptions:** `InvoicesClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.invoices.lineItemsRemoteFieldClassesList({ ...params }) -> Merge.PaginatedRemoteFieldClassList -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a list of `RemoteFieldClass` objects. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.invoices.lineItemsRemoteFieldClassesList({ - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - isCommonModelField: true, - isCustom: true, - pageSize: 1 -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.InvoicesLineItemsRemoteFieldClassesListRequest` - -
-
- -
-
- -**requestOptions:** `InvoicesClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.invoices.metaPatchRetrieve(id) -> Merge.MetaResponse -
-
- -#### 📝 Description - -
-
- -
-
- -Returns metadata for `Invoice` PATCHs. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.invoices.metaPatchRetrieve("id"); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**id:** `string` - -
-
- -
-
- -**requestOptions:** `InvoicesClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.invoices.metaPostRetrieve() -> Merge.MetaResponse -
-
- -#### 📝 Description - -
-
- -
-
- -Returns metadata for `Invoice` POSTs. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.invoices.metaPostRetrieve(); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**requestOptions:** `InvoicesClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.invoices.remoteFieldClassesList({ ...params }) -> Merge.PaginatedRemoteFieldClassList -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a list of `RemoteFieldClass` objects. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.invoices.remoteFieldClassesList({ - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - isCommonModelField: true, - isCustom: true, - pageSize: 1 -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.InvoicesRemoteFieldClassesListRequest` - -
-
- -
-
- -**requestOptions:** `InvoicesClient.RequestOptions` - -
-
-
-
- - -
-
-
- -## Accounting Issues -
client.accounting.issues.list({ ...params }) -> Merge.PaginatedIssueList -
-
- -#### 📝 Description - -
-
- -
-
- -Gets all issues for Organization. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.issues.list({ - accountToken: "account_token", - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - endDate: "end_date", - endUserOrganizationName: "end_user_organization_name", - firstIncidentTimeAfter: new Date("2024-01-15T09:30:00.000Z"), - firstIncidentTimeBefore: new Date("2024-01-15T09:30:00.000Z"), - includeMuted: "include_muted", - integrationName: "integration_name", - lastIncidentTimeAfter: new Date("2024-01-15T09:30:00.000Z"), - lastIncidentTimeBefore: new Date("2024-01-15T09:30:00.000Z"), - linkedAccountId: "linked_account_id", - pageSize: 1, - startDate: "start_date", - status: "ONGOING" -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.IssuesListRequest` - -
-
- -
-
- -**requestOptions:** `IssuesClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.issues.retrieve(id) -> Merge.Issue -
-
- -#### 📝 Description - -
-
- -
-
- -Get a specific issue. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.issues.retrieve("id"); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**id:** `string` - -
-
- -
-
- -**requestOptions:** `IssuesClient.RequestOptions` - -
-
-
-
- - -
-
-
- -## Accounting Items -
client.accounting.items.list({ ...params }) -> Merge.PaginatedItemList -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a list of `Item` objects. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.items.list({ - companyId: "company_id", - createdAfter: new Date("2024-01-15T09:30:00.000Z"), - createdBefore: new Date("2024-01-15T09:30:00.000Z"), - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - expand: "company", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - pageSize: 1, - remoteFields: "status", - remoteId: "remote_id", - showEnumOrigins: "status" -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.ItemsListRequest` - -
-
- -
-
- -**requestOptions:** `ItemsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.items.create({ ...params }) -> Merge.ItemResponse -
-
- -#### 📝 Description - -
-
- -
-
- -Creates an `Item` object with the given values. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.items.create({ - isDebugMode: true, - runAsync: true, - model: {} -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.ItemEndpointRequest` - -
-
- -
-
- -**requestOptions:** `ItemsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.items.retrieve(id, { ...params }) -> Merge.Item -
-
- -#### 📝 Description - -
-
- -
-
- -Returns an `Item` object with the given `id`. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.items.retrieve("id", { - expand: "company", - includeRemoteData: true, - includeShellData: true, - remoteFields: "status", - showEnumOrigins: "status" -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**id:** `string` - -
-
- -
-
- -**request:** `Merge.accounting.ItemsRetrieveRequest` - -
-
- -
-
- -**requestOptions:** `ItemsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.items.partialUpdate(id, { ...params }) -> Merge.ItemResponse -
-
- -#### 📝 Description - -
-
- -
-
- -Updates an `Item` object with the given `id`. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.items.partialUpdate("id", { - isDebugMode: true, - runAsync: true, - model: {} -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**id:** `string` - -
-
- -
-
- -**request:** `Merge.accounting.PatchedItemEndpointRequest` - -
-
- -
-
- -**requestOptions:** `ItemsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.items.metaPatchRetrieve(id) -> Merge.MetaResponse -
-
- -#### 📝 Description - -
-
- -
-
- -Returns metadata for `Item` PATCHs. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.items.metaPatchRetrieve("id"); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**id:** `string` - -
-
- -
-
- -**requestOptions:** `ItemsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.items.metaPostRetrieve() -> Merge.MetaResponse -
-
- -#### 📝 Description - -
-
- -
-
- -Returns metadata for `Item` POSTs. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.items.metaPostRetrieve(); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**requestOptions:** `ItemsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -## Accounting JournalEntries -
client.accounting.journalEntries.list({ ...params }) -> Merge.PaginatedJournalEntryList -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a list of `JournalEntry` objects. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.journalEntries.list({ - companyId: "company_id", - createdAfter: new Date("2024-01-15T09:30:00.000Z"), - createdBefore: new Date("2024-01-15T09:30:00.000Z"), - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - expand: "accounting_period", - includeDeletedData: true, - includeRemoteData: true, - includeRemoteFields: true, - includeShellData: true, - modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - pageSize: 1, - remoteId: "remote_id", - transactionDateAfter: new Date("2024-01-15T09:30:00.000Z"), - transactionDateBefore: new Date("2024-01-15T09:30:00.000Z") -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.JournalEntriesListRequest` - -
-
- -
-
- -**requestOptions:** `JournalEntriesClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.journalEntries.create({ ...params }) -> Merge.JournalEntryResponse -
-
- -#### 📝 Description - -
-
- -
-
- -Creates a `JournalEntry` object with the given values. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.journalEntries.create({ - isDebugMode: true, - runAsync: true, - model: {} -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.JournalEntryEndpointRequest` - -
-
- -
-
- -**requestOptions:** `JournalEntriesClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.journalEntries.retrieve(id, { ...params }) -> Merge.JournalEntry -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a `JournalEntry` object with the given `id`. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.journalEntries.retrieve("id", { - expand: "accounting_period", - includeRemoteData: true, - includeRemoteFields: true, - includeShellData: true -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**id:** `string` - -
-
- -
-
- -**request:** `Merge.accounting.JournalEntriesRetrieveRequest` - -
-
- -
-
- -**requestOptions:** `JournalEntriesClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.journalEntries.linesRemoteFieldClassesList({ ...params }) -> Merge.PaginatedRemoteFieldClassList -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a list of `RemoteFieldClass` objects. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.journalEntries.linesRemoteFieldClassesList({ - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - isCommonModelField: true, - isCustom: true, - pageSize: 1 -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.JournalEntriesLinesRemoteFieldClassesListRequest` - -
-
- -
-
- -**requestOptions:** `JournalEntriesClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.journalEntries.metaPostRetrieve() -> Merge.MetaResponse -
-
- -#### 📝 Description - -
-
- -
-
- -Returns metadata for `JournalEntry` POSTs. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.journalEntries.metaPostRetrieve(); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**requestOptions:** `JournalEntriesClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.journalEntries.remoteFieldClassesList({ ...params }) -> Merge.PaginatedRemoteFieldClassList -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a list of `RemoteFieldClass` objects. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.journalEntries.remoteFieldClassesList({ - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - isCommonModelField: true, - isCustom: true, - pageSize: 1 -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.JournalEntriesRemoteFieldClassesListRequest` - -
-
- -
-
- -**requestOptions:** `JournalEntriesClient.RequestOptions` - -
-
-
-
- - -
-
-
- -## Accounting LinkToken -
client.accounting.linkToken.create({ ...params }) -> Merge.LinkToken -
-
- -#### 📝 Description - -
-
- -
-
- -Creates a link token to be used when linking a new end user. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.linkToken.create({ - endUserEmailAddress: "example@gmail.com", - endUserOrganizationName: "Test Organization", - endUserOriginId: "12345", - categories: ["hris", "ats"] -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.EndUserDetailsRequest` - -
-
- -
-
- -**requestOptions:** `LinkTokenClient.RequestOptions` - -
-
-
-
- - -
-
-
- -## Accounting LinkedAccounts -
client.accounting.linkedAccounts.list({ ...params }) -> Merge.PaginatedAccountDetailsAndActionsList -
-
- -#### 📝 Description - -
-
- -
-
- -List linked accounts for your organization. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.linkedAccounts.list({ - category: "accounting", - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - endUserEmailAddress: "end_user_email_address", - endUserOrganizationName: "end_user_organization_name", - endUserOriginId: "end_user_origin_id", - endUserOriginIds: "end_user_origin_ids", - id: "id", - ids: "ids", - includeDuplicates: true, - integrationName: "integration_name", - isTestAccount: "is_test_account", - pageSize: 1, - status: "status" -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.LinkedAccountsListRequest` - -
-
- -
-
- -**requestOptions:** `LinkedAccountsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -## Accounting Passthrough -
client.accounting.passthrough.create({ ...params }) -> Merge.RemoteResponse -
-
- -#### 📝 Description - -
-
- -
-
- -Pull data from an endpoint not currently supported by Merge. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.passthrough.create({ - method: "GET", - path: "/scooters" -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.DataPassthroughRequest` - -
-
- -
-
- -**requestOptions:** `PassthroughClient.RequestOptions` - -
-
-
-
- - -
-
-
- -## Accounting PaymentMethods -
client.accounting.paymentMethods.list({ ...params }) -> Merge.PaginatedPaymentMethodList -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a list of `PaymentMethod` objects. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.paymentMethods.list({ - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - pageSize: 1 -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.PaymentMethodsListRequest` - -
-
- -
-
- -**requestOptions:** `PaymentMethodsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.paymentMethods.retrieve(id, { ...params }) -> Merge.PaymentMethod -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a `PaymentMethod` object with the given `id`. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.paymentMethods.retrieve("id", { - includeRemoteData: true, - includeShellData: true -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**id:** `string` - -
-
- -
-
- -**request:** `Merge.accounting.PaymentMethodsRetrieveRequest` - -
-
- -
-
- -**requestOptions:** `PaymentMethodsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -## Accounting PaymentTerms -
client.accounting.paymentTerms.list({ ...params }) -> Merge.PaginatedPaymentTermList -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a list of `PaymentTerm` objects. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.paymentTerms.list({ - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - expand: "company", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - pageSize: 1 -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.PaymentTermsListRequest` - -
-
- -
-
- -**requestOptions:** `PaymentTermsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.paymentTerms.retrieve(id, { ...params }) -> Merge.PaymentTerm -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a `PaymentTerm` object with the given `id`. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.paymentTerms.retrieve("id", { - expand: "company", - includeRemoteData: true, - includeShellData: true -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**id:** `string` - -
-
- -
-
- -**request:** `Merge.accounting.PaymentTermsRetrieveRequest` - -
-
- -
-
- -**requestOptions:** `PaymentTermsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -## Accounting Payments -
client.accounting.payments.list({ ...params }) -> Merge.PaginatedPaymentList -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a list of `Payment` objects. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.payments.list({ - accountId: "account_id", - companyId: "company_id", - contactId: "contact_id", - createdAfter: new Date("2024-01-15T09:30:00.000Z"), - createdBefore: new Date("2024-01-15T09:30:00.000Z"), - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - expand: "account", - includeDeletedData: true, - includeRemoteData: true, - includeRemoteFields: true, - includeShellData: true, - modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - pageSize: 1, - remoteId: "remote_id", - transactionDateAfter: new Date("2024-01-15T09:30:00.000Z"), - transactionDateBefore: new Date("2024-01-15T09:30:00.000Z") -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.PaymentsListRequest` - -
-
- -
-
- -**requestOptions:** `PaymentsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.payments.create({ ...params }) -> Merge.PaymentResponse -
-
- -#### 📝 Description - -
-
- -
-
- -Creates a `Payment` object with the given values. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.payments.create({ - isDebugMode: true, - runAsync: true, - model: {} -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.PaymentEndpointRequest` - -
-
- -
-
- -**requestOptions:** `PaymentsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.payments.retrieve(id, { ...params }) -> Merge.Payment -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a `Payment` object with the given `id`. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.payments.retrieve("id", { - expand: "account", - includeRemoteData: true, - includeRemoteFields: true, - includeShellData: true -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**id:** `string` - -
-
- -
-
- -**request:** `Merge.accounting.PaymentsRetrieveRequest` - -
-
- -
-
- -**requestOptions:** `PaymentsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.payments.partialUpdate(id, { ...params }) -> Merge.PaymentResponse -
-
- -#### 📝 Description - -
-
- -
-
- -Updates a `Payment` object with the given `id`. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.payments.partialUpdate("id", { - isDebugMode: true, - runAsync: true, - model: {} -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**id:** `string` - -
-
- -
-
- -**request:** `Merge.accounting.PatchedPaymentEndpointRequest` - -
-
- -
-
- -**requestOptions:** `PaymentsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.payments.lineItemsRemoteFieldClassesList({ ...params }) -> Merge.PaginatedRemoteFieldClassList -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a list of `RemoteFieldClass` objects. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.payments.lineItemsRemoteFieldClassesList({ - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - isCommonModelField: true, - isCustom: true, - pageSize: 1 -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.PaymentsLineItemsRemoteFieldClassesListRequest` - -
-
- -
-
- -**requestOptions:** `PaymentsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.payments.metaPatchRetrieve(id) -> Merge.MetaResponse -
-
- -#### 📝 Description - -
-
- -
-
- -Returns metadata for `Payment` PATCHs. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.payments.metaPatchRetrieve("id"); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**id:** `string` - -
-
- -
-
- -**requestOptions:** `PaymentsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.payments.metaPostRetrieve() -> Merge.MetaResponse -
-
- -#### 📝 Description - -
-
- -
-
- -Returns metadata for `Payment` POSTs. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.payments.metaPostRetrieve(); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**requestOptions:** `PaymentsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.payments.remoteFieldClassesList({ ...params }) -> Merge.PaginatedRemoteFieldClassList -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a list of `RemoteFieldClass` objects. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.payments.remoteFieldClassesList({ - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - isCommonModelField: true, - isCustom: true, - pageSize: 1 -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.PaymentsRemoteFieldClassesListRequest` - -
-
- -
-
- -**requestOptions:** `PaymentsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -## Accounting PhoneNumbers -
client.accounting.phoneNumbers.retrieve(id, { ...params }) -> Merge.AccountingPhoneNumber -
-
- -#### 📝 Description - -
-
- -
-
- -Returns an `AccountingPhoneNumber` object with the given `id`. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.phoneNumbers.retrieve("id", { - includeRemoteData: true, - includeShellData: true -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**id:** `string` - -
-
- -
-
- -**request:** `Merge.accounting.PhoneNumbersRetrieveRequest` - -
-
- -
-
- -**requestOptions:** `PhoneNumbersClient.RequestOptions` - -
-
-
-
- - -
-
-
- -## Accounting Projects -
client.accounting.projects.list({ ...params }) -> Merge.PaginatedProjectList -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a list of `Project` objects. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.projects.list({ - companyId: "company_id", - createdAfter: new Date("2024-01-15T09:30:00.000Z"), - createdBefore: new Date("2024-01-15T09:30:00.000Z"), - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - expand: "company", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - pageSize: 1, - remoteId: "remote_id" -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.ProjectsListRequest` - -
-
- -
-
- -**requestOptions:** `ProjectsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.projects.retrieve(id, { ...params }) -> Merge.Project -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a `Project` object with the given `id`. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.projects.retrieve("id", { - expand: "company", - includeRemoteData: true, - includeShellData: true -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**id:** `string` - -
-
- -
-
- -**request:** `Merge.accounting.ProjectsRetrieveRequest` - -
-
- -
-
- -**requestOptions:** `ProjectsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -## Accounting PurchaseOrders -
client.accounting.purchaseOrders.list({ ...params }) -> Merge.PaginatedPurchaseOrderList -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a list of `PurchaseOrder` objects. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.purchaseOrders.list({ - companyId: "company_id", - createdAfter: new Date("2024-01-15T09:30:00.000Z"), - createdBefore: new Date("2024-01-15T09:30:00.000Z"), - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - expand: "accounting_period", - includeDeletedData: true, - includeRemoteData: true, - includeRemoteFields: true, - includeShellData: true, - issueDateAfter: new Date("2024-01-15T09:30:00.000Z"), - issueDateBefore: new Date("2024-01-15T09:30:00.000Z"), - modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - pageSize: 1, - remoteFields: "status", - remoteId: "remote_id", - showEnumOrigins: "status" -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.PurchaseOrdersListRequest` - -
-
- -
-
- -**requestOptions:** `PurchaseOrdersClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.purchaseOrders.create({ ...params }) -> Merge.PurchaseOrderResponse -
-
- -#### 📝 Description - -
-
- -
-
- -Creates a `PurchaseOrder` object with the given values. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.purchaseOrders.create({ - isDebugMode: true, - runAsync: true, - model: {} -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.PurchaseOrderEndpointRequest` - -
-
- -
-
- -**requestOptions:** `PurchaseOrdersClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.purchaseOrders.retrieve(id, { ...params }) -> Merge.PurchaseOrder -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a `PurchaseOrder` object with the given `id`. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.purchaseOrders.retrieve("id", { - expand: "accounting_period", - includeRemoteData: true, - includeRemoteFields: true, - includeShellData: true, - remoteFields: "status", - showEnumOrigins: "status" -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**id:** `string` - -
-
- -
-
- -**request:** `Merge.accounting.PurchaseOrdersRetrieveRequest` - -
-
- -
-
- -**requestOptions:** `PurchaseOrdersClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.purchaseOrders.lineItemsRemoteFieldClassesList({ ...params }) -> Merge.PaginatedRemoteFieldClassList -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a list of `RemoteFieldClass` objects. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.purchaseOrders.lineItemsRemoteFieldClassesList({ - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - isCommonModelField: true, - isCustom: true, - pageSize: 1 -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.PurchaseOrdersLineItemsRemoteFieldClassesListRequest` - -
-
- -
-
- -**requestOptions:** `PurchaseOrdersClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.purchaseOrders.metaPostRetrieve() -> Merge.MetaResponse -
-
- -#### 📝 Description - -
-
- -
-
- -Returns metadata for `PurchaseOrder` POSTs. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.purchaseOrders.metaPostRetrieve(); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**requestOptions:** `PurchaseOrdersClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.purchaseOrders.remoteFieldClassesList({ ...params }) -> Merge.PaginatedRemoteFieldClassList -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a list of `RemoteFieldClass` objects. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.purchaseOrders.remoteFieldClassesList({ - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - isCommonModelField: true, - isCustom: true, - pageSize: 1 -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.PurchaseOrdersRemoteFieldClassesListRequest` - -
-
- -
-
- -**requestOptions:** `PurchaseOrdersClient.RequestOptions` - -
-
-
-
- - -
-
-
- -## Accounting RegenerateKey -
client.accounting.regenerateKey.create({ ...params }) -> Merge.RemoteKey -
-
- -#### 📝 Description - -
-
- -
-
- -Exchange remote keys. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.regenerateKey.create({ - name: "Remote Deployment Key 1" -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.RemoteKeyForRegenerationRequest` - -
-
- -
-
- -**requestOptions:** `RegenerateKeyClient.RequestOptions` - -
-
-
-
- - -
-
-
- -## Accounting SyncStatus -
client.accounting.syncStatus.list({ ...params }) -> Merge.PaginatedSyncStatusList -
-
- -#### 📝 Description - -
-
- -
-
- -Get sync status for the current sync and the most recently finished sync. `last_sync_start` represents the most recent time any sync began. `last_sync_finished` represents the most recent time any sync completed. These timestamps may correspond to different sync instances which may result in a sync start time being later than a separate sync completed time. To ensure you are retrieving the latest available data reference the `last_sync_finished` timestamp where `last_sync_result` is `DONE`. Possible values for `status` and `last_sync_result` are `DISABLED`, `DONE`, `FAILED`, `PARTIALLY_SYNCED`, `PAUSED`, `SYNCING`. Learn more about sync status in our [Help Center](https://help.merge.dev/en/articles/8184193-merge-sync-statuses). -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.syncStatus.list({ - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - pageSize: 1 -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.SyncStatusListRequest` - -
-
- -
-
- -**requestOptions:** `SyncStatusClient.RequestOptions` - -
-
-
-
- - -
-
-
- -## Accounting ForceResync -
client.accounting.forceResync.syncStatusResyncCreate() -> Merge.SyncStatus[] -
-
- -#### 📝 Description - -
-
- -
-
- -Force re-sync of all models. This endpoint is available for monthly, quarterly, and highest sync frequency customers on the Professional or Enterprise plans. Doing so will consume a sync credit for the relevant linked account. Force re-syncs can also be triggered manually in the Merge Dashboard and is available for all customers. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.forceResync.syncStatusResyncCreate(); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**requestOptions:** `ForceResyncClient.RequestOptions` - -
-
-
-
- - -
-
-
- -## Accounting TaxRates -
client.accounting.taxRates.list({ ...params }) -> Merge.PaginatedTaxRateList -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a list of `TaxRate` objects. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.taxRates.list({ - companyId: "company_id", - createdAfter: new Date("2024-01-15T09:30:00.000Z"), - createdBefore: new Date("2024-01-15T09:30:00.000Z"), - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - expand: "company", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - name: "name", - pageSize: 1, - remoteId: "remote_id" -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.TaxRatesListRequest` - -
-
- -
-
- -**requestOptions:** `TaxRatesClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.taxRates.retrieve(id, { ...params }) -> Merge.TaxRate -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a `TaxRate` object with the given `id`. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.taxRates.retrieve("id", { - expand: "company", - includeRemoteData: true, - includeShellData: true -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**id:** `string` - -
-
- -
-
- -**request:** `Merge.accounting.TaxRatesRetrieveRequest` - -
-
- -
-
- -**requestOptions:** `TaxRatesClient.RequestOptions` - -
-
-
-
- - -
-
-
- -## Accounting TrackingCategories -
client.accounting.trackingCategories.list({ ...params }) -> Merge.PaginatedTrackingCategoryList -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a list of `TrackingCategory` objects. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.trackingCategories.list({ - categoryType: "", - companyId: "company_id", - createdAfter: new Date("2024-01-15T09:30:00.000Z"), - createdBefore: new Date("2024-01-15T09:30:00.000Z"), - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - expand: "company", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - name: "name", - pageSize: 1, - remoteFields: "status", - remoteId: "remote_id", - showEnumOrigins: "status", - status: "" -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.TrackingCategoriesListRequest` - -
-
- -
-
- -**requestOptions:** `TrackingCategoriesClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.trackingCategories.retrieve(id, { ...params }) -> Merge.TrackingCategory -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a `TrackingCategory` object with the given `id`. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.trackingCategories.retrieve("id", { - expand: "company", - includeRemoteData: true, - includeShellData: true, - remoteFields: "status", - showEnumOrigins: "status" -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**id:** `string` - -
-
- -
-
- -**request:** `Merge.accounting.TrackingCategoriesRetrieveRequest` - -
-
- -
-
- -**requestOptions:** `TrackingCategoriesClient.RequestOptions` - -
-
-
-
- - -
-
-
- -## Accounting Transactions -
client.accounting.transactions.list({ ...params }) -> Merge.PaginatedTransactionList -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a list of `Transaction` objects. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.transactions.list({ - companyId: "company_id", - createdAfter: new Date("2024-01-15T09:30:00.000Z"), - createdBefore: new Date("2024-01-15T09:30:00.000Z"), - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - expand: "account", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - pageSize: 1, - remoteId: "remote_id", - transactionDateAfter: new Date("2024-01-15T09:30:00.000Z"), - transactionDateBefore: new Date("2024-01-15T09:30:00.000Z") -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.TransactionsListRequest` - -
-
- -
-
- -**requestOptions:** `TransactionsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.transactions.retrieve(id, { ...params }) -> Merge.Transaction -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a `Transaction` object with the given `id`. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.transactions.retrieve("id", { - expand: "account", - includeRemoteData: true, - includeShellData: true -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**id:** `string` - -
-
- -
-
- -**request:** `Merge.accounting.TransactionsRetrieveRequest` - -
-
- -
-
- -**requestOptions:** `TransactionsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -## Accounting VendorCredits -
client.accounting.vendorCredits.list({ ...params }) -> Merge.PaginatedVendorCreditList -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a list of `VendorCredit` objects. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.vendorCredits.list({ - companyId: "company_id", - createdAfter: new Date("2024-01-15T09:30:00.000Z"), - createdBefore: new Date("2024-01-15T09:30:00.000Z"), - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - expand: "accounting_period", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - pageSize: 1, - remoteId: "remote_id", - transactionDateAfter: new Date("2024-01-15T09:30:00.000Z"), - transactionDateBefore: new Date("2024-01-15T09:30:00.000Z") -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.VendorCreditsListRequest` - -
-
- -
-
- -**requestOptions:** `VendorCreditsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.vendorCredits.create({ ...params }) -> Merge.VendorCreditResponse -
-
- -#### 📝 Description - -
-
- -
-
- -Creates a `VendorCredit` object with the given values. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.vendorCredits.create({ - isDebugMode: true, - runAsync: true, - model: {} -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.VendorCreditEndpointRequest` - -
-
- -
-
- -**requestOptions:** `VendorCreditsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.vendorCredits.retrieve(id, { ...params }) -> Merge.VendorCredit -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a `VendorCredit` object with the given `id`. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.vendorCredits.retrieve("id", { - expand: "accounting_period", - includeRemoteData: true, - includeShellData: true -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**id:** `string` - -
-
- -
-
- -**request:** `Merge.accounting.VendorCreditsRetrieveRequest` - -
-
- -
-
- -**requestOptions:** `VendorCreditsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.vendorCredits.metaPostRetrieve() -> Merge.MetaResponse -
-
- -#### 📝 Description - -
-
- -
-
- -Returns metadata for `VendorCredit` POSTs. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.vendorCredits.metaPostRetrieve(); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**requestOptions:** `VendorCreditsClient.RequestOptions` - -
-
-
-
- - -
-
-
- -## Accounting WebhookReceivers -
client.accounting.webhookReceivers.list() -> Merge.WebhookReceiver[] -
-
- -#### 📝 Description - -
-
- -
-
- -Returns a list of `WebhookReceiver` objects. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.webhookReceivers.list(); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**requestOptions:** `WebhookReceiversClient.RequestOptions` - -
-
-
-
- - -
-
-
- -
client.accounting.webhookReceivers.create({ ...params }) -> Merge.WebhookReceiver -
-
- -#### 📝 Description - -
-
- -
-
- -Creates a `WebhookReceiver` object with the given values. -
-
-
-
- -#### 🔌 Usage - -
-
- -
-
- -```typescript -await client.accounting.webhookReceivers.create({ - event: "event", - isActive: true -}); - -``` -
-
-
-
- -#### ⚙️ Parameters - -
-
- -
-
- -**request:** `Merge.accounting.WebhookReceiverRequest` - -
-
- -
-
- -**requestOptions:** `WebhookReceiversClient.RequestOptions` - -
-
-
-
- -
diff --git a/src/BaseClient.ts b/src/BaseClient.ts index 5e0f09611..49b4fc78a 100644 --- a/src/BaseClient.ts +++ b/src/BaseClient.ts @@ -56,8 +56,8 @@ export function normalizeClientOptions; - protected _accountDetails: AccountDetailsClient | undefined; - protected _accountToken: AccountTokenClient | undefined; - protected _accountingPeriods: AccountingPeriodsClient | undefined; - protected _accounts: AccountsClient | undefined; - protected _addresses: AddressesClient | undefined; - protected _asyncPassthrough: AsyncPassthroughClient | undefined; - protected _asyncTasks: AsyncTasksClient | undefined; - protected _attachments: AttachmentsClient | undefined; - protected _auditTrail: AuditTrailClient | undefined; - protected _availableActions: AvailableActionsClient | undefined; - protected _balanceSheets: BalanceSheetsClient | undefined; - protected _bankFeedAccounts: BankFeedAccountsClient | undefined; - protected _bankFeedTransactions: BankFeedTransactionsClient | undefined; - protected _cashFlowStatements: CashFlowStatementsClient | undefined; - protected _companyInfo: CompanyInfoClient | undefined; - protected _contacts: ContactsClient | undefined; - protected _creditNotes: CreditNotesClient | undefined; - protected _scopes: ScopesClient | undefined; - protected _deleteAccount: DeleteAccountClient | undefined; - protected _employees: EmployeesClient | undefined; - protected _expenseReports: ExpenseReportsClient | undefined; - protected _expenses: ExpensesClient | undefined; - protected _fieldMapping: FieldMappingClient | undefined; - protected _generalLedgerTransactions: GeneralLedgerTransactionsClient | undefined; - protected _generateKey: GenerateKeyClient | undefined; - protected _incomeStatements: IncomeStatementsClient | undefined; - protected _invoices: InvoicesClient | undefined; - protected _issues: IssuesClient | undefined; - protected _items: ItemsClient | undefined; - protected _journalEntries: JournalEntriesClient | undefined; - protected _linkToken: LinkTokenClient | undefined; - protected _linkedAccounts: LinkedAccountsClient | undefined; - protected _passthrough: PassthroughClient | undefined; - protected _paymentMethods: PaymentMethodsClient | undefined; - protected _paymentTerms: PaymentTermsClient | undefined; - protected _payments: PaymentsClient | undefined; - protected _phoneNumbers: PhoneNumbersClient | undefined; - protected _projects: ProjectsClient | undefined; - protected _purchaseOrders: PurchaseOrdersClient | undefined; - protected _regenerateKey: RegenerateKeyClient | undefined; - protected _syncStatus: SyncStatusClient | undefined; - protected _forceResync: ForceResyncClient | undefined; - protected _taxRates: TaxRatesClient | undefined; - protected _trackingCategories: TrackingCategoriesClient | undefined; - protected _transactions: TransactionsClient | undefined; - protected _vendorCredits: VendorCreditsClient | undefined; - protected _webhookReceivers: WebhookReceiversClient | undefined; - - constructor(options: AccountingClient.Options) { - this._options = normalizeClientOptionsWithAuth(options); - } - - public get accountDetails(): AccountDetailsClient { - return (this._accountDetails ??= new AccountDetailsClient(this._options)); - } - - public get accountToken(): AccountTokenClient { - return (this._accountToken ??= new AccountTokenClient(this._options)); - } - - public get accountingPeriods(): AccountingPeriodsClient { - return (this._accountingPeriods ??= new AccountingPeriodsClient(this._options)); - } - - public get accounts(): AccountsClient { - return (this._accounts ??= new AccountsClient(this._options)); - } - - public get addresses(): AddressesClient { - return (this._addresses ??= new AddressesClient(this._options)); - } - - public get asyncPassthrough(): AsyncPassthroughClient { - return (this._asyncPassthrough ??= new AsyncPassthroughClient(this._options)); - } - - public get asyncTasks(): AsyncTasksClient { - return (this._asyncTasks ??= new AsyncTasksClient(this._options)); - } - - public get attachments(): AttachmentsClient { - return (this._attachments ??= new AttachmentsClient(this._options)); - } - - public get auditTrail(): AuditTrailClient { - return (this._auditTrail ??= new AuditTrailClient(this._options)); - } - - public get availableActions(): AvailableActionsClient { - return (this._availableActions ??= new AvailableActionsClient(this._options)); - } - - public get balanceSheets(): BalanceSheetsClient { - return (this._balanceSheets ??= new BalanceSheetsClient(this._options)); - } - - public get bankFeedAccounts(): BankFeedAccountsClient { - return (this._bankFeedAccounts ??= new BankFeedAccountsClient(this._options)); - } - - public get bankFeedTransactions(): BankFeedTransactionsClient { - return (this._bankFeedTransactions ??= new BankFeedTransactionsClient(this._options)); - } - - public get cashFlowStatements(): CashFlowStatementsClient { - return (this._cashFlowStatements ??= new CashFlowStatementsClient(this._options)); - } - - public get companyInfo(): CompanyInfoClient { - return (this._companyInfo ??= new CompanyInfoClient(this._options)); - } - - public get contacts(): ContactsClient { - return (this._contacts ??= new ContactsClient(this._options)); - } - - public get creditNotes(): CreditNotesClient { - return (this._creditNotes ??= new CreditNotesClient(this._options)); - } - - public get scopes(): ScopesClient { - return (this._scopes ??= new ScopesClient(this._options)); - } - - public get deleteAccount(): DeleteAccountClient { - return (this._deleteAccount ??= new DeleteAccountClient(this._options)); - } - - public get employees(): EmployeesClient { - return (this._employees ??= new EmployeesClient(this._options)); - } - - public get expenseReports(): ExpenseReportsClient { - return (this._expenseReports ??= new ExpenseReportsClient(this._options)); - } - - public get expenses(): ExpensesClient { - return (this._expenses ??= new ExpensesClient(this._options)); - } - - public get fieldMapping(): FieldMappingClient { - return (this._fieldMapping ??= new FieldMappingClient(this._options)); - } - - public get generalLedgerTransactions(): GeneralLedgerTransactionsClient { - return (this._generalLedgerTransactions ??= new GeneralLedgerTransactionsClient(this._options)); - } - - public get generateKey(): GenerateKeyClient { - return (this._generateKey ??= new GenerateKeyClient(this._options)); - } - - public get incomeStatements(): IncomeStatementsClient { - return (this._incomeStatements ??= new IncomeStatementsClient(this._options)); - } - - public get invoices(): InvoicesClient { - return (this._invoices ??= new InvoicesClient(this._options)); - } - - public get issues(): IssuesClient { - return (this._issues ??= new IssuesClient(this._options)); - } - - public get items(): ItemsClient { - return (this._items ??= new ItemsClient(this._options)); - } - - public get journalEntries(): JournalEntriesClient { - return (this._journalEntries ??= new JournalEntriesClient(this._options)); - } - - public get linkToken(): LinkTokenClient { - return (this._linkToken ??= new LinkTokenClient(this._options)); - } - - public get linkedAccounts(): LinkedAccountsClient { - return (this._linkedAccounts ??= new LinkedAccountsClient(this._options)); - } - - public get passthrough(): PassthroughClient { - return (this._passthrough ??= new PassthroughClient(this._options)); - } - - public get paymentMethods(): PaymentMethodsClient { - return (this._paymentMethods ??= new PaymentMethodsClient(this._options)); - } - - public get paymentTerms(): PaymentTermsClient { - return (this._paymentTerms ??= new PaymentTermsClient(this._options)); - } - - public get payments(): PaymentsClient { - return (this._payments ??= new PaymentsClient(this._options)); - } - - public get phoneNumbers(): PhoneNumbersClient { - return (this._phoneNumbers ??= new PhoneNumbersClient(this._options)); - } - - public get projects(): ProjectsClient { - return (this._projects ??= new ProjectsClient(this._options)); - } - - public get purchaseOrders(): PurchaseOrdersClient { - return (this._purchaseOrders ??= new PurchaseOrdersClient(this._options)); - } - - public get regenerateKey(): RegenerateKeyClient { - return (this._regenerateKey ??= new RegenerateKeyClient(this._options)); - } - - public get syncStatus(): SyncStatusClient { - return (this._syncStatus ??= new SyncStatusClient(this._options)); - } - - public get forceResync(): ForceResyncClient { - return (this._forceResync ??= new ForceResyncClient(this._options)); - } - - public get taxRates(): TaxRatesClient { - return (this._taxRates ??= new TaxRatesClient(this._options)); - } - - public get trackingCategories(): TrackingCategoriesClient { - return (this._trackingCategories ??= new TrackingCategoriesClient(this._options)); - } - - public get transactions(): TransactionsClient { - return (this._transactions ??= new TransactionsClient(this._options)); - } - - public get vendorCredits(): VendorCreditsClient { - return (this._vendorCredits ??= new VendorCreditsClient(this._options)); - } - - public get webhookReceivers(): WebhookReceiversClient { - return (this._webhookReceivers ??= new WebhookReceiversClient(this._options)); - } -} diff --git a/src/api/resources/accounting/client/index.ts b/src/api/resources/accounting/client/index.ts deleted file mode 100644 index cb0ff5c3b..000000000 --- a/src/api/resources/accounting/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export {}; diff --git a/src/api/resources/accounting/exports.ts b/src/api/resources/accounting/exports.ts index fae8028ea..4aaf2fd61 100644 --- a/src/api/resources/accounting/exports.ts +++ b/src/api/resources/accounting/exports.ts @@ -1,5 +1,3 @@ // This file was auto-generated by Fern from our API Definition. -export { AccountingClient } from "./client/Client"; -export * from "./client/index"; -export * from "./resources/index"; +export * from "./index"; diff --git a/src/api/resources/accounting/index.ts b/src/api/resources/accounting/index.ts index fb00ab43d..cb0ff5c3b 100644 --- a/src/api/resources/accounting/index.ts +++ b/src/api/resources/accounting/index.ts @@ -1,3 +1 @@ -export * from "./client"; -export * from "./resources"; -export * from "./types"; +export {}; diff --git a/src/api/resources/accounting/resources/accountDetails/client/Client.ts b/src/api/resources/accounting/resources/accountDetails/client/Client.ts deleted file mode 100644 index e797792a0..000000000 --- a/src/api/resources/accounting/resources/accountDetails/client/Client.ts +++ /dev/null @@ -1,94 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../BaseClient"; -import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../../../BaseClient"; -import * as core from "../../../../../../core"; -import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../../../core/headers"; -import * as environments from "../../../../../../environments"; -import { handleNonStatusCodeError } from "../../../../../../errors/handleNonStatusCodeError"; -import * as errors from "../../../../../../errors/index"; -import * as serializers from "../../../../../../serialization/index"; -import type * as Merge from "../../../../../index"; - -export declare namespace AccountDetailsClient { - export type Options = BaseClientOptions; - - export interface RequestOptions extends BaseRequestOptions {} -} - -export class AccountDetailsClient { - protected readonly _options: NormalizedClientOptionsWithAuth; - - constructor(options: AccountDetailsClient.Options) { - this._options = normalizeClientOptionsWithAuth(options); - } - - /** - * Get details for a linked account. - * - * @param {AccountDetailsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.accountDetails.retrieve() - */ - public retrieve( - requestOptions?: AccountDetailsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__retrieve(requestOptions)); - } - - private async __retrieve( - requestOptions?: AccountDetailsClient.RequestOptions, - ): Promise> { - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/account-details", - ), - method: "GET", - headers: _headers, - queryParameters: requestOptions?.queryParams, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.AccountDetails.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/account-details", - ); - } -} diff --git a/src/api/resources/accounting/resources/accountDetails/client/index.ts b/src/api/resources/accounting/resources/accountDetails/client/index.ts deleted file mode 100644 index cb0ff5c3b..000000000 --- a/src/api/resources/accounting/resources/accountDetails/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export {}; diff --git a/src/api/resources/accounting/resources/accountDetails/exports.ts b/src/api/resources/accounting/resources/accountDetails/exports.ts deleted file mode 100644 index 418f11a73..000000000 --- a/src/api/resources/accounting/resources/accountDetails/exports.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export { AccountDetailsClient } from "./client/Client"; -export * from "./client/index"; diff --git a/src/api/resources/accounting/resources/accountDetails/index.ts b/src/api/resources/accounting/resources/accountDetails/index.ts deleted file mode 100644 index 5ec76921e..000000000 --- a/src/api/resources/accounting/resources/accountDetails/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./client"; diff --git a/src/api/resources/accounting/resources/accountToken/client/Client.ts b/src/api/resources/accounting/resources/accountToken/client/Client.ts deleted file mode 100644 index 743de724e..000000000 --- a/src/api/resources/accounting/resources/accountToken/client/Client.ts +++ /dev/null @@ -1,97 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../BaseClient"; -import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../../../BaseClient"; -import * as core from "../../../../../../core"; -import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../../../core/headers"; -import * as environments from "../../../../../../environments"; -import { handleNonStatusCodeError } from "../../../../../../errors/handleNonStatusCodeError"; -import * as errors from "../../../../../../errors/index"; -import * as serializers from "../../../../../../serialization/index"; -import type * as Merge from "../../../../../index"; - -export declare namespace AccountTokenClient { - export type Options = BaseClientOptions; - - export interface RequestOptions extends BaseRequestOptions {} -} - -export class AccountTokenClient { - protected readonly _options: NormalizedClientOptionsWithAuth; - - constructor(options: AccountTokenClient.Options) { - this._options = normalizeClientOptionsWithAuth(options); - } - - /** - * Returns the account token for the end user with the provided public token. - * - * @param {string} public_token - * @param {AccountTokenClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.accountToken.retrieve("public_token") - */ - public retrieve( - public_token: string, - requestOptions?: AccountTokenClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__retrieve(public_token, requestOptions)); - } - - private async __retrieve( - public_token: string, - requestOptions?: AccountTokenClient.RequestOptions, - ): Promise> { - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - `accounting/v1/account-token/${core.url.encodePathParam(public_token)}`, - ), - method: "GET", - headers: _headers, - queryParameters: requestOptions?.queryParams, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.AccountToken.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/account-token/{public_token}", - ); - } -} diff --git a/src/api/resources/accounting/resources/accountToken/client/index.ts b/src/api/resources/accounting/resources/accountToken/client/index.ts deleted file mode 100644 index cb0ff5c3b..000000000 --- a/src/api/resources/accounting/resources/accountToken/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export {}; diff --git a/src/api/resources/accounting/resources/accountToken/exports.ts b/src/api/resources/accounting/resources/accountToken/exports.ts deleted file mode 100644 index 52f681c49..000000000 --- a/src/api/resources/accounting/resources/accountToken/exports.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export { AccountTokenClient } from "./client/Client"; -export * from "./client/index"; diff --git a/src/api/resources/accounting/resources/accountToken/index.ts b/src/api/resources/accounting/resources/accountToken/index.ts deleted file mode 100644 index 5ec76921e..000000000 --- a/src/api/resources/accounting/resources/accountToken/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./client"; diff --git a/src/api/resources/accounting/resources/accountingPeriods/client/Client.ts b/src/api/resources/accounting/resources/accountingPeriods/client/Client.ts deleted file mode 100644 index 20bae4385..000000000 --- a/src/api/resources/accounting/resources/accountingPeriods/client/Client.ts +++ /dev/null @@ -1,194 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../BaseClient"; -import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../../../BaseClient"; -import * as core from "../../../../../../core"; -import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../../../core/headers"; -import * as environments from "../../../../../../environments"; -import { handleNonStatusCodeError } from "../../../../../../errors/handleNonStatusCodeError"; -import * as errors from "../../../../../../errors/index"; -import * as serializers from "../../../../../../serialization/index"; -import type * as Merge from "../../../../../index"; - -export declare namespace AccountingPeriodsClient { - export type Options = BaseClientOptions; - - export interface RequestOptions extends BaseRequestOptions {} -} - -export class AccountingPeriodsClient { - protected readonly _options: NormalizedClientOptionsWithAuth; - - constructor(options: AccountingPeriodsClient.Options) { - this._options = normalizeClientOptionsWithAuth(options); - } - - /** - * Returns a list of `AccountingPeriod` objects. - * - * @param {Merge.accounting.AccountingPeriodsListRequest} request - * @param {AccountingPeriodsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.accountingPeriods.list({ - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * pageSize: 1 - * }) - */ - public list( - request: Merge.accounting.AccountingPeriodsListRequest = {}, - requestOptions?: AccountingPeriodsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__list(request, requestOptions)); - } - - private async __list( - request: Merge.accounting.AccountingPeriodsListRequest = {}, - requestOptions?: AccountingPeriodsClient.RequestOptions, - ): Promise> { - const { cursor, includeDeletedData, includeRemoteData, includeShellData, pageSize } = request; - const _queryParams: Record = { - cursor, - include_deleted_data: includeDeletedData, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - page_size: pageSize, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/accounting-periods", - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaginatedAccountingPeriodList.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/accounting-periods", - ); - } - - /** - * Returns an `AccountingPeriod` object with the given `id`. - * - * @param {string} id - * @param {Merge.accounting.AccountingPeriodsRetrieveRequest} request - * @param {AccountingPeriodsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.accountingPeriods.retrieve("id", { - * includeRemoteData: true, - * includeShellData: true - * }) - */ - public retrieve( - id: string, - request: Merge.accounting.AccountingPeriodsRetrieveRequest = {}, - requestOptions?: AccountingPeriodsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__retrieve(id, request, requestOptions)); - } - - private async __retrieve( - id: string, - request: Merge.accounting.AccountingPeriodsRetrieveRequest = {}, - requestOptions?: AccountingPeriodsClient.RequestOptions, - ): Promise> { - const { includeRemoteData, includeShellData } = request; - const _queryParams: Record = { - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - `accounting/v1/accounting-periods/${core.url.encodePathParam(id)}`, - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.AccountingPeriod.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/accounting-periods/{id}", - ); - } -} diff --git a/src/api/resources/accounting/resources/accountingPeriods/client/index.ts b/src/api/resources/accounting/resources/accountingPeriods/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/api/resources/accounting/resources/accountingPeriods/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/api/resources/accounting/resources/accountingPeriods/client/requests/AccountingPeriodsListRequest.ts b/src/api/resources/accounting/resources/accountingPeriods/client/requests/AccountingPeriodsListRequest.ts deleted file mode 100644 index 6c809f019..000000000 --- a/src/api/resources/accounting/resources/accountingPeriods/client/requests/AccountingPeriodsListRequest.ts +++ /dev/null @@ -1,24 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * @example - * { - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * pageSize: 1 - * } - */ -export interface AccountingPeriodsListRequest { - /** The pagination cursor value. */ - cursor?: string; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - includeDeletedData?: boolean; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** Number of results to return per page. */ - pageSize?: number; -} diff --git a/src/api/resources/accounting/resources/accountingPeriods/client/requests/AccountingPeriodsRetrieveRequest.ts b/src/api/resources/accounting/resources/accountingPeriods/client/requests/AccountingPeriodsRetrieveRequest.ts deleted file mode 100644 index 86c766b2d..000000000 --- a/src/api/resources/accounting/resources/accountingPeriods/client/requests/AccountingPeriodsRetrieveRequest.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * @example - * { - * includeRemoteData: true, - * includeShellData: true - * } - */ -export interface AccountingPeriodsRetrieveRequest { - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; -} diff --git a/src/api/resources/accounting/resources/accountingPeriods/client/requests/index.ts b/src/api/resources/accounting/resources/accountingPeriods/client/requests/index.ts deleted file mode 100644 index bddac70d0..000000000 --- a/src/api/resources/accounting/resources/accountingPeriods/client/requests/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export type { AccountingPeriodsListRequest } from "./AccountingPeriodsListRequest"; -export type { AccountingPeriodsRetrieveRequest } from "./AccountingPeriodsRetrieveRequest"; diff --git a/src/api/resources/accounting/resources/accountingPeriods/exports.ts b/src/api/resources/accounting/resources/accountingPeriods/exports.ts deleted file mode 100644 index 2e2f1d82d..000000000 --- a/src/api/resources/accounting/resources/accountingPeriods/exports.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export { AccountingPeriodsClient } from "./client/Client"; -export * from "./client/index"; diff --git a/src/api/resources/accounting/resources/accountingPeriods/index.ts b/src/api/resources/accounting/resources/accountingPeriods/index.ts deleted file mode 100644 index 5ec76921e..000000000 --- a/src/api/resources/accounting/resources/accountingPeriods/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./client"; diff --git a/src/api/resources/accounting/resources/accounts/client/Client.ts b/src/api/resources/accounting/resources/accounts/client/Client.ts deleted file mode 100644 index 30804642d..000000000 --- a/src/api/resources/accounting/resources/accounts/client/Client.ts +++ /dev/null @@ -1,413 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../BaseClient"; -import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../../../BaseClient"; -import * as core from "../../../../../../core"; -import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../../../core/headers"; -import * as environments from "../../../../../../environments"; -import { handleNonStatusCodeError } from "../../../../../../errors/handleNonStatusCodeError"; -import * as errors from "../../../../../../errors/index"; -import * as serializers from "../../../../../../serialization/index"; -import type * as Merge from "../../../../../index"; - -export declare namespace AccountsClient { - export type Options = BaseClientOptions; - - export interface RequestOptions extends BaseRequestOptions {} -} - -export class AccountsClient { - protected readonly _options: NormalizedClientOptionsWithAuth; - - constructor(options: AccountsClient.Options) { - this._options = normalizeClientOptionsWithAuth(options); - } - - /** - * Returns a list of `Account` objects. - * - * @param {Merge.accounting.AccountsListRequest} request - * @param {AccountsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.accounts.list({ - * accountType: "account_type", - * classification: "", - * companyId: "company_id", - * createdAfter: new Date("2024-01-15T09:30:00.000Z"), - * createdBefore: new Date("2024-01-15T09:30:00.000Z"), - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * expand: "company", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - * modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - * name: "name", - * pageSize: 1, - * remoteFields: "classification", - * remoteId: "remote_id", - * showEnumOrigins: "classification", - * status: "" - * }) - */ - public list( - request: Merge.accounting.AccountsListRequest = {}, - requestOptions?: AccountsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__list(request, requestOptions)); - } - - private async __list( - request: Merge.accounting.AccountsListRequest = {}, - requestOptions?: AccountsClient.RequestOptions, - ): Promise> { - const { - accountType, - classification, - companyId, - createdAfter, - createdBefore, - cursor, - expand, - includeDeletedData, - includeRemoteData, - includeShellData, - modifiedAfter, - modifiedBefore, - name, - pageSize, - remoteFields, - remoteId, - showEnumOrigins, - status, - } = request; - const _queryParams: Record = { - account_type: accountType, - classification: - classification != null - ? serializers.accounting.AccountsListRequestClassification.jsonOrThrow(classification, { - unrecognizedObjectKeys: "strip", - }) - : undefined, - company_id: companyId, - created_after: createdAfter?.toISOString(), - created_before: createdBefore?.toISOString(), - cursor, - expand: expand != null ? expand : undefined, - include_deleted_data: includeDeletedData, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - modified_after: modifiedAfter?.toISOString(), - modified_before: modifiedBefore?.toISOString(), - name, - page_size: pageSize, - remote_fields: - remoteFields != null - ? serializers.accounting.AccountsListRequestRemoteFields.jsonOrThrow(remoteFields, { - unrecognizedObjectKeys: "strip", - }) - : undefined, - remote_id: remoteId, - show_enum_origins: - showEnumOrigins != null - ? serializers.accounting.AccountsListRequestShowEnumOrigins.jsonOrThrow(showEnumOrigins, { - unrecognizedObjectKeys: "strip", - }) - : undefined, - status: - status != null - ? serializers.accounting.AccountsListRequestStatus.jsonOrThrow(status, { - unrecognizedObjectKeys: "strip", - }) - : undefined, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/accounts", - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaginatedAccountList.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError(_response.error, _response.rawResponse, "GET", "/accounting/v1/accounts"); - } - - /** - * Creates an `Account` object with the given values. - * - * @param {Merge.accounting.AccountEndpointRequest} request - * @param {AccountsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.accounts.create({ - * isDebugMode: true, - * runAsync: true, - * model: {} - * }) - */ - public create( - request: Merge.accounting.AccountEndpointRequest, - requestOptions?: AccountsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__create(request, requestOptions)); - } - - private async __create( - request: Merge.accounting.AccountEndpointRequest, - requestOptions?: AccountsClient.RequestOptions, - ): Promise> { - const { isDebugMode, runAsync, ..._body } = request; - const _queryParams: Record = { - is_debug_mode: isDebugMode, - run_async: runAsync, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/accounts", - ), - method: "POST", - headers: _headers, - contentType: "application/json", - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - requestType: "json", - body: serializers.accounting.AccountEndpointRequest.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }), - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.AccountResponse.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError(_response.error, _response.rawResponse, "POST", "/accounting/v1/accounts"); - } - - /** - * Returns an `Account` object with the given `id`. - * - * @param {string} id - * @param {Merge.accounting.AccountsRetrieveRequest} request - * @param {AccountsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.accounts.retrieve("id", { - * expand: "company", - * includeRemoteData: true, - * includeShellData: true, - * remoteFields: "classification", - * showEnumOrigins: "classification" - * }) - */ - public retrieve( - id: string, - request: Merge.accounting.AccountsRetrieveRequest = {}, - requestOptions?: AccountsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__retrieve(id, request, requestOptions)); - } - - private async __retrieve( - id: string, - request: Merge.accounting.AccountsRetrieveRequest = {}, - requestOptions?: AccountsClient.RequestOptions, - ): Promise> { - const { expand, includeRemoteData, includeShellData, remoteFields, showEnumOrigins } = request; - const _queryParams: Record = { - expand: expand != null ? expand : undefined, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - remote_fields: - remoteFields != null - ? serializers.accounting.AccountsRetrieveRequestRemoteFields.jsonOrThrow(remoteFields, { - unrecognizedObjectKeys: "strip", - }) - : undefined, - show_enum_origins: - showEnumOrigins != null - ? serializers.accounting.AccountsRetrieveRequestShowEnumOrigins.jsonOrThrow(showEnumOrigins, { - unrecognizedObjectKeys: "strip", - }) - : undefined, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - `accounting/v1/accounts/${core.url.encodePathParam(id)}`, - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.Account.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError(_response.error, _response.rawResponse, "GET", "/accounting/v1/accounts/{id}"); - } - - /** - * Returns metadata for `Account` POSTs. - * - * @param {AccountsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.accounts.metaPostRetrieve() - */ - public metaPostRetrieve( - requestOptions?: AccountsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__metaPostRetrieve(requestOptions)); - } - - private async __metaPostRetrieve( - requestOptions?: AccountsClient.RequestOptions, - ): Promise> { - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/accounts/meta/post", - ), - method: "GET", - headers: _headers, - queryParameters: requestOptions?.queryParams, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.MetaResponse.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/accounts/meta/post", - ); - } -} diff --git a/src/api/resources/accounting/resources/accounts/client/index.ts b/src/api/resources/accounting/resources/accounts/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/api/resources/accounting/resources/accounts/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/api/resources/accounting/resources/accounts/client/requests/AccountEndpointRequest.ts b/src/api/resources/accounting/resources/accounts/client/requests/AccountEndpointRequest.ts deleted file mode 100644 index 994ac2176..000000000 --- a/src/api/resources/accounting/resources/accounts/client/requests/AccountEndpointRequest.ts +++ /dev/null @@ -1,19 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * isDebugMode: true, - * runAsync: true, - * model: {} - * } - */ -export interface AccountEndpointRequest { - /** Whether to include debug fields (such as log file links) in the response. */ - isDebugMode?: boolean; - /** Whether or not third-party updates should be run asynchronously. */ - runAsync?: boolean; - model: Merge.accounting.AccountRequest; -} diff --git a/src/api/resources/accounting/resources/accounts/client/requests/AccountsListRequest.ts b/src/api/resources/accounting/resources/accounts/client/requests/AccountsListRequest.ts deleted file mode 100644 index 56602c1b4..000000000 --- a/src/api/resources/accounting/resources/accounts/client/requests/AccountsListRequest.ts +++ /dev/null @@ -1,65 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * accountType: "account_type", - * classification: "", - * companyId: "company_id", - * createdAfter: new Date("2024-01-15T09:30:00.000Z"), - * createdBefore: new Date("2024-01-15T09:30:00.000Z"), - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * expand: "company", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - * modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - * name: "name", - * pageSize: 1, - * remoteFields: "classification", - * remoteId: "remote_id", - * showEnumOrigins: "classification", - * status: "" - * } - */ -export interface AccountsListRequest { - /** If provided, will only return accounts with the passed in enum. */ - accountType?: string; - /** If provided, will only return accounts with this classification. */ - classification?: Merge.accounting.AccountsListRequestClassification; - /** If provided, will only return accounts for this company. */ - companyId?: string; - /** If provided, will only return objects created after this datetime. */ - createdAfter?: Date; - /** If provided, will only return objects created before this datetime. */ - createdBefore?: Date; - /** The pagination cursor value. */ - cursor?: string; - /** Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. */ - expand?: "company"; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - includeDeletedData?: boolean; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** If provided, only objects synced by Merge after this date time will be returned. */ - modifiedAfter?: Date; - /** If provided, only objects synced by Merge before this date time will be returned. */ - modifiedBefore?: Date; - /** If provided, will only return Accounts with this name. */ - name?: string; - /** Number of results to return per page. */ - pageSize?: number; - /** Deprecated. Use show_enum_origins. */ - remoteFields?: Merge.accounting.AccountsListRequestRemoteFields; - /** The API provider's ID for the given object. */ - remoteId?: string; - /** A comma separated list of enum field names for which you'd like the original values to be returned, instead of Merge's normalized enum values. [Learn more](https://help.merge.dev/en/articles/8950958-show_enum_origins-query-parameter) */ - showEnumOrigins?: Merge.accounting.AccountsListRequestShowEnumOrigins; - /** If provided, will only return accounts with this status. */ - status?: Merge.accounting.AccountsListRequestStatus; -} diff --git a/src/api/resources/accounting/resources/accounts/client/requests/AccountsRetrieveRequest.ts b/src/api/resources/accounting/resources/accounts/client/requests/AccountsRetrieveRequest.ts deleted file mode 100644 index c7d64f6b4..000000000 --- a/src/api/resources/accounting/resources/accounts/client/requests/AccountsRetrieveRequest.ts +++ /dev/null @@ -1,26 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * expand: "company", - * includeRemoteData: true, - * includeShellData: true, - * remoteFields: "classification", - * showEnumOrigins: "classification" - * } - */ -export interface AccountsRetrieveRequest { - /** Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. */ - expand?: "company"; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** Deprecated. Use show_enum_origins. */ - remoteFields?: Merge.accounting.AccountsRetrieveRequestRemoteFields; - /** A comma separated list of enum field names for which you'd like the original values to be returned, instead of Merge's normalized enum values. [Learn more](https://help.merge.dev/en/articles/8950958-show_enum_origins-query-parameter) */ - showEnumOrigins?: Merge.accounting.AccountsRetrieveRequestShowEnumOrigins; -} diff --git a/src/api/resources/accounting/resources/accounts/client/requests/index.ts b/src/api/resources/accounting/resources/accounts/client/requests/index.ts deleted file mode 100644 index 74bcb5814..000000000 --- a/src/api/resources/accounting/resources/accounts/client/requests/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -export type { AccountEndpointRequest } from "./AccountEndpointRequest"; -export type { AccountsListRequest } from "./AccountsListRequest"; -export type { AccountsRetrieveRequest } from "./AccountsRetrieveRequest"; diff --git a/src/api/resources/accounting/resources/accounts/exports.ts b/src/api/resources/accounting/resources/accounts/exports.ts deleted file mode 100644 index 11698f7e4..000000000 --- a/src/api/resources/accounting/resources/accounts/exports.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export { AccountsClient } from "./client/Client"; -export * from "./client/index"; diff --git a/src/api/resources/accounting/resources/accounts/index.ts b/src/api/resources/accounting/resources/accounts/index.ts deleted file mode 100644 index d2ec2302c..000000000 --- a/src/api/resources/accounting/resources/accounts/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./client"; -export * from "./types"; diff --git a/src/api/resources/accounting/resources/accounts/types/AccountsListRequestClassification.ts b/src/api/resources/accounting/resources/accounts/types/AccountsListRequestClassification.ts deleted file mode 100644 index c14242f76..000000000 --- a/src/api/resources/accounting/resources/accounts/types/AccountsListRequestClassification.ts +++ /dev/null @@ -1,12 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export const AccountsListRequestClassification = { - Empty: "", - Asset: "ASSET", - Equity: "EQUITY", - Expense: "EXPENSE", - Liability: "LIABILITY", - Revenue: "REVENUE", -} as const; -export type AccountsListRequestClassification = - (typeof AccountsListRequestClassification)[keyof typeof AccountsListRequestClassification]; diff --git a/src/api/resources/accounting/resources/accounts/types/AccountsListRequestRemoteFields.ts b/src/api/resources/accounting/resources/accounts/types/AccountsListRequestRemoteFields.ts deleted file mode 100644 index b73c132f7..000000000 --- a/src/api/resources/accounting/resources/accounts/types/AccountsListRequestRemoteFields.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export const AccountsListRequestRemoteFields = { - Classification: "classification", - ClassificationStatus: "classification,status", - Status: "status", -} as const; -export type AccountsListRequestRemoteFields = - (typeof AccountsListRequestRemoteFields)[keyof typeof AccountsListRequestRemoteFields]; diff --git a/src/api/resources/accounting/resources/accounts/types/AccountsListRequestShowEnumOrigins.ts b/src/api/resources/accounting/resources/accounts/types/AccountsListRequestShowEnumOrigins.ts deleted file mode 100644 index 9441adc79..000000000 --- a/src/api/resources/accounting/resources/accounts/types/AccountsListRequestShowEnumOrigins.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export const AccountsListRequestShowEnumOrigins = { - Classification: "classification", - ClassificationStatus: "classification,status", - Status: "status", -} as const; -export type AccountsListRequestShowEnumOrigins = - (typeof AccountsListRequestShowEnumOrigins)[keyof typeof AccountsListRequestShowEnumOrigins]; diff --git a/src/api/resources/accounting/resources/accounts/types/AccountsListRequestStatus.ts b/src/api/resources/accounting/resources/accounts/types/AccountsListRequestStatus.ts deleted file mode 100644 index b933bb3ec..000000000 --- a/src/api/resources/accounting/resources/accounts/types/AccountsListRequestStatus.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export const AccountsListRequestStatus = { - Empty: "", - Active: "ACTIVE", - Inactive: "INACTIVE", - Pending: "PENDING", -} as const; -export type AccountsListRequestStatus = (typeof AccountsListRequestStatus)[keyof typeof AccountsListRequestStatus]; diff --git a/src/api/resources/accounting/resources/accounts/types/AccountsRetrieveRequestRemoteFields.ts b/src/api/resources/accounting/resources/accounts/types/AccountsRetrieveRequestRemoteFields.ts deleted file mode 100644 index 1458c392f..000000000 --- a/src/api/resources/accounting/resources/accounts/types/AccountsRetrieveRequestRemoteFields.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export const AccountsRetrieveRequestRemoteFields = { - Classification: "classification", - ClassificationStatus: "classification,status", - Status: "status", -} as const; -export type AccountsRetrieveRequestRemoteFields = - (typeof AccountsRetrieveRequestRemoteFields)[keyof typeof AccountsRetrieveRequestRemoteFields]; diff --git a/src/api/resources/accounting/resources/accounts/types/AccountsRetrieveRequestShowEnumOrigins.ts b/src/api/resources/accounting/resources/accounts/types/AccountsRetrieveRequestShowEnumOrigins.ts deleted file mode 100644 index 8fa8ba758..000000000 --- a/src/api/resources/accounting/resources/accounts/types/AccountsRetrieveRequestShowEnumOrigins.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export const AccountsRetrieveRequestShowEnumOrigins = { - Classification: "classification", - ClassificationStatus: "classification,status", - Status: "status", -} as const; -export type AccountsRetrieveRequestShowEnumOrigins = - (typeof AccountsRetrieveRequestShowEnumOrigins)[keyof typeof AccountsRetrieveRequestShowEnumOrigins]; diff --git a/src/api/resources/accounting/resources/accounts/types/index.ts b/src/api/resources/accounting/resources/accounts/types/index.ts deleted file mode 100644 index 6e355c26c..000000000 --- a/src/api/resources/accounting/resources/accounts/types/index.ts +++ /dev/null @@ -1,6 +0,0 @@ -export * from "./AccountsListRequestClassification"; -export * from "./AccountsListRequestRemoteFields"; -export * from "./AccountsListRequestShowEnumOrigins"; -export * from "./AccountsListRequestStatus"; -export * from "./AccountsRetrieveRequestRemoteFields"; -export * from "./AccountsRetrieveRequestShowEnumOrigins"; diff --git a/src/api/resources/accounting/resources/addresses/client/Client.ts b/src/api/resources/accounting/resources/addresses/client/Client.ts deleted file mode 100644 index 35494f766..000000000 --- a/src/api/resources/accounting/resources/addresses/client/Client.ts +++ /dev/null @@ -1,107 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../BaseClient"; -import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../../../BaseClient"; -import * as core from "../../../../../../core"; -import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../../../core/headers"; -import * as environments from "../../../../../../environments"; -import { handleNonStatusCodeError } from "../../../../../../errors/handleNonStatusCodeError"; -import * as errors from "../../../../../../errors/index"; -import * as serializers from "../../../../../../serialization/index"; -import type * as Merge from "../../../../../index"; - -export declare namespace AddressesClient { - export type Options = BaseClientOptions; - - export interface RequestOptions extends BaseRequestOptions {} -} - -export class AddressesClient { - protected readonly _options: NormalizedClientOptionsWithAuth; - - constructor(options: AddressesClient.Options) { - this._options = normalizeClientOptionsWithAuth(options); - } - - /** - * Returns an `Address` object with the given `id`. - * - * @param {string} id - * @param {Merge.accounting.AddressesRetrieveRequest} request - * @param {AddressesClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.addresses.retrieve("id", { - * includeRemoteData: true, - * includeShellData: true, - * remoteFields: "type", - * showEnumOrigins: "type" - * }) - */ - public retrieve( - id: string, - request: Merge.accounting.AddressesRetrieveRequest = {}, - requestOptions?: AddressesClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__retrieve(id, request, requestOptions)); - } - - private async __retrieve( - id: string, - request: Merge.accounting.AddressesRetrieveRequest = {}, - requestOptions?: AddressesClient.RequestOptions, - ): Promise> { - const { includeRemoteData, includeShellData, remoteFields, showEnumOrigins } = request; - const _queryParams: Record = { - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - remote_fields: remoteFields != null ? remoteFields : undefined, - show_enum_origins: showEnumOrigins != null ? showEnumOrigins : undefined, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - `accounting/v1/addresses/${core.url.encodePathParam(id)}`, - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.Address.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError(_response.error, _response.rawResponse, "GET", "/accounting/v1/addresses/{id}"); - } -} diff --git a/src/api/resources/accounting/resources/addresses/client/index.ts b/src/api/resources/accounting/resources/addresses/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/api/resources/accounting/resources/addresses/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/api/resources/accounting/resources/addresses/client/requests/AddressesRetrieveRequest.ts b/src/api/resources/accounting/resources/addresses/client/requests/AddressesRetrieveRequest.ts deleted file mode 100644 index 2048a6cbd..000000000 --- a/src/api/resources/accounting/resources/addresses/client/requests/AddressesRetrieveRequest.ts +++ /dev/null @@ -1,21 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * @example - * { - * includeRemoteData: true, - * includeShellData: true, - * remoteFields: "type", - * showEnumOrigins: "type" - * } - */ -export interface AddressesRetrieveRequest { - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** Deprecated. Use show_enum_origins. */ - remoteFields?: "type"; - /** A comma separated list of enum field names for which you'd like the original values to be returned, instead of Merge's normalized enum values. [Learn more](https://help.merge.dev/en/articles/8950958-show_enum_origins-query-parameter) */ - showEnumOrigins?: "type"; -} diff --git a/src/api/resources/accounting/resources/addresses/client/requests/index.ts b/src/api/resources/accounting/resources/addresses/client/requests/index.ts deleted file mode 100644 index e050a0144..000000000 --- a/src/api/resources/accounting/resources/addresses/client/requests/index.ts +++ /dev/null @@ -1 +0,0 @@ -export type { AddressesRetrieveRequest } from "./AddressesRetrieveRequest"; diff --git a/src/api/resources/accounting/resources/addresses/exports.ts b/src/api/resources/accounting/resources/addresses/exports.ts deleted file mode 100644 index 83a5edbf1..000000000 --- a/src/api/resources/accounting/resources/addresses/exports.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export { AddressesClient } from "./client/Client"; -export * from "./client/index"; diff --git a/src/api/resources/accounting/resources/addresses/index.ts b/src/api/resources/accounting/resources/addresses/index.ts deleted file mode 100644 index 5ec76921e..000000000 --- a/src/api/resources/accounting/resources/addresses/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./client"; diff --git a/src/api/resources/accounting/resources/asyncPassthrough/client/Client.ts b/src/api/resources/accounting/resources/asyncPassthrough/client/Client.ts deleted file mode 100644 index 3bb0809db..000000000 --- a/src/api/resources/accounting/resources/asyncPassthrough/client/Client.ts +++ /dev/null @@ -1,177 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../BaseClient"; -import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../../../BaseClient"; -import * as core from "../../../../../../core"; -import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../../../core/headers"; -import * as environments from "../../../../../../environments"; -import { handleNonStatusCodeError } from "../../../../../../errors/handleNonStatusCodeError"; -import * as errors from "../../../../../../errors/index"; -import * as serializers from "../../../../../../serialization/index"; -import type * as Merge from "../../../../../index"; - -export declare namespace AsyncPassthroughClient { - export type Options = BaseClientOptions; - - export interface RequestOptions extends BaseRequestOptions {} -} - -export class AsyncPassthroughClient { - protected readonly _options: NormalizedClientOptionsWithAuth; - - constructor(options: AsyncPassthroughClient.Options) { - this._options = normalizeClientOptionsWithAuth(options); - } - - /** - * Asynchronously pull data from an endpoint not currently supported by Merge. - * - * @param {Merge.accounting.DataPassthroughRequest} request - * @param {AsyncPassthroughClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.asyncPassthrough.create({ - * method: "GET", - * path: "/scooters" - * }) - */ - public create( - request: Merge.accounting.DataPassthroughRequest, - requestOptions?: AsyncPassthroughClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__create(request, requestOptions)); - } - - private async __create( - request: Merge.accounting.DataPassthroughRequest, - requestOptions?: AsyncPassthroughClient.RequestOptions, - ): Promise> { - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/async-passthrough", - ), - method: "POST", - headers: _headers, - contentType: "application/json", - queryParameters: requestOptions?.queryParams, - requestType: "json", - body: serializers.accounting.DataPassthroughRequest.jsonOrThrow(request, { - unrecognizedObjectKeys: "strip", - }), - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.AsyncPassthroughReciept.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "POST", - "/accounting/v1/async-passthrough", - ); - } - - /** - * Retrieves data from earlier async-passthrough POST request - * - * @param {string} async_passthrough_receipt_id - * @param {AsyncPassthroughClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.asyncPassthrough.retrieve("async_passthrough_receipt_id") - */ - public retrieve( - async_passthrough_receipt_id: string, - requestOptions?: AsyncPassthroughClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__retrieve(async_passthrough_receipt_id, requestOptions)); - } - - private async __retrieve( - async_passthrough_receipt_id: string, - requestOptions?: AsyncPassthroughClient.RequestOptions, - ): Promise> { - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - `accounting/v1/async-passthrough/${core.url.encodePathParam(async_passthrough_receipt_id)}`, - ), - method: "GET", - headers: _headers, - queryParameters: requestOptions?.queryParams, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.AsyncPassthroughRetrieveResponse.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/async-passthrough/{async_passthrough_receipt_id}", - ); - } -} diff --git a/src/api/resources/accounting/resources/asyncPassthrough/client/index.ts b/src/api/resources/accounting/resources/asyncPassthrough/client/index.ts deleted file mode 100644 index cb0ff5c3b..000000000 --- a/src/api/resources/accounting/resources/asyncPassthrough/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export {}; diff --git a/src/api/resources/accounting/resources/asyncPassthrough/exports.ts b/src/api/resources/accounting/resources/asyncPassthrough/exports.ts deleted file mode 100644 index 559d07505..000000000 --- a/src/api/resources/accounting/resources/asyncPassthrough/exports.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export { AsyncPassthroughClient } from "./client/Client"; -export * from "./client/index"; diff --git a/src/api/resources/accounting/resources/asyncPassthrough/index.ts b/src/api/resources/accounting/resources/asyncPassthrough/index.ts deleted file mode 100644 index d2ec2302c..000000000 --- a/src/api/resources/accounting/resources/asyncPassthrough/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./client"; -export * from "./types"; diff --git a/src/api/resources/accounting/resources/asyncPassthrough/types/AsyncPassthroughRetrieveResponse.ts b/src/api/resources/accounting/resources/asyncPassthrough/types/AsyncPassthroughRetrieveResponse.ts deleted file mode 100644 index b9dc82687..000000000 --- a/src/api/resources/accounting/resources/asyncPassthrough/types/AsyncPassthroughRetrieveResponse.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../index"; - -export type AsyncPassthroughRetrieveResponse = Merge.accounting.RemoteResponse | string; diff --git a/src/api/resources/accounting/resources/asyncPassthrough/types/index.ts b/src/api/resources/accounting/resources/asyncPassthrough/types/index.ts deleted file mode 100644 index f2b2d0e21..000000000 --- a/src/api/resources/accounting/resources/asyncPassthrough/types/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./AsyncPassthroughRetrieveResponse"; diff --git a/src/api/resources/accounting/resources/asyncTasks/client/Client.ts b/src/api/resources/accounting/resources/asyncTasks/client/Client.ts deleted file mode 100644 index 1e0ba85d7..000000000 --- a/src/api/resources/accounting/resources/asyncTasks/client/Client.ts +++ /dev/null @@ -1,97 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../BaseClient"; -import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../../../BaseClient"; -import * as core from "../../../../../../core"; -import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../../../core/headers"; -import * as environments from "../../../../../../environments"; -import { handleNonStatusCodeError } from "../../../../../../errors/handleNonStatusCodeError"; -import * as errors from "../../../../../../errors/index"; -import * as serializers from "../../../../../../serialization/index"; -import type * as Merge from "../../../../../index"; - -export declare namespace AsyncTasksClient { - export type Options = BaseClientOptions; - - export interface RequestOptions extends BaseRequestOptions {} -} - -export class AsyncTasksClient { - protected readonly _options: NormalizedClientOptionsWithAuth; - - constructor(options: AsyncTasksClient.Options) { - this._options = normalizeClientOptionsWithAuth(options); - } - - /** - * Returns an `AsyncPostTask` object with the given `id`. - * - * @param {string} id - * @param {AsyncTasksClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.asyncTasks.retrieve("id") - */ - public retrieve( - id: string, - requestOptions?: AsyncTasksClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__retrieve(id, requestOptions)); - } - - private async __retrieve( - id: string, - requestOptions?: AsyncTasksClient.RequestOptions, - ): Promise> { - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - `accounting/v1/async-tasks/${core.url.encodePathParam(id)}`, - ), - method: "GET", - headers: _headers, - queryParameters: requestOptions?.queryParams, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.AsyncPostTask.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/async-tasks/{id}", - ); - } -} diff --git a/src/api/resources/accounting/resources/asyncTasks/client/index.ts b/src/api/resources/accounting/resources/asyncTasks/client/index.ts deleted file mode 100644 index cb0ff5c3b..000000000 --- a/src/api/resources/accounting/resources/asyncTasks/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export {}; diff --git a/src/api/resources/accounting/resources/asyncTasks/exports.ts b/src/api/resources/accounting/resources/asyncTasks/exports.ts deleted file mode 100644 index 961059998..000000000 --- a/src/api/resources/accounting/resources/asyncTasks/exports.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export { AsyncTasksClient } from "./client/Client"; -export * from "./client/index"; diff --git a/src/api/resources/accounting/resources/asyncTasks/index.ts b/src/api/resources/accounting/resources/asyncTasks/index.ts deleted file mode 100644 index 5ec76921e..000000000 --- a/src/api/resources/accounting/resources/asyncTasks/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./client"; diff --git a/src/api/resources/accounting/resources/attachments/client/Client.ts b/src/api/resources/accounting/resources/attachments/client/Client.ts deleted file mode 100644 index 7e527d8e8..000000000 --- a/src/api/resources/accounting/resources/attachments/client/Client.ts +++ /dev/null @@ -1,363 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../BaseClient"; -import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../../../BaseClient"; -import * as core from "../../../../../../core"; -import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../../../core/headers"; -import * as environments from "../../../../../../environments"; -import { handleNonStatusCodeError } from "../../../../../../errors/handleNonStatusCodeError"; -import * as errors from "../../../../../../errors/index"; -import * as serializers from "../../../../../../serialization/index"; -import type * as Merge from "../../../../../index"; - -export declare namespace AttachmentsClient { - export type Options = BaseClientOptions; - - export interface RequestOptions extends BaseRequestOptions {} -} - -export class AttachmentsClient { - protected readonly _options: NormalizedClientOptionsWithAuth; - - constructor(options: AttachmentsClient.Options) { - this._options = normalizeClientOptionsWithAuth(options); - } - - /** - * Returns a list of `AccountingAttachment` objects. - * - * @param {Merge.accounting.AttachmentsListRequest} request - * @param {AttachmentsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.attachments.list({ - * companyId: "company_id", - * createdAfter: new Date("2024-01-15T09:30:00.000Z"), - * createdBefore: new Date("2024-01-15T09:30:00.000Z"), - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - * modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - * pageSize: 1, - * remoteId: "remote_id" - * }) - */ - public list( - request: Merge.accounting.AttachmentsListRequest = {}, - requestOptions?: AttachmentsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__list(request, requestOptions)); - } - - private async __list( - request: Merge.accounting.AttachmentsListRequest = {}, - requestOptions?: AttachmentsClient.RequestOptions, - ): Promise> { - const { - companyId, - createdAfter, - createdBefore, - cursor, - includeDeletedData, - includeRemoteData, - includeShellData, - modifiedAfter, - modifiedBefore, - pageSize, - remoteId, - } = request; - const _queryParams: Record = { - company_id: companyId, - created_after: createdAfter?.toISOString(), - created_before: createdBefore?.toISOString(), - cursor, - include_deleted_data: includeDeletedData, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - modified_after: modifiedAfter?.toISOString(), - modified_before: modifiedBefore?.toISOString(), - page_size: pageSize, - remote_id: remoteId, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/attachments", - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaginatedAccountingAttachmentList.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError(_response.error, _response.rawResponse, "GET", "/accounting/v1/attachments"); - } - - /** - * Creates an `AccountingAttachment` object with the given values. - * - * @param {Merge.accounting.AccountingAttachmentEndpointRequest} request - * @param {AttachmentsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.attachments.create({ - * isDebugMode: true, - * runAsync: true, - * model: {} - * }) - */ - public create( - request: Merge.accounting.AccountingAttachmentEndpointRequest, - requestOptions?: AttachmentsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__create(request, requestOptions)); - } - - private async __create( - request: Merge.accounting.AccountingAttachmentEndpointRequest, - requestOptions?: AttachmentsClient.RequestOptions, - ): Promise> { - const { isDebugMode, runAsync, ..._body } = request; - const _queryParams: Record = { - is_debug_mode: isDebugMode, - run_async: runAsync, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/attachments", - ), - method: "POST", - headers: _headers, - contentType: "application/json", - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - requestType: "json", - body: serializers.accounting.AccountingAttachmentEndpointRequest.jsonOrThrow(_body, { - unrecognizedObjectKeys: "strip", - }), - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.AccountingAttachmentResponse.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError(_response.error, _response.rawResponse, "POST", "/accounting/v1/attachments"); - } - - /** - * Returns an `AccountingAttachment` object with the given `id`. - * - * @param {string} id - * @param {Merge.accounting.AttachmentsRetrieveRequest} request - * @param {AttachmentsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.attachments.retrieve("id", { - * includeRemoteData: true, - * includeShellData: true - * }) - */ - public retrieve( - id: string, - request: Merge.accounting.AttachmentsRetrieveRequest = {}, - requestOptions?: AttachmentsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__retrieve(id, request, requestOptions)); - } - - private async __retrieve( - id: string, - request: Merge.accounting.AttachmentsRetrieveRequest = {}, - requestOptions?: AttachmentsClient.RequestOptions, - ): Promise> { - const { includeRemoteData, includeShellData } = request; - const _queryParams: Record = { - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - `accounting/v1/attachments/${core.url.encodePathParam(id)}`, - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.AccountingAttachment.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/attachments/{id}", - ); - } - - /** - * Returns metadata for `AccountingAttachment` POSTs. - * - * @param {AttachmentsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.attachments.metaPostRetrieve() - */ - public metaPostRetrieve( - requestOptions?: AttachmentsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__metaPostRetrieve(requestOptions)); - } - - private async __metaPostRetrieve( - requestOptions?: AttachmentsClient.RequestOptions, - ): Promise> { - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/attachments/meta/post", - ), - method: "GET", - headers: _headers, - queryParameters: requestOptions?.queryParams, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.MetaResponse.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/attachments/meta/post", - ); - } -} diff --git a/src/api/resources/accounting/resources/attachments/client/index.ts b/src/api/resources/accounting/resources/attachments/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/api/resources/accounting/resources/attachments/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/api/resources/accounting/resources/attachments/client/requests/AccountingAttachmentEndpointRequest.ts b/src/api/resources/accounting/resources/attachments/client/requests/AccountingAttachmentEndpointRequest.ts deleted file mode 100644 index f9c602317..000000000 --- a/src/api/resources/accounting/resources/attachments/client/requests/AccountingAttachmentEndpointRequest.ts +++ /dev/null @@ -1,19 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * isDebugMode: true, - * runAsync: true, - * model: {} - * } - */ -export interface AccountingAttachmentEndpointRequest { - /** Whether to include debug fields (such as log file links) in the response. */ - isDebugMode?: boolean; - /** Whether or not third-party updates should be run asynchronously. */ - runAsync?: boolean; - model: Merge.accounting.AccountingAttachmentRequest; -} diff --git a/src/api/resources/accounting/resources/attachments/client/requests/AttachmentsListRequest.ts b/src/api/resources/accounting/resources/attachments/client/requests/AttachmentsListRequest.ts deleted file mode 100644 index ed7c9aa8d..000000000 --- a/src/api/resources/accounting/resources/attachments/client/requests/AttachmentsListRequest.ts +++ /dev/null @@ -1,42 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * @example - * { - * companyId: "company_id", - * createdAfter: new Date("2024-01-15T09:30:00.000Z"), - * createdBefore: new Date("2024-01-15T09:30:00.000Z"), - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - * modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - * pageSize: 1, - * remoteId: "remote_id" - * } - */ -export interface AttachmentsListRequest { - /** If provided, will only return accounting attachments for this company. */ - companyId?: string; - /** If provided, will only return objects created after this datetime. */ - createdAfter?: Date; - /** If provided, will only return objects created before this datetime. */ - createdBefore?: Date; - /** The pagination cursor value. */ - cursor?: string; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - includeDeletedData?: boolean; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** If provided, only objects synced by Merge after this date time will be returned. */ - modifiedAfter?: Date; - /** If provided, only objects synced by Merge before this date time will be returned. */ - modifiedBefore?: Date; - /** Number of results to return per page. */ - pageSize?: number; - /** The API provider's ID for the given object. */ - remoteId?: string; -} diff --git a/src/api/resources/accounting/resources/attachments/client/requests/AttachmentsRetrieveRequest.ts b/src/api/resources/accounting/resources/attachments/client/requests/AttachmentsRetrieveRequest.ts deleted file mode 100644 index 4242812a9..000000000 --- a/src/api/resources/accounting/resources/attachments/client/requests/AttachmentsRetrieveRequest.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * @example - * { - * includeRemoteData: true, - * includeShellData: true - * } - */ -export interface AttachmentsRetrieveRequest { - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; -} diff --git a/src/api/resources/accounting/resources/attachments/client/requests/index.ts b/src/api/resources/accounting/resources/attachments/client/requests/index.ts deleted file mode 100644 index fbcf4a827..000000000 --- a/src/api/resources/accounting/resources/attachments/client/requests/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -export type { AccountingAttachmentEndpointRequest } from "./AccountingAttachmentEndpointRequest"; -export type { AttachmentsListRequest } from "./AttachmentsListRequest"; -export type { AttachmentsRetrieveRequest } from "./AttachmentsRetrieveRequest"; diff --git a/src/api/resources/accounting/resources/attachments/exports.ts b/src/api/resources/accounting/resources/attachments/exports.ts deleted file mode 100644 index cdb3146a3..000000000 --- a/src/api/resources/accounting/resources/attachments/exports.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export { AttachmentsClient } from "./client/Client"; -export * from "./client/index"; diff --git a/src/api/resources/accounting/resources/attachments/index.ts b/src/api/resources/accounting/resources/attachments/index.ts deleted file mode 100644 index 5ec76921e..000000000 --- a/src/api/resources/accounting/resources/attachments/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./client"; diff --git a/src/api/resources/accounting/resources/auditTrail/client/Client.ts b/src/api/resources/accounting/resources/auditTrail/client/Client.ts deleted file mode 100644 index f71839bfa..000000000 --- a/src/api/resources/accounting/resources/auditTrail/client/Client.ts +++ /dev/null @@ -1,108 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../BaseClient"; -import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../../../BaseClient"; -import * as core from "../../../../../../core"; -import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../../../core/headers"; -import * as environments from "../../../../../../environments"; -import { handleNonStatusCodeError } from "../../../../../../errors/handleNonStatusCodeError"; -import * as errors from "../../../../../../errors/index"; -import * as serializers from "../../../../../../serialization/index"; -import type * as Merge from "../../../../../index"; - -export declare namespace AuditTrailClient { - export type Options = BaseClientOptions; - - export interface RequestOptions extends BaseRequestOptions {} -} - -export class AuditTrailClient { - protected readonly _options: NormalizedClientOptionsWithAuth; - - constructor(options: AuditTrailClient.Options) { - this._options = normalizeClientOptionsWithAuth(options); - } - - /** - * Gets a list of audit trail events. - * - * @param {Merge.accounting.AuditTrailListRequest} request - * @param {AuditTrailClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.auditTrail.list({ - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * endDate: "end_date", - * eventType: "event_type", - * pageSize: 1, - * startDate: "start_date", - * userEmail: "user_email" - * }) - */ - public list( - request: Merge.accounting.AuditTrailListRequest = {}, - requestOptions?: AuditTrailClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__list(request, requestOptions)); - } - - private async __list( - request: Merge.accounting.AuditTrailListRequest = {}, - requestOptions?: AuditTrailClient.RequestOptions, - ): Promise> { - const { cursor, endDate, eventType, pageSize, startDate, userEmail } = request; - const _queryParams: Record = { - cursor, - end_date: endDate, - event_type: eventType, - page_size: pageSize, - start_date: startDate, - user_email: userEmail, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/audit-trail", - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaginatedAuditLogEventList.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError(_response.error, _response.rawResponse, "GET", "/accounting/v1/audit-trail"); - } -} diff --git a/src/api/resources/accounting/resources/auditTrail/client/index.ts b/src/api/resources/accounting/resources/auditTrail/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/api/resources/accounting/resources/auditTrail/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/api/resources/accounting/resources/auditTrail/client/requests/AuditTrailListRequest.ts b/src/api/resources/accounting/resources/auditTrail/client/requests/AuditTrailListRequest.ts deleted file mode 100644 index 65216f96c..000000000 --- a/src/api/resources/accounting/resources/auditTrail/client/requests/AuditTrailListRequest.ts +++ /dev/null @@ -1,27 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * @example - * { - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * endDate: "end_date", - * eventType: "event_type", - * pageSize: 1, - * startDate: "start_date", - * userEmail: "user_email" - * } - */ -export interface AuditTrailListRequest { - /** The pagination cursor value. */ - cursor?: string; - /** If included, will only include audit trail events that occurred before this time */ - endDate?: string; - /** If included, will only include events with the given event type. Possible values include: `CREATED_REMOTE_PRODUCTION_API_KEY`, `DELETED_REMOTE_PRODUCTION_API_KEY`, `CREATED_TEST_API_KEY`, `DELETED_TEST_API_KEY`, `REGENERATED_PRODUCTION_API_KEY`, `REGENERATED_WEBHOOK_SIGNATURE`, `INVITED_USER`, `TWO_FACTOR_AUTH_ENABLED`, `TWO_FACTOR_AUTH_DISABLED`, `DELETED_LINKED_ACCOUNT`, `DELETED_ALL_COMMON_MODELS_FOR_LINKED_ACCOUNT`, `CREATED_DESTINATION`, `DELETED_DESTINATION`, `CHANGED_DESTINATION`, `CHANGED_SCOPES`, `CHANGED_PERSONAL_INFORMATION`, `CHANGED_ORGANIZATION_SETTINGS`, `ENABLED_INTEGRATION`, `DISABLED_INTEGRATION`, `ENABLED_CATEGORY`, `DISABLED_CATEGORY`, `CHANGED_PASSWORD`, `RESET_PASSWORD`, `ENABLED_REDACT_UNMAPPED_DATA_FOR_ORGANIZATION`, `ENABLED_REDACT_UNMAPPED_DATA_FOR_LINKED_ACCOUNT`, `DISABLED_REDACT_UNMAPPED_DATA_FOR_ORGANIZATION`, `DISABLED_REDACT_UNMAPPED_DATA_FOR_LINKED_ACCOUNT`, `CREATED_INTEGRATION_WIDE_FIELD_MAPPING`, `CREATED_LINKED_ACCOUNT_FIELD_MAPPING`, `CHANGED_INTEGRATION_WIDE_FIELD_MAPPING`, `CHANGED_LINKED_ACCOUNT_FIELD_MAPPING`, `DELETED_INTEGRATION_WIDE_FIELD_MAPPING`, `DELETED_LINKED_ACCOUNT_FIELD_MAPPING`, `CREATED_LINKED_ACCOUNT_COMMON_MODEL_OVERRIDE`, `CHANGED_LINKED_ACCOUNT_COMMON_MODEL_OVERRIDE`, `DELETED_LINKED_ACCOUNT_COMMON_MODEL_OVERRIDE`, `FORCED_LINKED_ACCOUNT_RESYNC`, `MUTED_ISSUE`, `GENERATED_MAGIC_LINK`, `ENABLED_MERGE_WEBHOOK`, `DISABLED_MERGE_WEBHOOK`, `MERGE_WEBHOOK_TARGET_CHANGED`, `END_USER_CREDENTIALS_ACCESSED` */ - eventType?: string; - /** Number of results to return per page. */ - pageSize?: number; - /** If included, will only include audit trail events that occurred after this time */ - startDate?: string; - /** If provided, this will return events associated with the specified user email. Please note that the email address reflects the user's email at the time of the event, and may not be their current email. */ - userEmail?: string; -} diff --git a/src/api/resources/accounting/resources/auditTrail/client/requests/index.ts b/src/api/resources/accounting/resources/auditTrail/client/requests/index.ts deleted file mode 100644 index 1878598de..000000000 --- a/src/api/resources/accounting/resources/auditTrail/client/requests/index.ts +++ /dev/null @@ -1 +0,0 @@ -export type { AuditTrailListRequest } from "./AuditTrailListRequest"; diff --git a/src/api/resources/accounting/resources/auditTrail/exports.ts b/src/api/resources/accounting/resources/auditTrail/exports.ts deleted file mode 100644 index 0a7d225a1..000000000 --- a/src/api/resources/accounting/resources/auditTrail/exports.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export { AuditTrailClient } from "./client/Client"; -export * from "./client/index"; diff --git a/src/api/resources/accounting/resources/auditTrail/index.ts b/src/api/resources/accounting/resources/auditTrail/index.ts deleted file mode 100644 index 5ec76921e..000000000 --- a/src/api/resources/accounting/resources/auditTrail/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./client"; diff --git a/src/api/resources/accounting/resources/availableActions/client/Client.ts b/src/api/resources/accounting/resources/availableActions/client/Client.ts deleted file mode 100644 index b838348a9..000000000 --- a/src/api/resources/accounting/resources/availableActions/client/Client.ts +++ /dev/null @@ -1,94 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../BaseClient"; -import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../../../BaseClient"; -import * as core from "../../../../../../core"; -import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../../../core/headers"; -import * as environments from "../../../../../../environments"; -import { handleNonStatusCodeError } from "../../../../../../errors/handleNonStatusCodeError"; -import * as errors from "../../../../../../errors/index"; -import * as serializers from "../../../../../../serialization/index"; -import type * as Merge from "../../../../../index"; - -export declare namespace AvailableActionsClient { - export type Options = BaseClientOptions; - - export interface RequestOptions extends BaseRequestOptions {} -} - -export class AvailableActionsClient { - protected readonly _options: NormalizedClientOptionsWithAuth; - - constructor(options: AvailableActionsClient.Options) { - this._options = normalizeClientOptionsWithAuth(options); - } - - /** - * Returns a list of models and actions available for an account. - * - * @param {AvailableActionsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.availableActions.retrieve() - */ - public retrieve( - requestOptions?: AvailableActionsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__retrieve(requestOptions)); - } - - private async __retrieve( - requestOptions?: AvailableActionsClient.RequestOptions, - ): Promise> { - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/available-actions", - ), - method: "GET", - headers: _headers, - queryParameters: requestOptions?.queryParams, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.AvailableActions.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/available-actions", - ); - } -} diff --git a/src/api/resources/accounting/resources/availableActions/client/index.ts b/src/api/resources/accounting/resources/availableActions/client/index.ts deleted file mode 100644 index cb0ff5c3b..000000000 --- a/src/api/resources/accounting/resources/availableActions/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export {}; diff --git a/src/api/resources/accounting/resources/availableActions/exports.ts b/src/api/resources/accounting/resources/availableActions/exports.ts deleted file mode 100644 index 660bd32af..000000000 --- a/src/api/resources/accounting/resources/availableActions/exports.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export { AvailableActionsClient } from "./client/Client"; -export * from "./client/index"; diff --git a/src/api/resources/accounting/resources/availableActions/index.ts b/src/api/resources/accounting/resources/availableActions/index.ts deleted file mode 100644 index 5ec76921e..000000000 --- a/src/api/resources/accounting/resources/availableActions/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./client"; diff --git a/src/api/resources/accounting/resources/balanceSheets/client/Client.ts b/src/api/resources/accounting/resources/balanceSheets/client/Client.ts deleted file mode 100644 index 889501585..000000000 --- a/src/api/resources/accounting/resources/balanceSheets/client/Client.ts +++ /dev/null @@ -1,218 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../BaseClient"; -import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../../../BaseClient"; -import * as core from "../../../../../../core"; -import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../../../core/headers"; -import * as environments from "../../../../../../environments"; -import { handleNonStatusCodeError } from "../../../../../../errors/handleNonStatusCodeError"; -import * as errors from "../../../../../../errors/index"; -import * as serializers from "../../../../../../serialization/index"; -import type * as Merge from "../../../../../index"; - -export declare namespace BalanceSheetsClient { - export type Options = BaseClientOptions; - - export interface RequestOptions extends BaseRequestOptions {} -} - -export class BalanceSheetsClient { - protected readonly _options: NormalizedClientOptionsWithAuth; - - constructor(options: BalanceSheetsClient.Options) { - this._options = normalizeClientOptionsWithAuth(options); - } - - /** - * Returns a list of `BalanceSheet` objects. - * - * @param {Merge.accounting.BalanceSheetsListRequest} request - * @param {BalanceSheetsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.balanceSheets.list({ - * companyId: "company_id", - * createdAfter: new Date("2024-01-15T09:30:00.000Z"), - * createdBefore: new Date("2024-01-15T09:30:00.000Z"), - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * expand: "company", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - * modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - * pageSize: 1, - * remoteId: "remote_id" - * }) - */ - public list( - request: Merge.accounting.BalanceSheetsListRequest = {}, - requestOptions?: BalanceSheetsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__list(request, requestOptions)); - } - - private async __list( - request: Merge.accounting.BalanceSheetsListRequest = {}, - requestOptions?: BalanceSheetsClient.RequestOptions, - ): Promise> { - const { - companyId, - createdAfter, - createdBefore, - cursor, - expand, - includeDeletedData, - includeRemoteData, - includeShellData, - modifiedAfter, - modifiedBefore, - pageSize, - remoteId, - } = request; - const _queryParams: Record = { - company_id: companyId, - created_after: createdAfter?.toISOString(), - created_before: createdBefore?.toISOString(), - cursor, - expand: expand != null ? expand : undefined, - include_deleted_data: includeDeletedData, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - modified_after: modifiedAfter?.toISOString(), - modified_before: modifiedBefore?.toISOString(), - page_size: pageSize, - remote_id: remoteId, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/balance-sheets", - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaginatedBalanceSheetList.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError(_response.error, _response.rawResponse, "GET", "/accounting/v1/balance-sheets"); - } - - /** - * Returns a `BalanceSheet` object with the given `id`. - * - * @param {string} id - * @param {Merge.accounting.BalanceSheetsRetrieveRequest} request - * @param {BalanceSheetsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.balanceSheets.retrieve("id", { - * expand: "company", - * includeRemoteData: true, - * includeShellData: true - * }) - */ - public retrieve( - id: string, - request: Merge.accounting.BalanceSheetsRetrieveRequest = {}, - requestOptions?: BalanceSheetsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__retrieve(id, request, requestOptions)); - } - - private async __retrieve( - id: string, - request: Merge.accounting.BalanceSheetsRetrieveRequest = {}, - requestOptions?: BalanceSheetsClient.RequestOptions, - ): Promise> { - const { expand, includeRemoteData, includeShellData } = request; - const _queryParams: Record = { - expand: expand != null ? expand : undefined, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - `accounting/v1/balance-sheets/${core.url.encodePathParam(id)}`, - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.BalanceSheet.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/balance-sheets/{id}", - ); - } -} diff --git a/src/api/resources/accounting/resources/balanceSheets/client/index.ts b/src/api/resources/accounting/resources/balanceSheets/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/api/resources/accounting/resources/balanceSheets/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/api/resources/accounting/resources/balanceSheets/client/requests/BalanceSheetsListRequest.ts b/src/api/resources/accounting/resources/balanceSheets/client/requests/BalanceSheetsListRequest.ts deleted file mode 100644 index 3bfad6d23..000000000 --- a/src/api/resources/accounting/resources/balanceSheets/client/requests/BalanceSheetsListRequest.ts +++ /dev/null @@ -1,45 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * @example - * { - * companyId: "company_id", - * createdAfter: new Date("2024-01-15T09:30:00.000Z"), - * createdBefore: new Date("2024-01-15T09:30:00.000Z"), - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * expand: "company", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - * modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - * pageSize: 1, - * remoteId: "remote_id" - * } - */ -export interface BalanceSheetsListRequest { - /** If provided, will only return balance sheets for this company. */ - companyId?: string; - /** If provided, will only return objects created after this datetime. */ - createdAfter?: Date; - /** If provided, will only return objects created before this datetime. */ - createdBefore?: Date; - /** The pagination cursor value. */ - cursor?: string; - /** Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. */ - expand?: "company"; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - includeDeletedData?: boolean; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** If provided, only objects synced by Merge after this date time will be returned. */ - modifiedAfter?: Date; - /** If provided, only objects synced by Merge before this date time will be returned. */ - modifiedBefore?: Date; - /** Number of results to return per page. */ - pageSize?: number; - /** The API provider's ID for the given object. */ - remoteId?: string; -} diff --git a/src/api/resources/accounting/resources/balanceSheets/client/requests/BalanceSheetsRetrieveRequest.ts b/src/api/resources/accounting/resources/balanceSheets/client/requests/BalanceSheetsRetrieveRequest.ts deleted file mode 100644 index 5d04e464f..000000000 --- a/src/api/resources/accounting/resources/balanceSheets/client/requests/BalanceSheetsRetrieveRequest.ts +++ /dev/null @@ -1,18 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * @example - * { - * expand: "company", - * includeRemoteData: true, - * includeShellData: true - * } - */ -export interface BalanceSheetsRetrieveRequest { - /** Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. */ - expand?: "company"; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; -} diff --git a/src/api/resources/accounting/resources/balanceSheets/client/requests/index.ts b/src/api/resources/accounting/resources/balanceSheets/client/requests/index.ts deleted file mode 100644 index 3e73d0cc2..000000000 --- a/src/api/resources/accounting/resources/balanceSheets/client/requests/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export type { BalanceSheetsListRequest } from "./BalanceSheetsListRequest"; -export type { BalanceSheetsRetrieveRequest } from "./BalanceSheetsRetrieveRequest"; diff --git a/src/api/resources/accounting/resources/balanceSheets/exports.ts b/src/api/resources/accounting/resources/balanceSheets/exports.ts deleted file mode 100644 index 1b2cc9052..000000000 --- a/src/api/resources/accounting/resources/balanceSheets/exports.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export { BalanceSheetsClient } from "./client/Client"; -export * from "./client/index"; diff --git a/src/api/resources/accounting/resources/balanceSheets/index.ts b/src/api/resources/accounting/resources/balanceSheets/index.ts deleted file mode 100644 index 5ec76921e..000000000 --- a/src/api/resources/accounting/resources/balanceSheets/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./client"; diff --git a/src/api/resources/accounting/resources/bankFeedAccounts/client/Client.ts b/src/api/resources/accounting/resources/bankFeedAccounts/client/Client.ts deleted file mode 100644 index e307789f3..000000000 --- a/src/api/resources/accounting/resources/bankFeedAccounts/client/Client.ts +++ /dev/null @@ -1,349 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../BaseClient"; -import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../../../BaseClient"; -import * as core from "../../../../../../core"; -import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../../../core/headers"; -import * as environments from "../../../../../../environments"; -import { handleNonStatusCodeError } from "../../../../../../errors/handleNonStatusCodeError"; -import * as errors from "../../../../../../errors/index"; -import * as serializers from "../../../../../../serialization/index"; -import type * as Merge from "../../../../../index"; - -export declare namespace BankFeedAccountsClient { - export type Options = BaseClientOptions; - - export interface RequestOptions extends BaseRequestOptions {} -} - -export class BankFeedAccountsClient { - protected readonly _options: NormalizedClientOptionsWithAuth; - - constructor(options: BankFeedAccountsClient.Options) { - this._options = normalizeClientOptionsWithAuth(options); - } - - /** - * Returns a list of `BankFeedAccount` objects. - * - * @param {Merge.accounting.BankFeedAccountsListRequest} request - * @param {BankFeedAccountsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.bankFeedAccounts.list({ - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * pageSize: 1 - * }) - */ - public list( - request: Merge.accounting.BankFeedAccountsListRequest = {}, - requestOptions?: BankFeedAccountsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__list(request, requestOptions)); - } - - private async __list( - request: Merge.accounting.BankFeedAccountsListRequest = {}, - requestOptions?: BankFeedAccountsClient.RequestOptions, - ): Promise> { - const { cursor, includeDeletedData, includeRemoteData, includeShellData, pageSize } = request; - const _queryParams: Record = { - cursor, - include_deleted_data: includeDeletedData, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - page_size: pageSize, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/bank-feed-accounts", - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaginatedBankFeedAccountList.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/bank-feed-accounts", - ); - } - - /** - * Creates a `BankFeedAccount` object with the given values. - * - * @param {Merge.accounting.BankFeedAccountEndpointRequest} request - * @param {BankFeedAccountsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.bankFeedAccounts.create({ - * isDebugMode: true, - * runAsync: true, - * model: {} - * }) - */ - public create( - request: Merge.accounting.BankFeedAccountEndpointRequest, - requestOptions?: BankFeedAccountsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__create(request, requestOptions)); - } - - private async __create( - request: Merge.accounting.BankFeedAccountEndpointRequest, - requestOptions?: BankFeedAccountsClient.RequestOptions, - ): Promise> { - const { isDebugMode, runAsync, ..._body } = request; - const _queryParams: Record = { - is_debug_mode: isDebugMode, - run_async: runAsync, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/bank-feed-accounts", - ), - method: "POST", - headers: _headers, - contentType: "application/json", - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - requestType: "json", - body: serializers.accounting.BankFeedAccountEndpointRequest.jsonOrThrow(_body, { - unrecognizedObjectKeys: "strip", - }), - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.BankFeedAccountResponse.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "POST", - "/accounting/v1/bank-feed-accounts", - ); - } - - /** - * Returns a `BankFeedAccount` object with the given `id`. - * - * @param {string} id - * @param {Merge.accounting.BankFeedAccountsRetrieveRequest} request - * @param {BankFeedAccountsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.bankFeedAccounts.retrieve("id", { - * includeRemoteData: true, - * includeShellData: true - * }) - */ - public retrieve( - id: string, - request: Merge.accounting.BankFeedAccountsRetrieveRequest = {}, - requestOptions?: BankFeedAccountsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__retrieve(id, request, requestOptions)); - } - - private async __retrieve( - id: string, - request: Merge.accounting.BankFeedAccountsRetrieveRequest = {}, - requestOptions?: BankFeedAccountsClient.RequestOptions, - ): Promise> { - const { includeRemoteData, includeShellData } = request; - const _queryParams: Record = { - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - `accounting/v1/bank-feed-accounts/${core.url.encodePathParam(id)}`, - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.BankFeedAccount.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/bank-feed-accounts/{id}", - ); - } - - /** - * Returns metadata for `BankFeedAccount` POSTs. - * - * @param {BankFeedAccountsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.bankFeedAccounts.metaPostRetrieve() - */ - public metaPostRetrieve( - requestOptions?: BankFeedAccountsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__metaPostRetrieve(requestOptions)); - } - - private async __metaPostRetrieve( - requestOptions?: BankFeedAccountsClient.RequestOptions, - ): Promise> { - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/bank-feed-accounts/meta/post", - ), - method: "GET", - headers: _headers, - queryParameters: requestOptions?.queryParams, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.MetaResponse.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/bank-feed-accounts/meta/post", - ); - } -} diff --git a/src/api/resources/accounting/resources/bankFeedAccounts/client/index.ts b/src/api/resources/accounting/resources/bankFeedAccounts/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/api/resources/accounting/resources/bankFeedAccounts/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/api/resources/accounting/resources/bankFeedAccounts/client/requests/BankFeedAccountEndpointRequest.ts b/src/api/resources/accounting/resources/bankFeedAccounts/client/requests/BankFeedAccountEndpointRequest.ts deleted file mode 100644 index 2a39e86dd..000000000 --- a/src/api/resources/accounting/resources/bankFeedAccounts/client/requests/BankFeedAccountEndpointRequest.ts +++ /dev/null @@ -1,19 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * isDebugMode: true, - * runAsync: true, - * model: {} - * } - */ -export interface BankFeedAccountEndpointRequest { - /** Whether to include debug fields (such as log file links) in the response. */ - isDebugMode?: boolean; - /** Whether or not third-party updates should be run asynchronously. */ - runAsync?: boolean; - model: Merge.accounting.BankFeedAccountRequest; -} diff --git a/src/api/resources/accounting/resources/bankFeedAccounts/client/requests/BankFeedAccountsListRequest.ts b/src/api/resources/accounting/resources/bankFeedAccounts/client/requests/BankFeedAccountsListRequest.ts deleted file mode 100644 index 115922f41..000000000 --- a/src/api/resources/accounting/resources/bankFeedAccounts/client/requests/BankFeedAccountsListRequest.ts +++ /dev/null @@ -1,24 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * @example - * { - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * pageSize: 1 - * } - */ -export interface BankFeedAccountsListRequest { - /** The pagination cursor value. */ - cursor?: string; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - includeDeletedData?: boolean; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** Number of results to return per page. */ - pageSize?: number; -} diff --git a/src/api/resources/accounting/resources/bankFeedAccounts/client/requests/BankFeedAccountsRetrieveRequest.ts b/src/api/resources/accounting/resources/bankFeedAccounts/client/requests/BankFeedAccountsRetrieveRequest.ts deleted file mode 100644 index f5b772c52..000000000 --- a/src/api/resources/accounting/resources/bankFeedAccounts/client/requests/BankFeedAccountsRetrieveRequest.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * @example - * { - * includeRemoteData: true, - * includeShellData: true - * } - */ -export interface BankFeedAccountsRetrieveRequest { - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; -} diff --git a/src/api/resources/accounting/resources/bankFeedAccounts/client/requests/index.ts b/src/api/resources/accounting/resources/bankFeedAccounts/client/requests/index.ts deleted file mode 100644 index ee23ab2eb..000000000 --- a/src/api/resources/accounting/resources/bankFeedAccounts/client/requests/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -export type { BankFeedAccountEndpointRequest } from "./BankFeedAccountEndpointRequest"; -export type { BankFeedAccountsListRequest } from "./BankFeedAccountsListRequest"; -export type { BankFeedAccountsRetrieveRequest } from "./BankFeedAccountsRetrieveRequest"; diff --git a/src/api/resources/accounting/resources/bankFeedAccounts/exports.ts b/src/api/resources/accounting/resources/bankFeedAccounts/exports.ts deleted file mode 100644 index 9b1aa8e8e..000000000 --- a/src/api/resources/accounting/resources/bankFeedAccounts/exports.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export { BankFeedAccountsClient } from "./client/Client"; -export * from "./client/index"; diff --git a/src/api/resources/accounting/resources/bankFeedAccounts/index.ts b/src/api/resources/accounting/resources/bankFeedAccounts/index.ts deleted file mode 100644 index 5ec76921e..000000000 --- a/src/api/resources/accounting/resources/bankFeedAccounts/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./client"; diff --git a/src/api/resources/accounting/resources/bankFeedTransactions/client/Client.ts b/src/api/resources/accounting/resources/bankFeedTransactions/client/Client.ts deleted file mode 100644 index 3ceb0de41..000000000 --- a/src/api/resources/accounting/resources/bankFeedTransactions/client/Client.ts +++ /dev/null @@ -1,378 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../BaseClient"; -import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../../../BaseClient"; -import * as core from "../../../../../../core"; -import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../../../core/headers"; -import * as environments from "../../../../../../environments"; -import { handleNonStatusCodeError } from "../../../../../../errors/handleNonStatusCodeError"; -import * as errors from "../../../../../../errors/index"; -import * as serializers from "../../../../../../serialization/index"; -import type * as Merge from "../../../../../index"; - -export declare namespace BankFeedTransactionsClient { - export type Options = BaseClientOptions; - - export interface RequestOptions extends BaseRequestOptions {} -} - -export class BankFeedTransactionsClient { - protected readonly _options: NormalizedClientOptionsWithAuth; - - constructor(options: BankFeedTransactionsClient.Options) { - this._options = normalizeClientOptionsWithAuth(options); - } - - /** - * Returns a list of `BankFeedTransaction` objects. - * - * @param {Merge.accounting.BankFeedTransactionsListRequest} request - * @param {BankFeedTransactionsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.bankFeedTransactions.list({ - * createdAfter: new Date("2024-01-15T09:30:00.000Z"), - * createdBefore: new Date("2024-01-15T09:30:00.000Z"), - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * expand: "bank_feed_account", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * isProcessed: true, - * modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - * modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - * pageSize: 1, - * remoteId: "remote_id" - * }) - */ - public list( - request: Merge.accounting.BankFeedTransactionsListRequest = {}, - requestOptions?: BankFeedTransactionsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__list(request, requestOptions)); - } - - private async __list( - request: Merge.accounting.BankFeedTransactionsListRequest = {}, - requestOptions?: BankFeedTransactionsClient.RequestOptions, - ): Promise> { - const { - createdAfter, - createdBefore, - cursor, - expand, - includeDeletedData, - includeRemoteData, - includeShellData, - isProcessed, - modifiedAfter, - modifiedBefore, - pageSize, - remoteId, - } = request; - const _queryParams: Record = { - created_after: createdAfter?.toISOString(), - created_before: createdBefore?.toISOString(), - cursor, - expand: expand != null ? expand : undefined, - include_deleted_data: includeDeletedData, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - is_processed: isProcessed, - modified_after: modifiedAfter?.toISOString(), - modified_before: modifiedBefore?.toISOString(), - page_size: pageSize, - remote_id: remoteId, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/bank-feed-transactions", - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaginatedBankFeedTransactionList.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/bank-feed-transactions", - ); - } - - /** - * Creates a `BankFeedTransaction` object with the given values. - * - * @param {Merge.accounting.BankFeedTransactionEndpointRequest} request - * @param {BankFeedTransactionsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.bankFeedTransactions.create({ - * isDebugMode: true, - * runAsync: true, - * model: {} - * }) - */ - public create( - request: Merge.accounting.BankFeedTransactionEndpointRequest, - requestOptions?: BankFeedTransactionsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__create(request, requestOptions)); - } - - private async __create( - request: Merge.accounting.BankFeedTransactionEndpointRequest, - requestOptions?: BankFeedTransactionsClient.RequestOptions, - ): Promise> { - const { isDebugMode, runAsync, ..._body } = request; - const _queryParams: Record = { - is_debug_mode: isDebugMode, - run_async: runAsync, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/bank-feed-transactions", - ), - method: "POST", - headers: _headers, - contentType: "application/json", - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - requestType: "json", - body: serializers.accounting.BankFeedTransactionEndpointRequest.jsonOrThrow(_body, { - unrecognizedObjectKeys: "strip", - }), - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.BankFeedTransactionResponse.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "POST", - "/accounting/v1/bank-feed-transactions", - ); - } - - /** - * Returns a `BankFeedTransaction` object with the given `id`. - * - * @param {string} id - * @param {Merge.accounting.BankFeedTransactionsRetrieveRequest} request - * @param {BankFeedTransactionsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.bankFeedTransactions.retrieve("id", { - * expand: "bank_feed_account", - * includeRemoteData: true, - * includeShellData: true - * }) - */ - public retrieve( - id: string, - request: Merge.accounting.BankFeedTransactionsRetrieveRequest = {}, - requestOptions?: BankFeedTransactionsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__retrieve(id, request, requestOptions)); - } - - private async __retrieve( - id: string, - request: Merge.accounting.BankFeedTransactionsRetrieveRequest = {}, - requestOptions?: BankFeedTransactionsClient.RequestOptions, - ): Promise> { - const { expand, includeRemoteData, includeShellData } = request; - const _queryParams: Record = { - expand: expand != null ? expand : undefined, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - `accounting/v1/bank-feed-transactions/${core.url.encodePathParam(id)}`, - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.BankFeedTransaction.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/bank-feed-transactions/{id}", - ); - } - - /** - * Returns metadata for `BankFeedTransaction` POSTs. - * - * @param {BankFeedTransactionsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.bankFeedTransactions.metaPostRetrieve() - */ - public metaPostRetrieve( - requestOptions?: BankFeedTransactionsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__metaPostRetrieve(requestOptions)); - } - - private async __metaPostRetrieve( - requestOptions?: BankFeedTransactionsClient.RequestOptions, - ): Promise> { - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/bank-feed-transactions/meta/post", - ), - method: "GET", - headers: _headers, - queryParameters: requestOptions?.queryParams, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.MetaResponse.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/bank-feed-transactions/meta/post", - ); - } -} diff --git a/src/api/resources/accounting/resources/bankFeedTransactions/client/index.ts b/src/api/resources/accounting/resources/bankFeedTransactions/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/api/resources/accounting/resources/bankFeedTransactions/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/api/resources/accounting/resources/bankFeedTransactions/client/requests/BankFeedTransactionEndpointRequest.ts b/src/api/resources/accounting/resources/bankFeedTransactions/client/requests/BankFeedTransactionEndpointRequest.ts deleted file mode 100644 index bab200892..000000000 --- a/src/api/resources/accounting/resources/bankFeedTransactions/client/requests/BankFeedTransactionEndpointRequest.ts +++ /dev/null @@ -1,19 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * isDebugMode: true, - * runAsync: true, - * model: {} - * } - */ -export interface BankFeedTransactionEndpointRequest { - /** Whether to include debug fields (such as log file links) in the response. */ - isDebugMode?: boolean; - /** Whether or not third-party updates should be run asynchronously. */ - runAsync?: boolean; - model: Merge.accounting.BankFeedTransactionRequestRequest; -} diff --git a/src/api/resources/accounting/resources/bankFeedTransactions/client/requests/BankFeedTransactionsListRequest.ts b/src/api/resources/accounting/resources/bankFeedTransactions/client/requests/BankFeedTransactionsListRequest.ts deleted file mode 100644 index 707d1e2ef..000000000 --- a/src/api/resources/accounting/resources/bankFeedTransactions/client/requests/BankFeedTransactionsListRequest.ts +++ /dev/null @@ -1,45 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * @example - * { - * createdAfter: new Date("2024-01-15T09:30:00.000Z"), - * createdBefore: new Date("2024-01-15T09:30:00.000Z"), - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * expand: "bank_feed_account", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * isProcessed: true, - * modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - * modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - * pageSize: 1, - * remoteId: "remote_id" - * } - */ -export interface BankFeedTransactionsListRequest { - /** If provided, will only return objects created after this datetime. */ - createdAfter?: Date; - /** If provided, will only return objects created before this datetime. */ - createdBefore?: Date; - /** The pagination cursor value. */ - cursor?: string; - /** Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. */ - expand?: "bank_feed_account"; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - includeDeletedData?: boolean; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** If provided, will only return bank feed transactions with this is_processed value */ - isProcessed?: boolean; - /** If provided, only objects synced by Merge after this date time will be returned. */ - modifiedAfter?: Date; - /** If provided, only objects synced by Merge before this date time will be returned. */ - modifiedBefore?: Date; - /** Number of results to return per page. */ - pageSize?: number; - /** The API provider's ID for the given object. */ - remoteId?: string; -} diff --git a/src/api/resources/accounting/resources/bankFeedTransactions/client/requests/BankFeedTransactionsRetrieveRequest.ts b/src/api/resources/accounting/resources/bankFeedTransactions/client/requests/BankFeedTransactionsRetrieveRequest.ts deleted file mode 100644 index e62d97162..000000000 --- a/src/api/resources/accounting/resources/bankFeedTransactions/client/requests/BankFeedTransactionsRetrieveRequest.ts +++ /dev/null @@ -1,18 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * @example - * { - * expand: "bank_feed_account", - * includeRemoteData: true, - * includeShellData: true - * } - */ -export interface BankFeedTransactionsRetrieveRequest { - /** Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. */ - expand?: "bank_feed_account"; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; -} diff --git a/src/api/resources/accounting/resources/bankFeedTransactions/client/requests/index.ts b/src/api/resources/accounting/resources/bankFeedTransactions/client/requests/index.ts deleted file mode 100644 index fb01fc4c8..000000000 --- a/src/api/resources/accounting/resources/bankFeedTransactions/client/requests/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -export type { BankFeedTransactionEndpointRequest } from "./BankFeedTransactionEndpointRequest"; -export type { BankFeedTransactionsListRequest } from "./BankFeedTransactionsListRequest"; -export type { BankFeedTransactionsRetrieveRequest } from "./BankFeedTransactionsRetrieveRequest"; diff --git a/src/api/resources/accounting/resources/bankFeedTransactions/exports.ts b/src/api/resources/accounting/resources/bankFeedTransactions/exports.ts deleted file mode 100644 index 22f377bae..000000000 --- a/src/api/resources/accounting/resources/bankFeedTransactions/exports.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export { BankFeedTransactionsClient } from "./client/Client"; -export * from "./client/index"; diff --git a/src/api/resources/accounting/resources/bankFeedTransactions/index.ts b/src/api/resources/accounting/resources/bankFeedTransactions/index.ts deleted file mode 100644 index 5ec76921e..000000000 --- a/src/api/resources/accounting/resources/bankFeedTransactions/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./client"; diff --git a/src/api/resources/accounting/resources/cashFlowStatements/client/Client.ts b/src/api/resources/accounting/resources/cashFlowStatements/client/Client.ts deleted file mode 100644 index adfb4163c..000000000 --- a/src/api/resources/accounting/resources/cashFlowStatements/client/Client.ts +++ /dev/null @@ -1,223 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../BaseClient"; -import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../../../BaseClient"; -import * as core from "../../../../../../core"; -import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../../../core/headers"; -import * as environments from "../../../../../../environments"; -import { handleNonStatusCodeError } from "../../../../../../errors/handleNonStatusCodeError"; -import * as errors from "../../../../../../errors/index"; -import * as serializers from "../../../../../../serialization/index"; -import type * as Merge from "../../../../../index"; - -export declare namespace CashFlowStatementsClient { - export type Options = BaseClientOptions; - - export interface RequestOptions extends BaseRequestOptions {} -} - -export class CashFlowStatementsClient { - protected readonly _options: NormalizedClientOptionsWithAuth; - - constructor(options: CashFlowStatementsClient.Options) { - this._options = normalizeClientOptionsWithAuth(options); - } - - /** - * Returns a list of `CashFlowStatement` objects. - * - * @param {Merge.accounting.CashFlowStatementsListRequest} request - * @param {CashFlowStatementsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.cashFlowStatements.list({ - * companyId: "company_id", - * createdAfter: new Date("2024-01-15T09:30:00.000Z"), - * createdBefore: new Date("2024-01-15T09:30:00.000Z"), - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * expand: "company", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - * modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - * pageSize: 1, - * remoteId: "remote_id" - * }) - */ - public list( - request: Merge.accounting.CashFlowStatementsListRequest = {}, - requestOptions?: CashFlowStatementsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__list(request, requestOptions)); - } - - private async __list( - request: Merge.accounting.CashFlowStatementsListRequest = {}, - requestOptions?: CashFlowStatementsClient.RequestOptions, - ): Promise> { - const { - companyId, - createdAfter, - createdBefore, - cursor, - expand, - includeDeletedData, - includeRemoteData, - includeShellData, - modifiedAfter, - modifiedBefore, - pageSize, - remoteId, - } = request; - const _queryParams: Record = { - company_id: companyId, - created_after: createdAfter?.toISOString(), - created_before: createdBefore?.toISOString(), - cursor, - expand: expand != null ? expand : undefined, - include_deleted_data: includeDeletedData, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - modified_after: modifiedAfter?.toISOString(), - modified_before: modifiedBefore?.toISOString(), - page_size: pageSize, - remote_id: remoteId, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/cash-flow-statements", - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaginatedCashFlowStatementList.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/cash-flow-statements", - ); - } - - /** - * Returns a `CashFlowStatement` object with the given `id`. - * - * @param {string} id - * @param {Merge.accounting.CashFlowStatementsRetrieveRequest} request - * @param {CashFlowStatementsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.cashFlowStatements.retrieve("id", { - * expand: "company", - * includeRemoteData: true, - * includeShellData: true - * }) - */ - public retrieve( - id: string, - request: Merge.accounting.CashFlowStatementsRetrieveRequest = {}, - requestOptions?: CashFlowStatementsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__retrieve(id, request, requestOptions)); - } - - private async __retrieve( - id: string, - request: Merge.accounting.CashFlowStatementsRetrieveRequest = {}, - requestOptions?: CashFlowStatementsClient.RequestOptions, - ): Promise> { - const { expand, includeRemoteData, includeShellData } = request; - const _queryParams: Record = { - expand: expand != null ? expand : undefined, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - `accounting/v1/cash-flow-statements/${core.url.encodePathParam(id)}`, - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.CashFlowStatement.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/cash-flow-statements/{id}", - ); - } -} diff --git a/src/api/resources/accounting/resources/cashFlowStatements/client/index.ts b/src/api/resources/accounting/resources/cashFlowStatements/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/api/resources/accounting/resources/cashFlowStatements/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/api/resources/accounting/resources/cashFlowStatements/client/requests/CashFlowStatementsListRequest.ts b/src/api/resources/accounting/resources/cashFlowStatements/client/requests/CashFlowStatementsListRequest.ts deleted file mode 100644 index 105782d1f..000000000 --- a/src/api/resources/accounting/resources/cashFlowStatements/client/requests/CashFlowStatementsListRequest.ts +++ /dev/null @@ -1,45 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * @example - * { - * companyId: "company_id", - * createdAfter: new Date("2024-01-15T09:30:00.000Z"), - * createdBefore: new Date("2024-01-15T09:30:00.000Z"), - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * expand: "company", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - * modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - * pageSize: 1, - * remoteId: "remote_id" - * } - */ -export interface CashFlowStatementsListRequest { - /** If provided, will only return cash flow statements for this company. */ - companyId?: string; - /** If provided, will only return objects created after this datetime. */ - createdAfter?: Date; - /** If provided, will only return objects created before this datetime. */ - createdBefore?: Date; - /** The pagination cursor value. */ - cursor?: string; - /** Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. */ - expand?: "company"; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - includeDeletedData?: boolean; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** If provided, only objects synced by Merge after this date time will be returned. */ - modifiedAfter?: Date; - /** If provided, only objects synced by Merge before this date time will be returned. */ - modifiedBefore?: Date; - /** Number of results to return per page. */ - pageSize?: number; - /** The API provider's ID for the given object. */ - remoteId?: string; -} diff --git a/src/api/resources/accounting/resources/cashFlowStatements/client/requests/CashFlowStatementsRetrieveRequest.ts b/src/api/resources/accounting/resources/cashFlowStatements/client/requests/CashFlowStatementsRetrieveRequest.ts deleted file mode 100644 index b8c9fea3d..000000000 --- a/src/api/resources/accounting/resources/cashFlowStatements/client/requests/CashFlowStatementsRetrieveRequest.ts +++ /dev/null @@ -1,18 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * @example - * { - * expand: "company", - * includeRemoteData: true, - * includeShellData: true - * } - */ -export interface CashFlowStatementsRetrieveRequest { - /** Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. */ - expand?: "company"; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; -} diff --git a/src/api/resources/accounting/resources/cashFlowStatements/client/requests/index.ts b/src/api/resources/accounting/resources/cashFlowStatements/client/requests/index.ts deleted file mode 100644 index dff0703d9..000000000 --- a/src/api/resources/accounting/resources/cashFlowStatements/client/requests/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export type { CashFlowStatementsListRequest } from "./CashFlowStatementsListRequest"; -export type { CashFlowStatementsRetrieveRequest } from "./CashFlowStatementsRetrieveRequest"; diff --git a/src/api/resources/accounting/resources/cashFlowStatements/exports.ts b/src/api/resources/accounting/resources/cashFlowStatements/exports.ts deleted file mode 100644 index 167b5f87d..000000000 --- a/src/api/resources/accounting/resources/cashFlowStatements/exports.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export { CashFlowStatementsClient } from "./client/Client"; -export * from "./client/index"; diff --git a/src/api/resources/accounting/resources/cashFlowStatements/index.ts b/src/api/resources/accounting/resources/cashFlowStatements/index.ts deleted file mode 100644 index 5ec76921e..000000000 --- a/src/api/resources/accounting/resources/cashFlowStatements/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./client"; diff --git a/src/api/resources/accounting/resources/companyInfo/client/Client.ts b/src/api/resources/accounting/resources/companyInfo/client/Client.ts deleted file mode 100644 index 78648d8ed..000000000 --- a/src/api/resources/accounting/resources/companyInfo/client/Client.ts +++ /dev/null @@ -1,225 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../BaseClient"; -import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../../../BaseClient"; -import * as core from "../../../../../../core"; -import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../../../core/headers"; -import * as environments from "../../../../../../environments"; -import { handleNonStatusCodeError } from "../../../../../../errors/handleNonStatusCodeError"; -import * as errors from "../../../../../../errors/index"; -import * as serializers from "../../../../../../serialization/index"; -import type * as Merge from "../../../../../index"; - -export declare namespace CompanyInfoClient { - export type Options = BaseClientOptions; - - export interface RequestOptions extends BaseRequestOptions {} -} - -export class CompanyInfoClient { - protected readonly _options: NormalizedClientOptionsWithAuth; - - constructor(options: CompanyInfoClient.Options) { - this._options = normalizeClientOptionsWithAuth(options); - } - - /** - * Returns a list of `CompanyInfo` objects. - * - * @param {Merge.accounting.CompanyInfoListRequest} request - * @param {CompanyInfoClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.companyInfo.list({ - * createdAfter: new Date("2024-01-15T09:30:00.000Z"), - * createdBefore: new Date("2024-01-15T09:30:00.000Z"), - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * expand: "addresses", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - * modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - * pageSize: 1, - * remoteId: "remote_id" - * }) - */ - public list( - request: Merge.accounting.CompanyInfoListRequest = {}, - requestOptions?: CompanyInfoClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__list(request, requestOptions)); - } - - private async __list( - request: Merge.accounting.CompanyInfoListRequest = {}, - requestOptions?: CompanyInfoClient.RequestOptions, - ): Promise> { - const { - createdAfter, - createdBefore, - cursor, - expand, - includeDeletedData, - includeRemoteData, - includeShellData, - modifiedAfter, - modifiedBefore, - pageSize, - remoteId, - } = request; - const _queryParams: Record = { - created_after: createdAfter?.toISOString(), - created_before: createdBefore?.toISOString(), - cursor, - expand: - expand != null - ? serializers.accounting.CompanyInfoListRequestExpand.jsonOrThrow(expand, { - unrecognizedObjectKeys: "strip", - }) - : undefined, - include_deleted_data: includeDeletedData, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - modified_after: modifiedAfter?.toISOString(), - modified_before: modifiedBefore?.toISOString(), - page_size: pageSize, - remote_id: remoteId, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/company-info", - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaginatedCompanyInfoList.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError(_response.error, _response.rawResponse, "GET", "/accounting/v1/company-info"); - } - - /** - * Returns a `CompanyInfo` object with the given `id`. - * - * @param {string} id - * @param {Merge.accounting.CompanyInfoRetrieveRequest} request - * @param {CompanyInfoClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.companyInfo.retrieve("id", { - * expand: "addresses", - * includeRemoteData: true, - * includeShellData: true - * }) - */ - public retrieve( - id: string, - request: Merge.accounting.CompanyInfoRetrieveRequest = {}, - requestOptions?: CompanyInfoClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__retrieve(id, request, requestOptions)); - } - - private async __retrieve( - id: string, - request: Merge.accounting.CompanyInfoRetrieveRequest = {}, - requestOptions?: CompanyInfoClient.RequestOptions, - ): Promise> { - const { expand, includeRemoteData, includeShellData } = request; - const _queryParams: Record = { - expand: - expand != null - ? serializers.accounting.CompanyInfoRetrieveRequestExpand.jsonOrThrow(expand, { - unrecognizedObjectKeys: "strip", - }) - : undefined, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - `accounting/v1/company-info/${core.url.encodePathParam(id)}`, - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.CompanyInfo.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/company-info/{id}", - ); - } -} diff --git a/src/api/resources/accounting/resources/companyInfo/client/index.ts b/src/api/resources/accounting/resources/companyInfo/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/api/resources/accounting/resources/companyInfo/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/api/resources/accounting/resources/companyInfo/client/requests/CompanyInfoListRequest.ts b/src/api/resources/accounting/resources/companyInfo/client/requests/CompanyInfoListRequest.ts deleted file mode 100644 index 3f8a20ccc..000000000 --- a/src/api/resources/accounting/resources/companyInfo/client/requests/CompanyInfoListRequest.ts +++ /dev/null @@ -1,44 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * createdAfter: new Date("2024-01-15T09:30:00.000Z"), - * createdBefore: new Date("2024-01-15T09:30:00.000Z"), - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * expand: "addresses", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - * modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - * pageSize: 1, - * remoteId: "remote_id" - * } - */ -export interface CompanyInfoListRequest { - /** If provided, will only return objects created after this datetime. */ - createdAfter?: Date; - /** If provided, will only return objects created before this datetime. */ - createdBefore?: Date; - /** The pagination cursor value. */ - cursor?: string; - /** Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. */ - expand?: Merge.accounting.CompanyInfoListRequestExpand; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - includeDeletedData?: boolean; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** If provided, only objects synced by Merge after this date time will be returned. */ - modifiedAfter?: Date; - /** If provided, only objects synced by Merge before this date time will be returned. */ - modifiedBefore?: Date; - /** Number of results to return per page. */ - pageSize?: number; - /** The API provider's ID for the given object. */ - remoteId?: string; -} diff --git a/src/api/resources/accounting/resources/companyInfo/client/requests/CompanyInfoRetrieveRequest.ts b/src/api/resources/accounting/resources/companyInfo/client/requests/CompanyInfoRetrieveRequest.ts deleted file mode 100644 index 81ce63415..000000000 --- a/src/api/resources/accounting/resources/companyInfo/client/requests/CompanyInfoRetrieveRequest.ts +++ /dev/null @@ -1,20 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * expand: "addresses", - * includeRemoteData: true, - * includeShellData: true - * } - */ -export interface CompanyInfoRetrieveRequest { - /** Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. */ - expand?: Merge.accounting.CompanyInfoRetrieveRequestExpand; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; -} diff --git a/src/api/resources/accounting/resources/companyInfo/client/requests/index.ts b/src/api/resources/accounting/resources/companyInfo/client/requests/index.ts deleted file mode 100644 index 3cb682afc..000000000 --- a/src/api/resources/accounting/resources/companyInfo/client/requests/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export type { CompanyInfoListRequest } from "./CompanyInfoListRequest"; -export type { CompanyInfoRetrieveRequest } from "./CompanyInfoRetrieveRequest"; diff --git a/src/api/resources/accounting/resources/companyInfo/exports.ts b/src/api/resources/accounting/resources/companyInfo/exports.ts deleted file mode 100644 index f0cdd59dc..000000000 --- a/src/api/resources/accounting/resources/companyInfo/exports.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export { CompanyInfoClient } from "./client/Client"; -export * from "./client/index"; diff --git a/src/api/resources/accounting/resources/companyInfo/index.ts b/src/api/resources/accounting/resources/companyInfo/index.ts deleted file mode 100644 index d2ec2302c..000000000 --- a/src/api/resources/accounting/resources/companyInfo/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./client"; -export * from "./types"; diff --git a/src/api/resources/accounting/resources/companyInfo/types/CompanyInfoListRequestExpand.ts b/src/api/resources/accounting/resources/companyInfo/types/CompanyInfoListRequestExpand.ts deleted file mode 100644 index 795edaf16..000000000 --- a/src/api/resources/accounting/resources/companyInfo/types/CompanyInfoListRequestExpand.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export const CompanyInfoListRequestExpand = { - Addresses: "addresses", - AddressesPhoneNumbers: "addresses,phone_numbers", - PhoneNumbers: "phone_numbers", -} as const; -export type CompanyInfoListRequestExpand = - (typeof CompanyInfoListRequestExpand)[keyof typeof CompanyInfoListRequestExpand]; diff --git a/src/api/resources/accounting/resources/companyInfo/types/CompanyInfoRetrieveRequestExpand.ts b/src/api/resources/accounting/resources/companyInfo/types/CompanyInfoRetrieveRequestExpand.ts deleted file mode 100644 index e7a24826e..000000000 --- a/src/api/resources/accounting/resources/companyInfo/types/CompanyInfoRetrieveRequestExpand.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export const CompanyInfoRetrieveRequestExpand = { - Addresses: "addresses", - AddressesPhoneNumbers: "addresses,phone_numbers", - PhoneNumbers: "phone_numbers", -} as const; -export type CompanyInfoRetrieveRequestExpand = - (typeof CompanyInfoRetrieveRequestExpand)[keyof typeof CompanyInfoRetrieveRequestExpand]; diff --git a/src/api/resources/accounting/resources/companyInfo/types/index.ts b/src/api/resources/accounting/resources/companyInfo/types/index.ts deleted file mode 100644 index 8f0d30c91..000000000 --- a/src/api/resources/accounting/resources/companyInfo/types/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./CompanyInfoListRequestExpand"; -export * from "./CompanyInfoRetrieveRequestExpand"; diff --git a/src/api/resources/accounting/resources/contacts/client/Client.ts b/src/api/resources/accounting/resources/contacts/client/Client.ts deleted file mode 100644 index d1a4ab0c2..000000000 --- a/src/api/resources/accounting/resources/contacts/client/Client.ts +++ /dev/null @@ -1,666 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../BaseClient"; -import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../../../BaseClient"; -import * as core from "../../../../../../core"; -import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../../../core/headers"; -import * as environments from "../../../../../../environments"; -import { handleNonStatusCodeError } from "../../../../../../errors/handleNonStatusCodeError"; -import * as errors from "../../../../../../errors/index"; -import * as serializers from "../../../../../../serialization/index"; -import type * as Merge from "../../../../../index"; - -export declare namespace ContactsClient { - export type Options = BaseClientOptions; - - export interface RequestOptions extends BaseRequestOptions {} -} - -export class ContactsClient { - protected readonly _options: NormalizedClientOptionsWithAuth; - - constructor(options: ContactsClient.Options) { - this._options = normalizeClientOptionsWithAuth(options); - } - - /** - * Returns a list of `Contact` objects. - * - * @param {Merge.accounting.ContactsListRequest} request - * @param {ContactsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.contacts.list({ - * companyId: "company_id", - * createdAfter: new Date("2024-01-15T09:30:00.000Z"), - * createdBefore: new Date("2024-01-15T09:30:00.000Z"), - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * emailAddress: "email_address", - * expand: "addresses", - * includeDeletedData: true, - * includeRemoteData: true, - * includeRemoteFields: true, - * includeShellData: true, - * isCustomer: "is_customer", - * isSupplier: "is_supplier", - * modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - * modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - * name: "name", - * pageSize: 1, - * remoteFields: "status", - * remoteId: "remote_id", - * showEnumOrigins: "status", - * status: "" - * }) - */ - public list( - request: Merge.accounting.ContactsListRequest = {}, - requestOptions?: ContactsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__list(request, requestOptions)); - } - - private async __list( - request: Merge.accounting.ContactsListRequest = {}, - requestOptions?: ContactsClient.RequestOptions, - ): Promise> { - const { - companyId, - createdAfter, - createdBefore, - cursor, - emailAddress, - expand, - includeDeletedData, - includeRemoteData, - includeRemoteFields, - includeShellData, - isCustomer, - isSupplier, - modifiedAfter, - modifiedBefore, - name, - pageSize, - remoteFields, - remoteId, - showEnumOrigins, - status, - } = request; - const _queryParams: Record = { - company_id: companyId, - created_after: createdAfter?.toISOString(), - created_before: createdBefore?.toISOString(), - cursor, - email_address: emailAddress, - expand: - expand != null - ? serializers.accounting.ContactsListRequestExpand.jsonOrThrow(expand, { - unrecognizedObjectKeys: "strip", - }) - : undefined, - include_deleted_data: includeDeletedData, - include_remote_data: includeRemoteData, - include_remote_fields: includeRemoteFields, - include_shell_data: includeShellData, - is_customer: isCustomer, - is_supplier: isSupplier, - modified_after: modifiedAfter?.toISOString(), - modified_before: modifiedBefore?.toISOString(), - name, - page_size: pageSize, - remote_fields: remoteFields != null ? remoteFields : undefined, - remote_id: remoteId, - show_enum_origins: showEnumOrigins != null ? showEnumOrigins : undefined, - status: - status != null - ? serializers.accounting.ContactsListRequestStatus.jsonOrThrow(status, { - unrecognizedObjectKeys: "strip", - }) - : undefined, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/contacts", - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaginatedContactList.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError(_response.error, _response.rawResponse, "GET", "/accounting/v1/contacts"); - } - - /** - * Creates a `Contact` object with the given values. - * - * @param {Merge.accounting.ContactEndpointRequest} request - * @param {ContactsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.contacts.create({ - * isDebugMode: true, - * runAsync: true, - * model: {} - * }) - */ - public create( - request: Merge.accounting.ContactEndpointRequest, - requestOptions?: ContactsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__create(request, requestOptions)); - } - - private async __create( - request: Merge.accounting.ContactEndpointRequest, - requestOptions?: ContactsClient.RequestOptions, - ): Promise> { - const { isDebugMode, runAsync, ..._body } = request; - const _queryParams: Record = { - is_debug_mode: isDebugMode, - run_async: runAsync, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/contacts", - ), - method: "POST", - headers: _headers, - contentType: "application/json", - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - requestType: "json", - body: serializers.accounting.ContactEndpointRequest.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }), - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.ContactResponse.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError(_response.error, _response.rawResponse, "POST", "/accounting/v1/contacts"); - } - - /** - * Returns a `Contact` object with the given `id`. - * - * @param {string} id - * @param {Merge.accounting.ContactsRetrieveRequest} request - * @param {ContactsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.contacts.retrieve("id", { - * expand: "addresses", - * includeRemoteData: true, - * includeRemoteFields: true, - * includeShellData: true, - * remoteFields: "status", - * showEnumOrigins: "status" - * }) - */ - public retrieve( - id: string, - request: Merge.accounting.ContactsRetrieveRequest = {}, - requestOptions?: ContactsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__retrieve(id, request, requestOptions)); - } - - private async __retrieve( - id: string, - request: Merge.accounting.ContactsRetrieveRequest = {}, - requestOptions?: ContactsClient.RequestOptions, - ): Promise> { - const { expand, includeRemoteData, includeRemoteFields, includeShellData, remoteFields, showEnumOrigins } = - request; - const _queryParams: Record = { - expand: - expand != null - ? serializers.accounting.ContactsRetrieveRequestExpand.jsonOrThrow(expand, { - unrecognizedObjectKeys: "strip", - }) - : undefined, - include_remote_data: includeRemoteData, - include_remote_fields: includeRemoteFields, - include_shell_data: includeShellData, - remote_fields: remoteFields != null ? remoteFields : undefined, - show_enum_origins: showEnumOrigins != null ? showEnumOrigins : undefined, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - `accounting/v1/contacts/${core.url.encodePathParam(id)}`, - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.Contact.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError(_response.error, _response.rawResponse, "GET", "/accounting/v1/contacts/{id}"); - } - - /** - * Updates a `Contact` object with the given `id`. - * - * @param {string} id - * @param {Merge.accounting.PatchedContactEndpointRequest} request - * @param {ContactsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.contacts.partialUpdate("id", { - * isDebugMode: true, - * runAsync: true, - * model: {} - * }) - */ - public partialUpdate( - id: string, - request: Merge.accounting.PatchedContactEndpointRequest, - requestOptions?: ContactsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__partialUpdate(id, request, requestOptions)); - } - - private async __partialUpdate( - id: string, - request: Merge.accounting.PatchedContactEndpointRequest, - requestOptions?: ContactsClient.RequestOptions, - ): Promise> { - const { isDebugMode, runAsync, ..._body } = request; - const _queryParams: Record = { - is_debug_mode: isDebugMode, - run_async: runAsync, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - `accounting/v1/contacts/${core.url.encodePathParam(id)}`, - ), - method: "PATCH", - headers: _headers, - contentType: "application/json", - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - requestType: "json", - body: serializers.accounting.PatchedContactEndpointRequest.jsonOrThrow(_body, { - unrecognizedObjectKeys: "strip", - }), - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.ContactResponse.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "PATCH", - "/accounting/v1/contacts/{id}", - ); - } - - /** - * Returns metadata for `Contact` PATCHs. - * - * @param {string} id - * @param {ContactsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.contacts.metaPatchRetrieve("id") - */ - public metaPatchRetrieve( - id: string, - requestOptions?: ContactsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__metaPatchRetrieve(id, requestOptions)); - } - - private async __metaPatchRetrieve( - id: string, - requestOptions?: ContactsClient.RequestOptions, - ): Promise> { - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - `accounting/v1/contacts/meta/patch/${core.url.encodePathParam(id)}`, - ), - method: "GET", - headers: _headers, - queryParameters: requestOptions?.queryParams, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.MetaResponse.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/contacts/meta/patch/{id}", - ); - } - - /** - * Returns metadata for `Contact` POSTs. - * - * @param {ContactsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.contacts.metaPostRetrieve() - */ - public metaPostRetrieve( - requestOptions?: ContactsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__metaPostRetrieve(requestOptions)); - } - - private async __metaPostRetrieve( - requestOptions?: ContactsClient.RequestOptions, - ): Promise> { - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/contacts/meta/post", - ), - method: "GET", - headers: _headers, - queryParameters: requestOptions?.queryParams, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.MetaResponse.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/contacts/meta/post", - ); - } - - /** - * Returns a list of `RemoteFieldClass` objects. - * - * @param {Merge.accounting.ContactsRemoteFieldClassesListRequest} request - * @param {ContactsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.contacts.remoteFieldClassesList({ - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * isCommonModelField: true, - * isCustom: true, - * pageSize: 1 - * }) - */ - public remoteFieldClassesList( - request: Merge.accounting.ContactsRemoteFieldClassesListRequest = {}, - requestOptions?: ContactsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__remoteFieldClassesList(request, requestOptions)); - } - - private async __remoteFieldClassesList( - request: Merge.accounting.ContactsRemoteFieldClassesListRequest = {}, - requestOptions?: ContactsClient.RequestOptions, - ): Promise> { - const { - cursor, - includeDeletedData, - includeRemoteData, - includeShellData, - isCommonModelField, - isCustom, - pageSize, - } = request; - const _queryParams: Record = { - cursor, - include_deleted_data: includeDeletedData, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - is_common_model_field: isCommonModelField, - is_custom: isCustom, - page_size: pageSize, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/contacts/remote-field-classes", - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaginatedRemoteFieldClassList.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/contacts/remote-field-classes", - ); - } -} diff --git a/src/api/resources/accounting/resources/contacts/client/index.ts b/src/api/resources/accounting/resources/contacts/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/api/resources/accounting/resources/contacts/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/api/resources/accounting/resources/contacts/client/requests/ContactEndpointRequest.ts b/src/api/resources/accounting/resources/contacts/client/requests/ContactEndpointRequest.ts deleted file mode 100644 index e95231398..000000000 --- a/src/api/resources/accounting/resources/contacts/client/requests/ContactEndpointRequest.ts +++ /dev/null @@ -1,19 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * isDebugMode: true, - * runAsync: true, - * model: {} - * } - */ -export interface ContactEndpointRequest { - /** Whether to include debug fields (such as log file links) in the response. */ - isDebugMode?: boolean; - /** Whether or not third-party updates should be run asynchronously. */ - runAsync?: boolean; - model: Merge.accounting.ContactRequest; -} diff --git a/src/api/resources/accounting/resources/contacts/client/requests/ContactsListRequest.ts b/src/api/resources/accounting/resources/contacts/client/requests/ContactsListRequest.ts deleted file mode 100644 index 585914e5d..000000000 --- a/src/api/resources/accounting/resources/contacts/client/requests/ContactsListRequest.ts +++ /dev/null @@ -1,71 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * companyId: "company_id", - * createdAfter: new Date("2024-01-15T09:30:00.000Z"), - * createdBefore: new Date("2024-01-15T09:30:00.000Z"), - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * emailAddress: "email_address", - * expand: "addresses", - * includeDeletedData: true, - * includeRemoteData: true, - * includeRemoteFields: true, - * includeShellData: true, - * isCustomer: "is_customer", - * isSupplier: "is_supplier", - * modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - * modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - * name: "name", - * pageSize: 1, - * remoteFields: "status", - * remoteId: "remote_id", - * showEnumOrigins: "status", - * status: "" - * } - */ -export interface ContactsListRequest { - /** If provided, will only return contacts for this company. */ - companyId?: string; - /** If provided, will only return objects created after this datetime. */ - createdAfter?: Date; - /** If provided, will only return objects created before this datetime. */ - createdBefore?: Date; - /** The pagination cursor value. */ - cursor?: string; - /** If provided, will only return Contacts that match this email. */ - emailAddress?: string; - /** Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. */ - expand?: Merge.accounting.ContactsListRequestExpand; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - includeDeletedData?: boolean; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include all remote fields, including fields that Merge did not map to common models, in a normalized format. */ - includeRemoteFields?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** If provided, will only return Contacts that are denoted as customers. */ - isCustomer?: string; - /** If provided, will only return Contacts that are denoted as suppliers. */ - isSupplier?: string; - /** If provided, only objects synced by Merge after this date time will be returned. */ - modifiedAfter?: Date; - /** If provided, only objects synced by Merge before this date time will be returned. */ - modifiedBefore?: Date; - /** If provided, will only return Contacts that match this name. */ - name?: string; - /** Number of results to return per page. */ - pageSize?: number; - /** Deprecated. Use show_enum_origins. */ - remoteFields?: "status"; - /** The API provider's ID for the given object. */ - remoteId?: string; - /** A comma separated list of enum field names for which you'd like the original values to be returned, instead of Merge's normalized enum values. [Learn more](https://help.merge.dev/en/articles/8950958-show_enum_origins-query-parameter) */ - showEnumOrigins?: "status"; - /** If provided, will only return Contacts that match this status. */ - status?: Merge.accounting.ContactsListRequestStatus; -} diff --git a/src/api/resources/accounting/resources/contacts/client/requests/ContactsRemoteFieldClassesListRequest.ts b/src/api/resources/accounting/resources/contacts/client/requests/ContactsRemoteFieldClassesListRequest.ts deleted file mode 100644 index 75d7eb29a..000000000 --- a/src/api/resources/accounting/resources/contacts/client/requests/ContactsRemoteFieldClassesListRequest.ts +++ /dev/null @@ -1,30 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * @example - * { - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * isCommonModelField: true, - * isCustom: true, - * pageSize: 1 - * } - */ -export interface ContactsRemoteFieldClassesListRequest { - /** The pagination cursor value. */ - cursor?: string; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - includeDeletedData?: boolean; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** If provided, will only return remote field classes with this is_common_model_field value */ - isCommonModelField?: boolean; - /** If provided, will only return remote fields classes with this is_custom value */ - isCustom?: boolean; - /** Number of results to return per page. */ - pageSize?: number; -} diff --git a/src/api/resources/accounting/resources/contacts/client/requests/ContactsRetrieveRequest.ts b/src/api/resources/accounting/resources/contacts/client/requests/ContactsRetrieveRequest.ts deleted file mode 100644 index 3a48f7835..000000000 --- a/src/api/resources/accounting/resources/contacts/client/requests/ContactsRetrieveRequest.ts +++ /dev/null @@ -1,29 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * expand: "addresses", - * includeRemoteData: true, - * includeRemoteFields: true, - * includeShellData: true, - * remoteFields: "status", - * showEnumOrigins: "status" - * } - */ -export interface ContactsRetrieveRequest { - /** Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. */ - expand?: Merge.accounting.ContactsRetrieveRequestExpand; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include all remote fields, including fields that Merge did not map to common models, in a normalized format. */ - includeRemoteFields?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** Deprecated. Use show_enum_origins. */ - remoteFields?: "status"; - /** A comma separated list of enum field names for which you'd like the original values to be returned, instead of Merge's normalized enum values. [Learn more](https://help.merge.dev/en/articles/8950958-show_enum_origins-query-parameter) */ - showEnumOrigins?: "status"; -} diff --git a/src/api/resources/accounting/resources/contacts/client/requests/PatchedContactEndpointRequest.ts b/src/api/resources/accounting/resources/contacts/client/requests/PatchedContactEndpointRequest.ts deleted file mode 100644 index 4e5b8f168..000000000 --- a/src/api/resources/accounting/resources/contacts/client/requests/PatchedContactEndpointRequest.ts +++ /dev/null @@ -1,19 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * isDebugMode: true, - * runAsync: true, - * model: {} - * } - */ -export interface PatchedContactEndpointRequest { - /** Whether to include debug fields (such as log file links) in the response. */ - isDebugMode?: boolean; - /** Whether or not third-party updates should be run asynchronously. */ - runAsync?: boolean; - model: Merge.accounting.PatchedContactRequest; -} diff --git a/src/api/resources/accounting/resources/contacts/client/requests/index.ts b/src/api/resources/accounting/resources/contacts/client/requests/index.ts deleted file mode 100644 index cd7bbf5ba..000000000 --- a/src/api/resources/accounting/resources/contacts/client/requests/index.ts +++ /dev/null @@ -1,5 +0,0 @@ -export type { ContactEndpointRequest } from "./ContactEndpointRequest"; -export type { ContactsListRequest } from "./ContactsListRequest"; -export type { ContactsRemoteFieldClassesListRequest } from "./ContactsRemoteFieldClassesListRequest"; -export type { ContactsRetrieveRequest } from "./ContactsRetrieveRequest"; -export type { PatchedContactEndpointRequest } from "./PatchedContactEndpointRequest"; diff --git a/src/api/resources/accounting/resources/contacts/exports.ts b/src/api/resources/accounting/resources/contacts/exports.ts deleted file mode 100644 index d5052718a..000000000 --- a/src/api/resources/accounting/resources/contacts/exports.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export { ContactsClient } from "./client/Client"; -export * from "./client/index"; diff --git a/src/api/resources/accounting/resources/contacts/index.ts b/src/api/resources/accounting/resources/contacts/index.ts deleted file mode 100644 index d2ec2302c..000000000 --- a/src/api/resources/accounting/resources/contacts/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./client"; -export * from "./types"; diff --git a/src/api/resources/accounting/resources/contacts/types/ContactsListRequestExpand.ts b/src/api/resources/accounting/resources/contacts/types/ContactsListRequestExpand.ts deleted file mode 100644 index 716e620c1..000000000 --- a/src/api/resources/accounting/resources/contacts/types/ContactsListRequestExpand.ts +++ /dev/null @@ -1,12 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export const ContactsListRequestExpand = { - Addresses: "addresses", - AddressesCompany: "addresses,company", - AddressesPhoneNumbers: "addresses,phone_numbers", - AddressesPhoneNumbersCompany: "addresses,phone_numbers,company", - Company: "company", - PhoneNumbers: "phone_numbers", - PhoneNumbersCompany: "phone_numbers,company", -} as const; -export type ContactsListRequestExpand = (typeof ContactsListRequestExpand)[keyof typeof ContactsListRequestExpand]; diff --git a/src/api/resources/accounting/resources/contacts/types/ContactsListRequestStatus.ts b/src/api/resources/accounting/resources/contacts/types/ContactsListRequestStatus.ts deleted file mode 100644 index 6c0cca3c0..000000000 --- a/src/api/resources/accounting/resources/contacts/types/ContactsListRequestStatus.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export const ContactsListRequestStatus = { - Empty: "", - Active: "ACTIVE", - Archived: "ARCHIVED", -} as const; -export type ContactsListRequestStatus = (typeof ContactsListRequestStatus)[keyof typeof ContactsListRequestStatus]; diff --git a/src/api/resources/accounting/resources/contacts/types/ContactsRetrieveRequestExpand.ts b/src/api/resources/accounting/resources/contacts/types/ContactsRetrieveRequestExpand.ts deleted file mode 100644 index 7ac79c924..000000000 --- a/src/api/resources/accounting/resources/contacts/types/ContactsRetrieveRequestExpand.ts +++ /dev/null @@ -1,13 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export const ContactsRetrieveRequestExpand = { - Addresses: "addresses", - AddressesCompany: "addresses,company", - AddressesPhoneNumbers: "addresses,phone_numbers", - AddressesPhoneNumbersCompany: "addresses,phone_numbers,company", - Company: "company", - PhoneNumbers: "phone_numbers", - PhoneNumbersCompany: "phone_numbers,company", -} as const; -export type ContactsRetrieveRequestExpand = - (typeof ContactsRetrieveRequestExpand)[keyof typeof ContactsRetrieveRequestExpand]; diff --git a/src/api/resources/accounting/resources/contacts/types/index.ts b/src/api/resources/accounting/resources/contacts/types/index.ts deleted file mode 100644 index 97a5d68db..000000000 --- a/src/api/resources/accounting/resources/contacts/types/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -export * from "./ContactsListRequestExpand"; -export * from "./ContactsListRequestStatus"; -export * from "./ContactsRetrieveRequestExpand"; diff --git a/src/api/resources/accounting/resources/creditNotes/client/Client.ts b/src/api/resources/accounting/resources/creditNotes/client/Client.ts deleted file mode 100644 index 520f8003d..000000000 --- a/src/api/resources/accounting/resources/creditNotes/client/Client.ts +++ /dev/null @@ -1,414 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../BaseClient"; -import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../../../BaseClient"; -import * as core from "../../../../../../core"; -import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../../../core/headers"; -import * as environments from "../../../../../../environments"; -import { handleNonStatusCodeError } from "../../../../../../errors/handleNonStatusCodeError"; -import * as errors from "../../../../../../errors/index"; -import * as serializers from "../../../../../../serialization/index"; -import type * as Merge from "../../../../../index"; - -export declare namespace CreditNotesClient { - export type Options = BaseClientOptions; - - export interface RequestOptions extends BaseRequestOptions {} -} - -export class CreditNotesClient { - protected readonly _options: NormalizedClientOptionsWithAuth; - - constructor(options: CreditNotesClient.Options) { - this._options = normalizeClientOptionsWithAuth(options); - } - - /** - * Returns a list of `CreditNote` objects. - * - * @param {Merge.accounting.CreditNotesListRequest} request - * @param {CreditNotesClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.creditNotes.list({ - * companyId: "company_id", - * createdAfter: new Date("2024-01-15T09:30:00.000Z"), - * createdBefore: new Date("2024-01-15T09:30:00.000Z"), - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * expand: "accounting_period", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - * modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - * pageSize: 1, - * remoteFields: "status", - * remoteId: "remote_id", - * showEnumOrigins: "status", - * transactionDateAfter: new Date("2024-01-15T09:30:00.000Z"), - * transactionDateBefore: new Date("2024-01-15T09:30:00.000Z") - * }) - */ - public list( - request: Merge.accounting.CreditNotesListRequest = {}, - requestOptions?: CreditNotesClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__list(request, requestOptions)); - } - - private async __list( - request: Merge.accounting.CreditNotesListRequest = {}, - requestOptions?: CreditNotesClient.RequestOptions, - ): Promise> { - const { - companyId, - createdAfter, - createdBefore, - cursor, - expand, - includeDeletedData, - includeRemoteData, - includeShellData, - modifiedAfter, - modifiedBefore, - pageSize, - remoteFields, - remoteId, - showEnumOrigins, - transactionDateAfter, - transactionDateBefore, - } = request; - const _queryParams: Record = { - company_id: companyId, - created_after: createdAfter?.toISOString(), - created_before: createdBefore?.toISOString(), - cursor, - expand: - expand != null - ? serializers.accounting.CreditNotesListRequestExpand.jsonOrThrow(expand, { - unrecognizedObjectKeys: "strip", - }) - : undefined, - include_deleted_data: includeDeletedData, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - modified_after: modifiedAfter?.toISOString(), - modified_before: modifiedBefore?.toISOString(), - page_size: pageSize, - remote_fields: - remoteFields != null - ? serializers.accounting.CreditNotesListRequestRemoteFields.jsonOrThrow(remoteFields, { - unrecognizedObjectKeys: "strip", - }) - : undefined, - remote_id: remoteId, - show_enum_origins: - showEnumOrigins != null - ? serializers.accounting.CreditNotesListRequestShowEnumOrigins.jsonOrThrow(showEnumOrigins, { - unrecognizedObjectKeys: "strip", - }) - : undefined, - transaction_date_after: transactionDateAfter?.toISOString(), - transaction_date_before: transactionDateBefore?.toISOString(), - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/credit-notes", - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaginatedCreditNoteList.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError(_response.error, _response.rawResponse, "GET", "/accounting/v1/credit-notes"); - } - - /** - * Creates a `CreditNote` object with the given values. - * - * @param {Merge.accounting.CreditNoteEndpointRequest} request - * @param {CreditNotesClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.creditNotes.create({ - * isDebugMode: true, - * runAsync: true, - * model: {} - * }) - */ - public create( - request: Merge.accounting.CreditNoteEndpointRequest, - requestOptions?: CreditNotesClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__create(request, requestOptions)); - } - - private async __create( - request: Merge.accounting.CreditNoteEndpointRequest, - requestOptions?: CreditNotesClient.RequestOptions, - ): Promise> { - const { isDebugMode, runAsync, ..._body } = request; - const _queryParams: Record = { - is_debug_mode: isDebugMode, - run_async: runAsync, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/credit-notes", - ), - method: "POST", - headers: _headers, - contentType: "application/json", - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - requestType: "json", - body: serializers.accounting.CreditNoteEndpointRequest.jsonOrThrow(_body, { - unrecognizedObjectKeys: "strip", - }), - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.CreditNoteResponse.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError(_response.error, _response.rawResponse, "POST", "/accounting/v1/credit-notes"); - } - - /** - * Returns a `CreditNote` object with the given `id`. - * - * @param {string} id - * @param {Merge.accounting.CreditNotesRetrieveRequest} request - * @param {CreditNotesClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.creditNotes.retrieve("id", { - * expand: "accounting_period", - * includeRemoteData: true, - * includeShellData: true, - * remoteFields: "status", - * showEnumOrigins: "status" - * }) - */ - public retrieve( - id: string, - request: Merge.accounting.CreditNotesRetrieveRequest = {}, - requestOptions?: CreditNotesClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__retrieve(id, request, requestOptions)); - } - - private async __retrieve( - id: string, - request: Merge.accounting.CreditNotesRetrieveRequest = {}, - requestOptions?: CreditNotesClient.RequestOptions, - ): Promise> { - const { expand, includeRemoteData, includeShellData, remoteFields, showEnumOrigins } = request; - const _queryParams: Record = { - expand: - expand != null - ? serializers.accounting.CreditNotesRetrieveRequestExpand.jsonOrThrow(expand, { - unrecognizedObjectKeys: "strip", - }) - : undefined, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - remote_fields: - remoteFields != null - ? serializers.accounting.CreditNotesRetrieveRequestRemoteFields.jsonOrThrow(remoteFields, { - unrecognizedObjectKeys: "strip", - }) - : undefined, - show_enum_origins: - showEnumOrigins != null - ? serializers.accounting.CreditNotesRetrieveRequestShowEnumOrigins.jsonOrThrow(showEnumOrigins, { - unrecognizedObjectKeys: "strip", - }) - : undefined, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - `accounting/v1/credit-notes/${core.url.encodePathParam(id)}`, - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.CreditNote.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/credit-notes/{id}", - ); - } - - /** - * Returns metadata for `CreditNote` POSTs. - * - * @param {CreditNotesClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.creditNotes.metaPostRetrieve() - */ - public metaPostRetrieve( - requestOptions?: CreditNotesClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__metaPostRetrieve(requestOptions)); - } - - private async __metaPostRetrieve( - requestOptions?: CreditNotesClient.RequestOptions, - ): Promise> { - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/credit-notes/meta/post", - ), - method: "GET", - headers: _headers, - queryParameters: requestOptions?.queryParams, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.MetaResponse.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/credit-notes/meta/post", - ); - } -} diff --git a/src/api/resources/accounting/resources/creditNotes/client/index.ts b/src/api/resources/accounting/resources/creditNotes/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/api/resources/accounting/resources/creditNotes/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/api/resources/accounting/resources/creditNotes/client/requests/CreditNoteEndpointRequest.ts b/src/api/resources/accounting/resources/creditNotes/client/requests/CreditNoteEndpointRequest.ts deleted file mode 100644 index 4772c38e1..000000000 --- a/src/api/resources/accounting/resources/creditNotes/client/requests/CreditNoteEndpointRequest.ts +++ /dev/null @@ -1,19 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * isDebugMode: true, - * runAsync: true, - * model: {} - * } - */ -export interface CreditNoteEndpointRequest { - /** Whether to include debug fields (such as log file links) in the response. */ - isDebugMode?: boolean; - /** Whether or not third-party updates should be run asynchronously. */ - runAsync?: boolean; - model: Merge.accounting.CreditNoteRequest; -} diff --git a/src/api/resources/accounting/resources/creditNotes/client/requests/CreditNotesListRequest.ts b/src/api/resources/accounting/resources/creditNotes/client/requests/CreditNotesListRequest.ts deleted file mode 100644 index 70e082fc5..000000000 --- a/src/api/resources/accounting/resources/creditNotes/client/requests/CreditNotesListRequest.ts +++ /dev/null @@ -1,59 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * companyId: "company_id", - * createdAfter: new Date("2024-01-15T09:30:00.000Z"), - * createdBefore: new Date("2024-01-15T09:30:00.000Z"), - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * expand: "accounting_period", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - * modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - * pageSize: 1, - * remoteFields: "status", - * remoteId: "remote_id", - * showEnumOrigins: "status", - * transactionDateAfter: new Date("2024-01-15T09:30:00.000Z"), - * transactionDateBefore: new Date("2024-01-15T09:30:00.000Z") - * } - */ -export interface CreditNotesListRequest { - /** If provided, will only return credit notes for this company. */ - companyId?: string; - /** If provided, will only return objects created after this datetime. */ - createdAfter?: Date; - /** If provided, will only return objects created before this datetime. */ - createdBefore?: Date; - /** The pagination cursor value. */ - cursor?: string; - /** Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. */ - expand?: Merge.accounting.CreditNotesListRequestExpand; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - includeDeletedData?: boolean; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** If provided, only objects synced by Merge after this date time will be returned. */ - modifiedAfter?: Date; - /** If provided, only objects synced by Merge before this date time will be returned. */ - modifiedBefore?: Date; - /** Number of results to return per page. */ - pageSize?: number; - /** Deprecated. Use show_enum_origins. */ - remoteFields?: Merge.accounting.CreditNotesListRequestRemoteFields; - /** The API provider's ID for the given object. */ - remoteId?: string; - /** A comma separated list of enum field names for which you'd like the original values to be returned, instead of Merge's normalized enum values. [Learn more](https://help.merge.dev/en/articles/8950958-show_enum_origins-query-parameter) */ - showEnumOrigins?: Merge.accounting.CreditNotesListRequestShowEnumOrigins; - /** If provided, will only return objects created after this datetime. */ - transactionDateAfter?: Date; - /** If provided, will only return objects created before this datetime. */ - transactionDateBefore?: Date; -} diff --git a/src/api/resources/accounting/resources/creditNotes/client/requests/CreditNotesRetrieveRequest.ts b/src/api/resources/accounting/resources/creditNotes/client/requests/CreditNotesRetrieveRequest.ts deleted file mode 100644 index 6fe2a7acd..000000000 --- a/src/api/resources/accounting/resources/creditNotes/client/requests/CreditNotesRetrieveRequest.ts +++ /dev/null @@ -1,26 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * expand: "accounting_period", - * includeRemoteData: true, - * includeShellData: true, - * remoteFields: "status", - * showEnumOrigins: "status" - * } - */ -export interface CreditNotesRetrieveRequest { - /** Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. */ - expand?: Merge.accounting.CreditNotesRetrieveRequestExpand; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** Deprecated. Use show_enum_origins. */ - remoteFields?: Merge.accounting.CreditNotesRetrieveRequestRemoteFields; - /** A comma separated list of enum field names for which you'd like the original values to be returned, instead of Merge's normalized enum values. [Learn more](https://help.merge.dev/en/articles/8950958-show_enum_origins-query-parameter) */ - showEnumOrigins?: Merge.accounting.CreditNotesRetrieveRequestShowEnumOrigins; -} diff --git a/src/api/resources/accounting/resources/creditNotes/client/requests/index.ts b/src/api/resources/accounting/resources/creditNotes/client/requests/index.ts deleted file mode 100644 index 1952c5fff..000000000 --- a/src/api/resources/accounting/resources/creditNotes/client/requests/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -export type { CreditNoteEndpointRequest } from "./CreditNoteEndpointRequest"; -export type { CreditNotesListRequest } from "./CreditNotesListRequest"; -export type { CreditNotesRetrieveRequest } from "./CreditNotesRetrieveRequest"; diff --git a/src/api/resources/accounting/resources/creditNotes/exports.ts b/src/api/resources/accounting/resources/creditNotes/exports.ts deleted file mode 100644 index c2365900d..000000000 --- a/src/api/resources/accounting/resources/creditNotes/exports.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export { CreditNotesClient } from "./client/Client"; -export * from "./client/index"; diff --git a/src/api/resources/accounting/resources/creditNotes/index.ts b/src/api/resources/accounting/resources/creditNotes/index.ts deleted file mode 100644 index d2ec2302c..000000000 --- a/src/api/resources/accounting/resources/creditNotes/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./client"; -export * from "./types"; diff --git a/src/api/resources/accounting/resources/creditNotes/types/CreditNotesListRequestExpand.ts b/src/api/resources/accounting/resources/creditNotes/types/CreditNotesListRequestExpand.ts deleted file mode 100644 index 17309eb55..000000000 --- a/src/api/resources/accounting/resources/creditNotes/types/CreditNotesListRequestExpand.ts +++ /dev/null @@ -1,163 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export const CreditNotesListRequestExpand = { - AccountingPeriod: "accounting_period", - AppliedPayments: "applied_payments", - AppliedPaymentsAccountingPeriod: "applied_payments,accounting_period", - AppliedPaymentsCompany: "applied_payments,company", - AppliedPaymentsCompanyAccountingPeriod: "applied_payments,company,accounting_period", - AppliedPaymentsContact: "applied_payments,contact", - AppliedPaymentsContactAccountingPeriod: "applied_payments,contact,accounting_period", - AppliedPaymentsContactCompany: "applied_payments,contact,company", - AppliedPaymentsContactCompanyAccountingPeriod: "applied_payments,contact,company,accounting_period", - AppliedPaymentsLineItems: "applied_payments,line_items", - AppliedPaymentsLineItemsAccountingPeriod: "applied_payments,line_items,accounting_period", - AppliedPaymentsLineItemsCompany: "applied_payments,line_items,company", - AppliedPaymentsLineItemsCompanyAccountingPeriod: "applied_payments,line_items,company,accounting_period", - AppliedPaymentsLineItemsContact: "applied_payments,line_items,contact", - AppliedPaymentsLineItemsContactAccountingPeriod: "applied_payments,line_items,contact,accounting_period", - AppliedPaymentsLineItemsContactCompany: "applied_payments,line_items,contact,company", - AppliedPaymentsLineItemsContactCompanyAccountingPeriod: - "applied_payments,line_items,contact,company,accounting_period", - AppliedPaymentsLineItemsTrackingCategories: "applied_payments,line_items,tracking_categories", - AppliedPaymentsLineItemsTrackingCategoriesAccountingPeriod: - "applied_payments,line_items,tracking_categories,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesCompany: "applied_payments,line_items,tracking_categories,company", - AppliedPaymentsLineItemsTrackingCategoriesCompanyAccountingPeriod: - "applied_payments,line_items,tracking_categories,company,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesContact: "applied_payments,line_items,tracking_categories,contact", - AppliedPaymentsLineItemsTrackingCategoriesContactAccountingPeriod: - "applied_payments,line_items,tracking_categories,contact,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesContactCompany: - "applied_payments,line_items,tracking_categories,contact,company", - AppliedPaymentsLineItemsTrackingCategoriesContactCompanyAccountingPeriod: - "applied_payments,line_items,tracking_categories,contact,company,accounting_period", - AppliedPaymentsTrackingCategories: "applied_payments,tracking_categories", - AppliedPaymentsTrackingCategoriesAccountingPeriod: "applied_payments,tracking_categories,accounting_period", - AppliedPaymentsTrackingCategoriesCompany: "applied_payments,tracking_categories,company", - AppliedPaymentsTrackingCategoriesCompanyAccountingPeriod: - "applied_payments,tracking_categories,company,accounting_period", - AppliedPaymentsTrackingCategoriesContact: "applied_payments,tracking_categories,contact", - AppliedPaymentsTrackingCategoriesContactAccountingPeriod: - "applied_payments,tracking_categories,contact,accounting_period", - AppliedPaymentsTrackingCategoriesContactCompany: "applied_payments,tracking_categories,contact,company", - AppliedPaymentsTrackingCategoriesContactCompanyAccountingPeriod: - "applied_payments,tracking_categories,contact,company,accounting_period", - Company: "company", - CompanyAccountingPeriod: "company,accounting_period", - Contact: "contact", - ContactAccountingPeriod: "contact,accounting_period", - ContactCompany: "contact,company", - ContactCompanyAccountingPeriod: "contact,company,accounting_period", - LineItems: "line_items", - LineItemsAccountingPeriod: "line_items,accounting_period", - LineItemsCompany: "line_items,company", - LineItemsCompanyAccountingPeriod: "line_items,company,accounting_period", - LineItemsContact: "line_items,contact", - LineItemsContactAccountingPeriod: "line_items,contact,accounting_period", - LineItemsContactCompany: "line_items,contact,company", - LineItemsContactCompanyAccountingPeriod: "line_items,contact,company,accounting_period", - LineItemsTrackingCategories: "line_items,tracking_categories", - LineItemsTrackingCategoriesAccountingPeriod: "line_items,tracking_categories,accounting_period", - LineItemsTrackingCategoriesCompany: "line_items,tracking_categories,company", - LineItemsTrackingCategoriesCompanyAccountingPeriod: "line_items,tracking_categories,company,accounting_period", - LineItemsTrackingCategoriesContact: "line_items,tracking_categories,contact", - LineItemsTrackingCategoriesContactAccountingPeriod: "line_items,tracking_categories,contact,accounting_period", - LineItemsTrackingCategoriesContactCompany: "line_items,tracking_categories,contact,company", - LineItemsTrackingCategoriesContactCompanyAccountingPeriod: - "line_items,tracking_categories,contact,company,accounting_period", - Payments: "payments", - PaymentsAccountingPeriod: "payments,accounting_period", - PaymentsAppliedPayments: "payments,applied_payments", - PaymentsAppliedPaymentsAccountingPeriod: "payments,applied_payments,accounting_period", - PaymentsAppliedPaymentsCompany: "payments,applied_payments,company", - PaymentsAppliedPaymentsCompanyAccountingPeriod: "payments,applied_payments,company,accounting_period", - PaymentsAppliedPaymentsContact: "payments,applied_payments,contact", - PaymentsAppliedPaymentsContactAccountingPeriod: "payments,applied_payments,contact,accounting_period", - PaymentsAppliedPaymentsContactCompany: "payments,applied_payments,contact,company", - PaymentsAppliedPaymentsContactCompanyAccountingPeriod: - "payments,applied_payments,contact,company,accounting_period", - PaymentsAppliedPaymentsLineItems: "payments,applied_payments,line_items", - PaymentsAppliedPaymentsLineItemsAccountingPeriod: "payments,applied_payments,line_items,accounting_period", - PaymentsAppliedPaymentsLineItemsCompany: "payments,applied_payments,line_items,company", - PaymentsAppliedPaymentsLineItemsCompanyAccountingPeriod: - "payments,applied_payments,line_items,company,accounting_period", - PaymentsAppliedPaymentsLineItemsContact: "payments,applied_payments,line_items,contact", - PaymentsAppliedPaymentsLineItemsContactAccountingPeriod: - "payments,applied_payments,line_items,contact,accounting_period", - PaymentsAppliedPaymentsLineItemsContactCompany: "payments,applied_payments,line_items,contact,company", - PaymentsAppliedPaymentsLineItemsContactCompanyAccountingPeriod: - "payments,applied_payments,line_items,contact,company,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategories: "payments,applied_payments,line_items,tracking_categories", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesCompany: - "payments,applied_payments,line_items,tracking_categories,company", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesCompanyAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,company,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesContact: - "payments,applied_payments,line_items,tracking_categories,contact", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesContactAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,contact,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesContactCompany: - "payments,applied_payments,line_items,tracking_categories,contact,company", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesContactCompanyAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,contact,company,accounting_period", - PaymentsAppliedPaymentsTrackingCategories: "payments,applied_payments,tracking_categories", - PaymentsAppliedPaymentsTrackingCategoriesAccountingPeriod: - "payments,applied_payments,tracking_categories,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesCompany: "payments,applied_payments,tracking_categories,company", - PaymentsAppliedPaymentsTrackingCategoriesCompanyAccountingPeriod: - "payments,applied_payments,tracking_categories,company,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesContact: "payments,applied_payments,tracking_categories,contact", - PaymentsAppliedPaymentsTrackingCategoriesContactAccountingPeriod: - "payments,applied_payments,tracking_categories,contact,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesContactCompany: - "payments,applied_payments,tracking_categories,contact,company", - PaymentsAppliedPaymentsTrackingCategoriesContactCompanyAccountingPeriod: - "payments,applied_payments,tracking_categories,contact,company,accounting_period", - PaymentsCompany: "payments,company", - PaymentsCompanyAccountingPeriod: "payments,company,accounting_period", - PaymentsContact: "payments,contact", - PaymentsContactAccountingPeriod: "payments,contact,accounting_period", - PaymentsContactCompany: "payments,contact,company", - PaymentsContactCompanyAccountingPeriod: "payments,contact,company,accounting_period", - PaymentsLineItems: "payments,line_items", - PaymentsLineItemsAccountingPeriod: "payments,line_items,accounting_period", - PaymentsLineItemsCompany: "payments,line_items,company", - PaymentsLineItemsCompanyAccountingPeriod: "payments,line_items,company,accounting_period", - PaymentsLineItemsContact: "payments,line_items,contact", - PaymentsLineItemsContactAccountingPeriod: "payments,line_items,contact,accounting_period", - PaymentsLineItemsContactCompany: "payments,line_items,contact,company", - PaymentsLineItemsContactCompanyAccountingPeriod: "payments,line_items,contact,company,accounting_period", - PaymentsLineItemsTrackingCategories: "payments,line_items,tracking_categories", - PaymentsLineItemsTrackingCategoriesAccountingPeriod: "payments,line_items,tracking_categories,accounting_period", - PaymentsLineItemsTrackingCategoriesCompany: "payments,line_items,tracking_categories,company", - PaymentsLineItemsTrackingCategoriesCompanyAccountingPeriod: - "payments,line_items,tracking_categories,company,accounting_period", - PaymentsLineItemsTrackingCategoriesContact: "payments,line_items,tracking_categories,contact", - PaymentsLineItemsTrackingCategoriesContactAccountingPeriod: - "payments,line_items,tracking_categories,contact,accounting_period", - PaymentsLineItemsTrackingCategoriesContactCompany: "payments,line_items,tracking_categories,contact,company", - PaymentsLineItemsTrackingCategoriesContactCompanyAccountingPeriod: - "payments,line_items,tracking_categories,contact,company,accounting_period", - PaymentsTrackingCategories: "payments,tracking_categories", - PaymentsTrackingCategoriesAccountingPeriod: "payments,tracking_categories,accounting_period", - PaymentsTrackingCategoriesCompany: "payments,tracking_categories,company", - PaymentsTrackingCategoriesCompanyAccountingPeriod: "payments,tracking_categories,company,accounting_period", - PaymentsTrackingCategoriesContact: "payments,tracking_categories,contact", - PaymentsTrackingCategoriesContactAccountingPeriod: "payments,tracking_categories,contact,accounting_period", - PaymentsTrackingCategoriesContactCompany: "payments,tracking_categories,contact,company", - PaymentsTrackingCategoriesContactCompanyAccountingPeriod: - "payments,tracking_categories,contact,company,accounting_period", - TrackingCategories: "tracking_categories", - TrackingCategoriesAccountingPeriod: "tracking_categories,accounting_period", - TrackingCategoriesCompany: "tracking_categories,company", - TrackingCategoriesCompanyAccountingPeriod: "tracking_categories,company,accounting_period", - TrackingCategoriesContact: "tracking_categories,contact", - TrackingCategoriesContactAccountingPeriod: "tracking_categories,contact,accounting_period", - TrackingCategoriesContactCompany: "tracking_categories,contact,company", - TrackingCategoriesContactCompanyAccountingPeriod: "tracking_categories,contact,company,accounting_period", -} as const; -export type CreditNotesListRequestExpand = - (typeof CreditNotesListRequestExpand)[keyof typeof CreditNotesListRequestExpand]; diff --git a/src/api/resources/accounting/resources/creditNotes/types/CreditNotesListRequestRemoteFields.ts b/src/api/resources/accounting/resources/creditNotes/types/CreditNotesListRequestRemoteFields.ts deleted file mode 100644 index acc4acd47..000000000 --- a/src/api/resources/accounting/resources/creditNotes/types/CreditNotesListRequestRemoteFields.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export const CreditNotesListRequestRemoteFields = { - Status: "status", - StatusType: "status,type", - Type: "type", -} as const; -export type CreditNotesListRequestRemoteFields = - (typeof CreditNotesListRequestRemoteFields)[keyof typeof CreditNotesListRequestRemoteFields]; diff --git a/src/api/resources/accounting/resources/creditNotes/types/CreditNotesListRequestShowEnumOrigins.ts b/src/api/resources/accounting/resources/creditNotes/types/CreditNotesListRequestShowEnumOrigins.ts deleted file mode 100644 index 0e1361f6f..000000000 --- a/src/api/resources/accounting/resources/creditNotes/types/CreditNotesListRequestShowEnumOrigins.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export const CreditNotesListRequestShowEnumOrigins = { - Status: "status", - StatusType: "status,type", - Type: "type", -} as const; -export type CreditNotesListRequestShowEnumOrigins = - (typeof CreditNotesListRequestShowEnumOrigins)[keyof typeof CreditNotesListRequestShowEnumOrigins]; diff --git a/src/api/resources/accounting/resources/creditNotes/types/CreditNotesRetrieveRequestExpand.ts b/src/api/resources/accounting/resources/creditNotes/types/CreditNotesRetrieveRequestExpand.ts deleted file mode 100644 index 42b0ff67d..000000000 --- a/src/api/resources/accounting/resources/creditNotes/types/CreditNotesRetrieveRequestExpand.ts +++ /dev/null @@ -1,163 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export const CreditNotesRetrieveRequestExpand = { - AccountingPeriod: "accounting_period", - AppliedPayments: "applied_payments", - AppliedPaymentsAccountingPeriod: "applied_payments,accounting_period", - AppliedPaymentsCompany: "applied_payments,company", - AppliedPaymentsCompanyAccountingPeriod: "applied_payments,company,accounting_period", - AppliedPaymentsContact: "applied_payments,contact", - AppliedPaymentsContactAccountingPeriod: "applied_payments,contact,accounting_period", - AppliedPaymentsContactCompany: "applied_payments,contact,company", - AppliedPaymentsContactCompanyAccountingPeriod: "applied_payments,contact,company,accounting_period", - AppliedPaymentsLineItems: "applied_payments,line_items", - AppliedPaymentsLineItemsAccountingPeriod: "applied_payments,line_items,accounting_period", - AppliedPaymentsLineItemsCompany: "applied_payments,line_items,company", - AppliedPaymentsLineItemsCompanyAccountingPeriod: "applied_payments,line_items,company,accounting_period", - AppliedPaymentsLineItemsContact: "applied_payments,line_items,contact", - AppliedPaymentsLineItemsContactAccountingPeriod: "applied_payments,line_items,contact,accounting_period", - AppliedPaymentsLineItemsContactCompany: "applied_payments,line_items,contact,company", - AppliedPaymentsLineItemsContactCompanyAccountingPeriod: - "applied_payments,line_items,contact,company,accounting_period", - AppliedPaymentsLineItemsTrackingCategories: "applied_payments,line_items,tracking_categories", - AppliedPaymentsLineItemsTrackingCategoriesAccountingPeriod: - "applied_payments,line_items,tracking_categories,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesCompany: "applied_payments,line_items,tracking_categories,company", - AppliedPaymentsLineItemsTrackingCategoriesCompanyAccountingPeriod: - "applied_payments,line_items,tracking_categories,company,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesContact: "applied_payments,line_items,tracking_categories,contact", - AppliedPaymentsLineItemsTrackingCategoriesContactAccountingPeriod: - "applied_payments,line_items,tracking_categories,contact,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesContactCompany: - "applied_payments,line_items,tracking_categories,contact,company", - AppliedPaymentsLineItemsTrackingCategoriesContactCompanyAccountingPeriod: - "applied_payments,line_items,tracking_categories,contact,company,accounting_period", - AppliedPaymentsTrackingCategories: "applied_payments,tracking_categories", - AppliedPaymentsTrackingCategoriesAccountingPeriod: "applied_payments,tracking_categories,accounting_period", - AppliedPaymentsTrackingCategoriesCompany: "applied_payments,tracking_categories,company", - AppliedPaymentsTrackingCategoriesCompanyAccountingPeriod: - "applied_payments,tracking_categories,company,accounting_period", - AppliedPaymentsTrackingCategoriesContact: "applied_payments,tracking_categories,contact", - AppliedPaymentsTrackingCategoriesContactAccountingPeriod: - "applied_payments,tracking_categories,contact,accounting_period", - AppliedPaymentsTrackingCategoriesContactCompany: "applied_payments,tracking_categories,contact,company", - AppliedPaymentsTrackingCategoriesContactCompanyAccountingPeriod: - "applied_payments,tracking_categories,contact,company,accounting_period", - Company: "company", - CompanyAccountingPeriod: "company,accounting_period", - Contact: "contact", - ContactAccountingPeriod: "contact,accounting_period", - ContactCompany: "contact,company", - ContactCompanyAccountingPeriod: "contact,company,accounting_period", - LineItems: "line_items", - LineItemsAccountingPeriod: "line_items,accounting_period", - LineItemsCompany: "line_items,company", - LineItemsCompanyAccountingPeriod: "line_items,company,accounting_period", - LineItemsContact: "line_items,contact", - LineItemsContactAccountingPeriod: "line_items,contact,accounting_period", - LineItemsContactCompany: "line_items,contact,company", - LineItemsContactCompanyAccountingPeriod: "line_items,contact,company,accounting_period", - LineItemsTrackingCategories: "line_items,tracking_categories", - LineItemsTrackingCategoriesAccountingPeriod: "line_items,tracking_categories,accounting_period", - LineItemsTrackingCategoriesCompany: "line_items,tracking_categories,company", - LineItemsTrackingCategoriesCompanyAccountingPeriod: "line_items,tracking_categories,company,accounting_period", - LineItemsTrackingCategoriesContact: "line_items,tracking_categories,contact", - LineItemsTrackingCategoriesContactAccountingPeriod: "line_items,tracking_categories,contact,accounting_period", - LineItemsTrackingCategoriesContactCompany: "line_items,tracking_categories,contact,company", - LineItemsTrackingCategoriesContactCompanyAccountingPeriod: - "line_items,tracking_categories,contact,company,accounting_period", - Payments: "payments", - PaymentsAccountingPeriod: "payments,accounting_period", - PaymentsAppliedPayments: "payments,applied_payments", - PaymentsAppliedPaymentsAccountingPeriod: "payments,applied_payments,accounting_period", - PaymentsAppliedPaymentsCompany: "payments,applied_payments,company", - PaymentsAppliedPaymentsCompanyAccountingPeriod: "payments,applied_payments,company,accounting_period", - PaymentsAppliedPaymentsContact: "payments,applied_payments,contact", - PaymentsAppliedPaymentsContactAccountingPeriod: "payments,applied_payments,contact,accounting_period", - PaymentsAppliedPaymentsContactCompany: "payments,applied_payments,contact,company", - PaymentsAppliedPaymentsContactCompanyAccountingPeriod: - "payments,applied_payments,contact,company,accounting_period", - PaymentsAppliedPaymentsLineItems: "payments,applied_payments,line_items", - PaymentsAppliedPaymentsLineItemsAccountingPeriod: "payments,applied_payments,line_items,accounting_period", - PaymentsAppliedPaymentsLineItemsCompany: "payments,applied_payments,line_items,company", - PaymentsAppliedPaymentsLineItemsCompanyAccountingPeriod: - "payments,applied_payments,line_items,company,accounting_period", - PaymentsAppliedPaymentsLineItemsContact: "payments,applied_payments,line_items,contact", - PaymentsAppliedPaymentsLineItemsContactAccountingPeriod: - "payments,applied_payments,line_items,contact,accounting_period", - PaymentsAppliedPaymentsLineItemsContactCompany: "payments,applied_payments,line_items,contact,company", - PaymentsAppliedPaymentsLineItemsContactCompanyAccountingPeriod: - "payments,applied_payments,line_items,contact,company,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategories: "payments,applied_payments,line_items,tracking_categories", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesCompany: - "payments,applied_payments,line_items,tracking_categories,company", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesCompanyAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,company,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesContact: - "payments,applied_payments,line_items,tracking_categories,contact", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesContactAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,contact,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesContactCompany: - "payments,applied_payments,line_items,tracking_categories,contact,company", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesContactCompanyAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,contact,company,accounting_period", - PaymentsAppliedPaymentsTrackingCategories: "payments,applied_payments,tracking_categories", - PaymentsAppliedPaymentsTrackingCategoriesAccountingPeriod: - "payments,applied_payments,tracking_categories,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesCompany: "payments,applied_payments,tracking_categories,company", - PaymentsAppliedPaymentsTrackingCategoriesCompanyAccountingPeriod: - "payments,applied_payments,tracking_categories,company,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesContact: "payments,applied_payments,tracking_categories,contact", - PaymentsAppliedPaymentsTrackingCategoriesContactAccountingPeriod: - "payments,applied_payments,tracking_categories,contact,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesContactCompany: - "payments,applied_payments,tracking_categories,contact,company", - PaymentsAppliedPaymentsTrackingCategoriesContactCompanyAccountingPeriod: - "payments,applied_payments,tracking_categories,contact,company,accounting_period", - PaymentsCompany: "payments,company", - PaymentsCompanyAccountingPeriod: "payments,company,accounting_period", - PaymentsContact: "payments,contact", - PaymentsContactAccountingPeriod: "payments,contact,accounting_period", - PaymentsContactCompany: "payments,contact,company", - PaymentsContactCompanyAccountingPeriod: "payments,contact,company,accounting_period", - PaymentsLineItems: "payments,line_items", - PaymentsLineItemsAccountingPeriod: "payments,line_items,accounting_period", - PaymentsLineItemsCompany: "payments,line_items,company", - PaymentsLineItemsCompanyAccountingPeriod: "payments,line_items,company,accounting_period", - PaymentsLineItemsContact: "payments,line_items,contact", - PaymentsLineItemsContactAccountingPeriod: "payments,line_items,contact,accounting_period", - PaymentsLineItemsContactCompany: "payments,line_items,contact,company", - PaymentsLineItemsContactCompanyAccountingPeriod: "payments,line_items,contact,company,accounting_period", - PaymentsLineItemsTrackingCategories: "payments,line_items,tracking_categories", - PaymentsLineItemsTrackingCategoriesAccountingPeriod: "payments,line_items,tracking_categories,accounting_period", - PaymentsLineItemsTrackingCategoriesCompany: "payments,line_items,tracking_categories,company", - PaymentsLineItemsTrackingCategoriesCompanyAccountingPeriod: - "payments,line_items,tracking_categories,company,accounting_period", - PaymentsLineItemsTrackingCategoriesContact: "payments,line_items,tracking_categories,contact", - PaymentsLineItemsTrackingCategoriesContactAccountingPeriod: - "payments,line_items,tracking_categories,contact,accounting_period", - PaymentsLineItemsTrackingCategoriesContactCompany: "payments,line_items,tracking_categories,contact,company", - PaymentsLineItemsTrackingCategoriesContactCompanyAccountingPeriod: - "payments,line_items,tracking_categories,contact,company,accounting_period", - PaymentsTrackingCategories: "payments,tracking_categories", - PaymentsTrackingCategoriesAccountingPeriod: "payments,tracking_categories,accounting_period", - PaymentsTrackingCategoriesCompany: "payments,tracking_categories,company", - PaymentsTrackingCategoriesCompanyAccountingPeriod: "payments,tracking_categories,company,accounting_period", - PaymentsTrackingCategoriesContact: "payments,tracking_categories,contact", - PaymentsTrackingCategoriesContactAccountingPeriod: "payments,tracking_categories,contact,accounting_period", - PaymentsTrackingCategoriesContactCompany: "payments,tracking_categories,contact,company", - PaymentsTrackingCategoriesContactCompanyAccountingPeriod: - "payments,tracking_categories,contact,company,accounting_period", - TrackingCategories: "tracking_categories", - TrackingCategoriesAccountingPeriod: "tracking_categories,accounting_period", - TrackingCategoriesCompany: "tracking_categories,company", - TrackingCategoriesCompanyAccountingPeriod: "tracking_categories,company,accounting_period", - TrackingCategoriesContact: "tracking_categories,contact", - TrackingCategoriesContactAccountingPeriod: "tracking_categories,contact,accounting_period", - TrackingCategoriesContactCompany: "tracking_categories,contact,company", - TrackingCategoriesContactCompanyAccountingPeriod: "tracking_categories,contact,company,accounting_period", -} as const; -export type CreditNotesRetrieveRequestExpand = - (typeof CreditNotesRetrieveRequestExpand)[keyof typeof CreditNotesRetrieveRequestExpand]; diff --git a/src/api/resources/accounting/resources/creditNotes/types/CreditNotesRetrieveRequestRemoteFields.ts b/src/api/resources/accounting/resources/creditNotes/types/CreditNotesRetrieveRequestRemoteFields.ts deleted file mode 100644 index 50560d00b..000000000 --- a/src/api/resources/accounting/resources/creditNotes/types/CreditNotesRetrieveRequestRemoteFields.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export const CreditNotesRetrieveRequestRemoteFields = { - Status: "status", - StatusType: "status,type", - Type: "type", -} as const; -export type CreditNotesRetrieveRequestRemoteFields = - (typeof CreditNotesRetrieveRequestRemoteFields)[keyof typeof CreditNotesRetrieveRequestRemoteFields]; diff --git a/src/api/resources/accounting/resources/creditNotes/types/CreditNotesRetrieveRequestShowEnumOrigins.ts b/src/api/resources/accounting/resources/creditNotes/types/CreditNotesRetrieveRequestShowEnumOrigins.ts deleted file mode 100644 index a3b4673c6..000000000 --- a/src/api/resources/accounting/resources/creditNotes/types/CreditNotesRetrieveRequestShowEnumOrigins.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export const CreditNotesRetrieveRequestShowEnumOrigins = { - Status: "status", - StatusType: "status,type", - Type: "type", -} as const; -export type CreditNotesRetrieveRequestShowEnumOrigins = - (typeof CreditNotesRetrieveRequestShowEnumOrigins)[keyof typeof CreditNotesRetrieveRequestShowEnumOrigins]; diff --git a/src/api/resources/accounting/resources/creditNotes/types/index.ts b/src/api/resources/accounting/resources/creditNotes/types/index.ts deleted file mode 100644 index 87be1efa5..000000000 --- a/src/api/resources/accounting/resources/creditNotes/types/index.ts +++ /dev/null @@ -1,6 +0,0 @@ -export * from "./CreditNotesListRequestExpand"; -export * from "./CreditNotesListRequestRemoteFields"; -export * from "./CreditNotesListRequestShowEnumOrigins"; -export * from "./CreditNotesRetrieveRequestExpand"; -export * from "./CreditNotesRetrieveRequestRemoteFields"; -export * from "./CreditNotesRetrieveRequestShowEnumOrigins"; diff --git a/src/api/resources/accounting/resources/deleteAccount/client/Client.ts b/src/api/resources/accounting/resources/deleteAccount/client/Client.ts deleted file mode 100644 index 712dc4d5c..000000000 --- a/src/api/resources/accounting/resources/deleteAccount/client/Client.ts +++ /dev/null @@ -1,79 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../BaseClient"; -import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../../../BaseClient"; -import * as core from "../../../../../../core"; -import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../../../core/headers"; -import * as environments from "../../../../../../environments"; -import { handleNonStatusCodeError } from "../../../../../../errors/handleNonStatusCodeError"; -import * as errors from "../../../../../../errors/index"; - -export declare namespace DeleteAccountClient { - export type Options = BaseClientOptions; - - export interface RequestOptions extends BaseRequestOptions {} -} - -export class DeleteAccountClient { - protected readonly _options: NormalizedClientOptionsWithAuth; - - constructor(options: DeleteAccountClient.Options) { - this._options = normalizeClientOptionsWithAuth(options); - } - - /** - * Delete a linked account. - * - * @param {DeleteAccountClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.deleteAccount.delete() - */ - public delete(requestOptions?: DeleteAccountClient.RequestOptions): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__delete(requestOptions)); - } - - private async __delete(requestOptions?: DeleteAccountClient.RequestOptions): Promise> { - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/delete-account", - ), - method: "POST", - headers: _headers, - queryParameters: requestOptions?.queryParams, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { data: undefined, rawResponse: _response.rawResponse }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "POST", - "/accounting/v1/delete-account", - ); - } -} diff --git a/src/api/resources/accounting/resources/deleteAccount/client/index.ts b/src/api/resources/accounting/resources/deleteAccount/client/index.ts deleted file mode 100644 index cb0ff5c3b..000000000 --- a/src/api/resources/accounting/resources/deleteAccount/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export {}; diff --git a/src/api/resources/accounting/resources/deleteAccount/exports.ts b/src/api/resources/accounting/resources/deleteAccount/exports.ts deleted file mode 100644 index b2e5e49b6..000000000 --- a/src/api/resources/accounting/resources/deleteAccount/exports.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export { DeleteAccountClient } from "./client/Client"; -export * from "./client/index"; diff --git a/src/api/resources/accounting/resources/deleteAccount/index.ts b/src/api/resources/accounting/resources/deleteAccount/index.ts deleted file mode 100644 index 5ec76921e..000000000 --- a/src/api/resources/accounting/resources/deleteAccount/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./client"; diff --git a/src/api/resources/accounting/resources/employees/client/Client.ts b/src/api/resources/accounting/resources/employees/client/Client.ts deleted file mode 100644 index 2d26f382d..000000000 --- a/src/api/resources/accounting/resources/employees/client/Client.ts +++ /dev/null @@ -1,213 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../BaseClient"; -import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../../../BaseClient"; -import * as core from "../../../../../../core"; -import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../../../core/headers"; -import * as environments from "../../../../../../environments"; -import { handleNonStatusCodeError } from "../../../../../../errors/handleNonStatusCodeError"; -import * as errors from "../../../../../../errors/index"; -import * as serializers from "../../../../../../serialization/index"; -import type * as Merge from "../../../../../index"; - -export declare namespace EmployeesClient { - export type Options = BaseClientOptions; - - export interface RequestOptions extends BaseRequestOptions {} -} - -export class EmployeesClient { - protected readonly _options: NormalizedClientOptionsWithAuth; - - constructor(options: EmployeesClient.Options) { - this._options = normalizeClientOptionsWithAuth(options); - } - - /** - * Returns a list of `Employee` objects. - * - * @param {Merge.accounting.EmployeesListRequest} request - * @param {EmployeesClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.employees.list({ - * companyId: "company_id", - * createdAfter: new Date("2024-01-15T09:30:00.000Z"), - * createdBefore: new Date("2024-01-15T09:30:00.000Z"), - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * expand: "company", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - * modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - * pageSize: 1, - * remoteId: "remote_id" - * }) - */ - public list( - request: Merge.accounting.EmployeesListRequest = {}, - requestOptions?: EmployeesClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__list(request, requestOptions)); - } - - private async __list( - request: Merge.accounting.EmployeesListRequest = {}, - requestOptions?: EmployeesClient.RequestOptions, - ): Promise> { - const { - companyId, - createdAfter, - createdBefore, - cursor, - expand, - includeDeletedData, - includeRemoteData, - includeShellData, - modifiedAfter, - modifiedBefore, - pageSize, - remoteId, - } = request; - const _queryParams: Record = { - company_id: companyId, - created_after: createdAfter?.toISOString(), - created_before: createdBefore?.toISOString(), - cursor, - expand: expand != null ? expand : undefined, - include_deleted_data: includeDeletedData, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - modified_after: modifiedAfter?.toISOString(), - modified_before: modifiedBefore?.toISOString(), - page_size: pageSize, - remote_id: remoteId, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/employees", - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaginatedEmployeeList.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError(_response.error, _response.rawResponse, "GET", "/accounting/v1/employees"); - } - - /** - * Returns an `Employee` object with the given `id`. - * - * @param {string} id - * @param {Merge.accounting.EmployeesRetrieveRequest} request - * @param {EmployeesClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.employees.retrieve("id", { - * expand: "company", - * includeRemoteData: true, - * includeShellData: true - * }) - */ - public retrieve( - id: string, - request: Merge.accounting.EmployeesRetrieveRequest = {}, - requestOptions?: EmployeesClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__retrieve(id, request, requestOptions)); - } - - private async __retrieve( - id: string, - request: Merge.accounting.EmployeesRetrieveRequest = {}, - requestOptions?: EmployeesClient.RequestOptions, - ): Promise> { - const { expand, includeRemoteData, includeShellData } = request; - const _queryParams: Record = { - expand: expand != null ? expand : undefined, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - `accounting/v1/employees/${core.url.encodePathParam(id)}`, - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.Employee.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError(_response.error, _response.rawResponse, "GET", "/accounting/v1/employees/{id}"); - } -} diff --git a/src/api/resources/accounting/resources/employees/client/index.ts b/src/api/resources/accounting/resources/employees/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/api/resources/accounting/resources/employees/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/api/resources/accounting/resources/employees/client/requests/EmployeesListRequest.ts b/src/api/resources/accounting/resources/employees/client/requests/EmployeesListRequest.ts deleted file mode 100644 index a0953801c..000000000 --- a/src/api/resources/accounting/resources/employees/client/requests/EmployeesListRequest.ts +++ /dev/null @@ -1,45 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * @example - * { - * companyId: "company_id", - * createdAfter: new Date("2024-01-15T09:30:00.000Z"), - * createdBefore: new Date("2024-01-15T09:30:00.000Z"), - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * expand: "company", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - * modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - * pageSize: 1, - * remoteId: "remote_id" - * } - */ -export interface EmployeesListRequest { - /** If provided, will only return employees for this company. */ - companyId?: string; - /** If provided, will only return objects created after this datetime. */ - createdAfter?: Date; - /** If provided, will only return objects created before this datetime. */ - createdBefore?: Date; - /** The pagination cursor value. */ - cursor?: string; - /** Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. */ - expand?: "company"; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - includeDeletedData?: boolean; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** If provided, only objects synced by Merge after this date time will be returned. */ - modifiedAfter?: Date; - /** If provided, only objects synced by Merge before this date time will be returned. */ - modifiedBefore?: Date; - /** Number of results to return per page. */ - pageSize?: number; - /** The API provider's ID for the given object. */ - remoteId?: string; -} diff --git a/src/api/resources/accounting/resources/employees/client/requests/EmployeesRetrieveRequest.ts b/src/api/resources/accounting/resources/employees/client/requests/EmployeesRetrieveRequest.ts deleted file mode 100644 index 244030e1e..000000000 --- a/src/api/resources/accounting/resources/employees/client/requests/EmployeesRetrieveRequest.ts +++ /dev/null @@ -1,18 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * @example - * { - * expand: "company", - * includeRemoteData: true, - * includeShellData: true - * } - */ -export interface EmployeesRetrieveRequest { - /** Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. */ - expand?: "company"; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; -} diff --git a/src/api/resources/accounting/resources/employees/client/requests/index.ts b/src/api/resources/accounting/resources/employees/client/requests/index.ts deleted file mode 100644 index 79a532070..000000000 --- a/src/api/resources/accounting/resources/employees/client/requests/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export type { EmployeesListRequest } from "./EmployeesListRequest"; -export type { EmployeesRetrieveRequest } from "./EmployeesRetrieveRequest"; diff --git a/src/api/resources/accounting/resources/employees/exports.ts b/src/api/resources/accounting/resources/employees/exports.ts deleted file mode 100644 index d2ce07706..000000000 --- a/src/api/resources/accounting/resources/employees/exports.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export { EmployeesClient } from "./client/Client"; -export * from "./client/index"; diff --git a/src/api/resources/accounting/resources/employees/index.ts b/src/api/resources/accounting/resources/employees/index.ts deleted file mode 100644 index 5ec76921e..000000000 --- a/src/api/resources/accounting/resources/employees/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./client"; diff --git a/src/api/resources/accounting/resources/expenseReports/client/Client.ts b/src/api/resources/accounting/resources/expenseReports/client/Client.ts deleted file mode 100644 index cd0cab743..000000000 --- a/src/api/resources/accounting/resources/expenseReports/client/Client.ts +++ /dev/null @@ -1,697 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../BaseClient"; -import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../../../BaseClient"; -import * as core from "../../../../../../core"; -import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../../../core/headers"; -import * as environments from "../../../../../../environments"; -import { handleNonStatusCodeError } from "../../../../../../errors/handleNonStatusCodeError"; -import * as errors from "../../../../../../errors/index"; -import * as serializers from "../../../../../../serialization/index"; -import type * as Merge from "../../../../../index"; - -export declare namespace ExpenseReportsClient { - export type Options = BaseClientOptions; - - export interface RequestOptions extends BaseRequestOptions {} -} - -export class ExpenseReportsClient { - protected readonly _options: NormalizedClientOptionsWithAuth; - - constructor(options: ExpenseReportsClient.Options) { - this._options = normalizeClientOptionsWithAuth(options); - } - - /** - * Returns a list of `ExpenseReport` objects. - * - * @param {Merge.accounting.ExpenseReportsListRequest} request - * @param {ExpenseReportsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.expenseReports.list({ - * companyId: "company_id", - * createdAfter: new Date("2024-01-15T09:30:00.000Z"), - * createdBefore: new Date("2024-01-15T09:30:00.000Z"), - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * expand: "accounting_period", - * includeDeletedData: true, - * includeRemoteData: true, - * includeRemoteFields: true, - * includeShellData: true, - * modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - * modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - * pageSize: 1, - * remoteId: "remote_id" - * }) - */ - public list( - request: Merge.accounting.ExpenseReportsListRequest = {}, - requestOptions?: ExpenseReportsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__list(request, requestOptions)); - } - - private async __list( - request: Merge.accounting.ExpenseReportsListRequest = {}, - requestOptions?: ExpenseReportsClient.RequestOptions, - ): Promise> { - const { - companyId, - createdAfter, - createdBefore, - cursor, - expand, - includeDeletedData, - includeRemoteData, - includeRemoteFields, - includeShellData, - modifiedAfter, - modifiedBefore, - pageSize, - remoteId, - } = request; - const _queryParams: Record = { - company_id: companyId, - created_after: createdAfter?.toISOString(), - created_before: createdBefore?.toISOString(), - cursor, - expand: - expand != null - ? serializers.accounting.ExpenseReportsListRequestExpand.jsonOrThrow(expand, { - unrecognizedObjectKeys: "strip", - }) - : undefined, - include_deleted_data: includeDeletedData, - include_remote_data: includeRemoteData, - include_remote_fields: includeRemoteFields, - include_shell_data: includeShellData, - modified_after: modifiedAfter?.toISOString(), - modified_before: modifiedBefore?.toISOString(), - page_size: pageSize, - remote_id: remoteId, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/expense-reports", - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaginatedExpenseReportList.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/expense-reports", - ); - } - - /** - * Creates an `ExpenseReport` object with the given values. - * - * @param {Merge.accounting.ExpenseReportEndpointRequest} request - * @param {ExpenseReportsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.expenseReports.create({ - * isDebugMode: true, - * runAsync: true, - * model: { - * trackingCategories: ["a1b2c3d4-e5f6-4a5b-9c3d-2e1f0a9b8c7d", "d4c3b2a1-9e8f-7g6h-5i4j-3k2l1m0n9o8p"] - * } - * }) - */ - public create( - request: Merge.accounting.ExpenseReportEndpointRequest, - requestOptions?: ExpenseReportsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__create(request, requestOptions)); - } - - private async __create( - request: Merge.accounting.ExpenseReportEndpointRequest, - requestOptions?: ExpenseReportsClient.RequestOptions, - ): Promise> { - const { isDebugMode, runAsync, ..._body } = request; - const _queryParams: Record = { - is_debug_mode: isDebugMode, - run_async: runAsync, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/expense-reports", - ), - method: "POST", - headers: _headers, - contentType: "application/json", - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - requestType: "json", - body: serializers.accounting.ExpenseReportEndpointRequest.jsonOrThrow(_body, { - unrecognizedObjectKeys: "strip", - }), - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.ExpenseReportResponse.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "POST", - "/accounting/v1/expense-reports", - ); - } - - /** - * Returns a list of `ExpenseReportLine` objects that point to a `ExpenseReport` with the given id. - * - * @param {string} expense_report_id - * @param {Merge.accounting.ExpenseReportsLinesListRequest} request - * @param {ExpenseReportsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.expenseReports.linesList("expense_report_id", { - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * expand: "account", - * includeDeletedData: true, - * includeRemoteData: true, - * includeRemoteFields: true, - * includeShellData: true, - * pageSize: 1 - * }) - */ - public linesList( - expense_report_id: string, - request: Merge.accounting.ExpenseReportsLinesListRequest = {}, - requestOptions?: ExpenseReportsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__linesList(expense_report_id, request, requestOptions)); - } - - private async __linesList( - expense_report_id: string, - request: Merge.accounting.ExpenseReportsLinesListRequest = {}, - requestOptions?: ExpenseReportsClient.RequestOptions, - ): Promise> { - const { - cursor, - expand, - includeDeletedData, - includeRemoteData, - includeRemoteFields, - includeShellData, - pageSize, - } = request; - const _queryParams: Record = { - cursor, - expand: - expand != null - ? serializers.accounting.ExpenseReportsLinesListRequestExpand.jsonOrThrow(expand, { - unrecognizedObjectKeys: "strip", - }) - : undefined, - include_deleted_data: includeDeletedData, - include_remote_data: includeRemoteData, - include_remote_fields: includeRemoteFields, - include_shell_data: includeShellData, - page_size: pageSize, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - `accounting/v1/expense-reports/${core.url.encodePathParam(expense_report_id)}/lines`, - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaginatedExpenseReportLineList.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/expense-reports/{expense_report_id}/lines", - ); - } - - /** - * Returns an `ExpenseReport` object with the given `id`. - * - * @param {string} id - * @param {Merge.accounting.ExpenseReportsRetrieveRequest} request - * @param {ExpenseReportsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.expenseReports.retrieve("id", { - * expand: "accounting_period", - * includeRemoteData: true, - * includeRemoteFields: true, - * includeShellData: true - * }) - */ - public retrieve( - id: string, - request: Merge.accounting.ExpenseReportsRetrieveRequest = {}, - requestOptions?: ExpenseReportsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__retrieve(id, request, requestOptions)); - } - - private async __retrieve( - id: string, - request: Merge.accounting.ExpenseReportsRetrieveRequest = {}, - requestOptions?: ExpenseReportsClient.RequestOptions, - ): Promise> { - const { expand, includeRemoteData, includeRemoteFields, includeShellData } = request; - const _queryParams: Record = { - expand: - expand != null - ? serializers.accounting.ExpenseReportsRetrieveRequestExpand.jsonOrThrow(expand, { - unrecognizedObjectKeys: "strip", - }) - : undefined, - include_remote_data: includeRemoteData, - include_remote_fields: includeRemoteFields, - include_shell_data: includeShellData, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - `accounting/v1/expense-reports/${core.url.encodePathParam(id)}`, - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.ExpenseReport.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/expense-reports/{id}", - ); - } - - /** - * Returns a list of `RemoteFieldClass` objects. - * - * @param {Merge.accounting.ExpenseReportsLinesRemoteFieldClassesListRequest} request - * @param {ExpenseReportsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.expenseReports.linesRemoteFieldClassesList({ - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * isCommonModelField: true, - * isCustom: true, - * pageSize: 1 - * }) - */ - public linesRemoteFieldClassesList( - request: Merge.accounting.ExpenseReportsLinesRemoteFieldClassesListRequest = {}, - requestOptions?: ExpenseReportsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__linesRemoteFieldClassesList(request, requestOptions)); - } - - private async __linesRemoteFieldClassesList( - request: Merge.accounting.ExpenseReportsLinesRemoteFieldClassesListRequest = {}, - requestOptions?: ExpenseReportsClient.RequestOptions, - ): Promise> { - const { - cursor, - includeDeletedData, - includeRemoteData, - includeShellData, - isCommonModelField, - isCustom, - pageSize, - } = request; - const _queryParams: Record = { - cursor, - include_deleted_data: includeDeletedData, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - is_common_model_field: isCommonModelField, - is_custom: isCustom, - page_size: pageSize, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/expense-reports/lines/remote-field-classes", - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaginatedRemoteFieldClassList.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/expense-reports/lines/remote-field-classes", - ); - } - - /** - * Returns metadata for `ExpenseReport` POSTs. - * - * @param {ExpenseReportsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.expenseReports.metaPostRetrieve() - */ - public metaPostRetrieve( - requestOptions?: ExpenseReportsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__metaPostRetrieve(requestOptions)); - } - - private async __metaPostRetrieve( - requestOptions?: ExpenseReportsClient.RequestOptions, - ): Promise> { - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/expense-reports/meta/post", - ), - method: "GET", - headers: _headers, - queryParameters: requestOptions?.queryParams, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.MetaResponse.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/expense-reports/meta/post", - ); - } - - /** - * Returns a list of `RemoteFieldClass` objects. - * - * @param {Merge.accounting.ExpenseReportsRemoteFieldClassesListRequest} request - * @param {ExpenseReportsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.expenseReports.remoteFieldClassesList({ - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * isCommonModelField: true, - * isCustom: true, - * pageSize: 1 - * }) - */ - public remoteFieldClassesList( - request: Merge.accounting.ExpenseReportsRemoteFieldClassesListRequest = {}, - requestOptions?: ExpenseReportsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__remoteFieldClassesList(request, requestOptions)); - } - - private async __remoteFieldClassesList( - request: Merge.accounting.ExpenseReportsRemoteFieldClassesListRequest = {}, - requestOptions?: ExpenseReportsClient.RequestOptions, - ): Promise> { - const { - cursor, - includeDeletedData, - includeRemoteData, - includeShellData, - isCommonModelField, - isCustom, - pageSize, - } = request; - const _queryParams: Record = { - cursor, - include_deleted_data: includeDeletedData, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - is_common_model_field: isCommonModelField, - is_custom: isCustom, - page_size: pageSize, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/expense-reports/remote-field-classes", - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaginatedRemoteFieldClassList.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/expense-reports/remote-field-classes", - ); - } -} diff --git a/src/api/resources/accounting/resources/expenseReports/client/index.ts b/src/api/resources/accounting/resources/expenseReports/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/api/resources/accounting/resources/expenseReports/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/api/resources/accounting/resources/expenseReports/client/requests/ExpenseReportEndpointRequest.ts b/src/api/resources/accounting/resources/expenseReports/client/requests/ExpenseReportEndpointRequest.ts deleted file mode 100644 index 8b8b732a4..000000000 --- a/src/api/resources/accounting/resources/expenseReports/client/requests/ExpenseReportEndpointRequest.ts +++ /dev/null @@ -1,21 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * isDebugMode: true, - * runAsync: true, - * model: { - * trackingCategories: ["a1b2c3d4-e5f6-4a5b-9c3d-2e1f0a9b8c7d", "d4c3b2a1-9e8f-7g6h-5i4j-3k2l1m0n9o8p"] - * } - * } - */ -export interface ExpenseReportEndpointRequest { - /** Whether to include debug fields (such as log file links) in the response. */ - isDebugMode?: boolean; - /** Whether or not third-party updates should be run asynchronously. */ - runAsync?: boolean; - model: Merge.accounting.ExpenseReportRequest; -} diff --git a/src/api/resources/accounting/resources/expenseReports/client/requests/ExpenseReportsLinesListRequest.ts b/src/api/resources/accounting/resources/expenseReports/client/requests/ExpenseReportsLinesListRequest.ts deleted file mode 100644 index 8167f0407..000000000 --- a/src/api/resources/accounting/resources/expenseReports/client/requests/ExpenseReportsLinesListRequest.ts +++ /dev/null @@ -1,32 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * expand: "account", - * includeDeletedData: true, - * includeRemoteData: true, - * includeRemoteFields: true, - * includeShellData: true, - * pageSize: 1 - * } - */ -export interface ExpenseReportsLinesListRequest { - /** The pagination cursor value. */ - cursor?: string; - /** Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. */ - expand?: Merge.accounting.ExpenseReportsLinesListRequestExpand; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - includeDeletedData?: boolean; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include all remote fields, including fields that Merge did not map to common models, in a normalized format. */ - includeRemoteFields?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** Number of results to return per page. */ - pageSize?: number; -} diff --git a/src/api/resources/accounting/resources/expenseReports/client/requests/ExpenseReportsLinesRemoteFieldClassesListRequest.ts b/src/api/resources/accounting/resources/expenseReports/client/requests/ExpenseReportsLinesRemoteFieldClassesListRequest.ts deleted file mode 100644 index 3020486b5..000000000 --- a/src/api/resources/accounting/resources/expenseReports/client/requests/ExpenseReportsLinesRemoteFieldClassesListRequest.ts +++ /dev/null @@ -1,30 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * @example - * { - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * isCommonModelField: true, - * isCustom: true, - * pageSize: 1 - * } - */ -export interface ExpenseReportsLinesRemoteFieldClassesListRequest { - /** The pagination cursor value. */ - cursor?: string; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - includeDeletedData?: boolean; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** If provided, will only return remote field classes with this is_common_model_field value */ - isCommonModelField?: boolean; - /** If provided, will only return remote fields classes with this is_custom value */ - isCustom?: boolean; - /** Number of results to return per page. */ - pageSize?: number; -} diff --git a/src/api/resources/accounting/resources/expenseReports/client/requests/ExpenseReportsListRequest.ts b/src/api/resources/accounting/resources/expenseReports/client/requests/ExpenseReportsListRequest.ts deleted file mode 100644 index 4059ea572..000000000 --- a/src/api/resources/accounting/resources/expenseReports/client/requests/ExpenseReportsListRequest.ts +++ /dev/null @@ -1,50 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * companyId: "company_id", - * createdAfter: new Date("2024-01-15T09:30:00.000Z"), - * createdBefore: new Date("2024-01-15T09:30:00.000Z"), - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * expand: "accounting_period", - * includeDeletedData: true, - * includeRemoteData: true, - * includeRemoteFields: true, - * includeShellData: true, - * modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - * modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - * pageSize: 1, - * remoteId: "remote_id" - * } - */ -export interface ExpenseReportsListRequest { - /** If provided, will only return expense reports for this company. */ - companyId?: string; - /** If provided, will only return objects created after this datetime. */ - createdAfter?: Date; - /** If provided, will only return objects created before this datetime. */ - createdBefore?: Date; - /** The pagination cursor value. */ - cursor?: string; - /** Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. */ - expand?: Merge.accounting.ExpenseReportsListRequestExpand; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - includeDeletedData?: boolean; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include all remote fields, including fields that Merge did not map to common models, in a normalized format. */ - includeRemoteFields?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** If provided, only objects synced by Merge after this date time will be returned. */ - modifiedAfter?: Date; - /** If provided, only objects synced by Merge before this date time will be returned. */ - modifiedBefore?: Date; - /** Number of results to return per page. */ - pageSize?: number; - /** The API provider's ID for the given object. */ - remoteId?: string; -} diff --git a/src/api/resources/accounting/resources/expenseReports/client/requests/ExpenseReportsRemoteFieldClassesListRequest.ts b/src/api/resources/accounting/resources/expenseReports/client/requests/ExpenseReportsRemoteFieldClassesListRequest.ts deleted file mode 100644 index 351af2ffc..000000000 --- a/src/api/resources/accounting/resources/expenseReports/client/requests/ExpenseReportsRemoteFieldClassesListRequest.ts +++ /dev/null @@ -1,30 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * @example - * { - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * isCommonModelField: true, - * isCustom: true, - * pageSize: 1 - * } - */ -export interface ExpenseReportsRemoteFieldClassesListRequest { - /** The pagination cursor value. */ - cursor?: string; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - includeDeletedData?: boolean; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** If provided, will only return remote field classes with this is_common_model_field value */ - isCommonModelField?: boolean; - /** If provided, will only return remote fields classes with this is_custom value */ - isCustom?: boolean; - /** Number of results to return per page. */ - pageSize?: number; -} diff --git a/src/api/resources/accounting/resources/expenseReports/client/requests/ExpenseReportsRetrieveRequest.ts b/src/api/resources/accounting/resources/expenseReports/client/requests/ExpenseReportsRetrieveRequest.ts deleted file mode 100644 index 57b230f8e..000000000 --- a/src/api/resources/accounting/resources/expenseReports/client/requests/ExpenseReportsRetrieveRequest.ts +++ /dev/null @@ -1,23 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * expand: "accounting_period", - * includeRemoteData: true, - * includeRemoteFields: true, - * includeShellData: true - * } - */ -export interface ExpenseReportsRetrieveRequest { - /** Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. */ - expand?: Merge.accounting.ExpenseReportsRetrieveRequestExpand; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include all remote fields, including fields that Merge did not map to common models, in a normalized format. */ - includeRemoteFields?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; -} diff --git a/src/api/resources/accounting/resources/expenseReports/client/requests/index.ts b/src/api/resources/accounting/resources/expenseReports/client/requests/index.ts deleted file mode 100644 index 34e983061..000000000 --- a/src/api/resources/accounting/resources/expenseReports/client/requests/index.ts +++ /dev/null @@ -1,6 +0,0 @@ -export type { ExpenseReportEndpointRequest } from "./ExpenseReportEndpointRequest"; -export type { ExpenseReportsLinesListRequest } from "./ExpenseReportsLinesListRequest"; -export type { ExpenseReportsLinesRemoteFieldClassesListRequest } from "./ExpenseReportsLinesRemoteFieldClassesListRequest"; -export type { ExpenseReportsListRequest } from "./ExpenseReportsListRequest"; -export type { ExpenseReportsRemoteFieldClassesListRequest } from "./ExpenseReportsRemoteFieldClassesListRequest"; -export type { ExpenseReportsRetrieveRequest } from "./ExpenseReportsRetrieveRequest"; diff --git a/src/api/resources/accounting/resources/expenseReports/exports.ts b/src/api/resources/accounting/resources/expenseReports/exports.ts deleted file mode 100644 index 86083814a..000000000 --- a/src/api/resources/accounting/resources/expenseReports/exports.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export { ExpenseReportsClient } from "./client/Client"; -export * from "./client/index"; diff --git a/src/api/resources/accounting/resources/expenseReports/index.ts b/src/api/resources/accounting/resources/expenseReports/index.ts deleted file mode 100644 index d2ec2302c..000000000 --- a/src/api/resources/accounting/resources/expenseReports/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./client"; -export * from "./types"; diff --git a/src/api/resources/accounting/resources/expenseReports/types/ExpenseReportsLinesListRequestExpand.ts b/src/api/resources/accounting/resources/expenseReports/types/ExpenseReportsLinesListRequestExpand.ts deleted file mode 100644 index 1014f0867..000000000 --- a/src/api/resources/accounting/resources/expenseReports/types/ExpenseReportsLinesListRequestExpand.ts +++ /dev/null @@ -1,69 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export const ExpenseReportsLinesListRequestExpand = { - Account: "account", - AccountCompany: "account,company", - AccountCompanyContact: "account,company,contact", - AccountCompanyContactTaxRate: "account,company,contact,tax_rate", - AccountCompanyTaxRate: "account,company,tax_rate", - AccountContact: "account,contact", - AccountContactTaxRate: "account,contact,tax_rate", - AccountEmployee: "account,employee", - AccountEmployeeCompany: "account,employee,company", - AccountEmployeeCompanyContact: "account,employee,company,contact", - AccountEmployeeCompanyContactTaxRate: "account,employee,company,contact,tax_rate", - AccountEmployeeCompanyTaxRate: "account,employee,company,tax_rate", - AccountEmployeeContact: "account,employee,contact", - AccountEmployeeContactTaxRate: "account,employee,contact,tax_rate", - AccountEmployeeProject: "account,employee,project", - AccountEmployeeProjectCompany: "account,employee,project,company", - AccountEmployeeProjectCompanyContact: "account,employee,project,company,contact", - AccountEmployeeProjectCompanyContactTaxRate: "account,employee,project,company,contact,tax_rate", - AccountEmployeeProjectCompanyTaxRate: "account,employee,project,company,tax_rate", - AccountEmployeeProjectContact: "account,employee,project,contact", - AccountEmployeeProjectContactTaxRate: "account,employee,project,contact,tax_rate", - AccountEmployeeProjectTaxRate: "account,employee,project,tax_rate", - AccountEmployeeTaxRate: "account,employee,tax_rate", - AccountProject: "account,project", - AccountProjectCompany: "account,project,company", - AccountProjectCompanyContact: "account,project,company,contact", - AccountProjectCompanyContactTaxRate: "account,project,company,contact,tax_rate", - AccountProjectCompanyTaxRate: "account,project,company,tax_rate", - AccountProjectContact: "account,project,contact", - AccountProjectContactTaxRate: "account,project,contact,tax_rate", - AccountProjectTaxRate: "account,project,tax_rate", - AccountTaxRate: "account,tax_rate", - Company: "company", - CompanyContact: "company,contact", - CompanyContactTaxRate: "company,contact,tax_rate", - CompanyTaxRate: "company,tax_rate", - Contact: "contact", - ContactTaxRate: "contact,tax_rate", - Employee: "employee", - EmployeeCompany: "employee,company", - EmployeeCompanyContact: "employee,company,contact", - EmployeeCompanyContactTaxRate: "employee,company,contact,tax_rate", - EmployeeCompanyTaxRate: "employee,company,tax_rate", - EmployeeContact: "employee,contact", - EmployeeContactTaxRate: "employee,contact,tax_rate", - EmployeeProject: "employee,project", - EmployeeProjectCompany: "employee,project,company", - EmployeeProjectCompanyContact: "employee,project,company,contact", - EmployeeProjectCompanyContactTaxRate: "employee,project,company,contact,tax_rate", - EmployeeProjectCompanyTaxRate: "employee,project,company,tax_rate", - EmployeeProjectContact: "employee,project,contact", - EmployeeProjectContactTaxRate: "employee,project,contact,tax_rate", - EmployeeProjectTaxRate: "employee,project,tax_rate", - EmployeeTaxRate: "employee,tax_rate", - Project: "project", - ProjectCompany: "project,company", - ProjectCompanyContact: "project,company,contact", - ProjectCompanyContactTaxRate: "project,company,contact,tax_rate", - ProjectCompanyTaxRate: "project,company,tax_rate", - ProjectContact: "project,contact", - ProjectContactTaxRate: "project,contact,tax_rate", - ProjectTaxRate: "project,tax_rate", - TaxRate: "tax_rate", -} as const; -export type ExpenseReportsLinesListRequestExpand = - (typeof ExpenseReportsLinesListRequestExpand)[keyof typeof ExpenseReportsLinesListRequestExpand]; diff --git a/src/api/resources/accounting/resources/expenseReports/types/ExpenseReportsListRequestExpand.ts b/src/api/resources/accounting/resources/expenseReports/types/ExpenseReportsListRequestExpand.ts deleted file mode 100644 index 6a3830422..000000000 --- a/src/api/resources/accounting/resources/expenseReports/types/ExpenseReportsListRequestExpand.ts +++ /dev/null @@ -1,21 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export const ExpenseReportsListRequestExpand = { - AccountingPeriod: "accounting_period", - AccountingPeriodCompany: "accounting_period,company", - Company: "company", - Employee: "employee", - EmployeeAccountingPeriod: "employee,accounting_period", - EmployeeAccountingPeriodCompany: "employee,accounting_period,company", - EmployeeCompany: "employee,company", - Lines: "lines", - LinesAccountingPeriod: "lines,accounting_period", - LinesAccountingPeriodCompany: "lines,accounting_period,company", - LinesCompany: "lines,company", - LinesEmployee: "lines,employee", - LinesEmployeeAccountingPeriod: "lines,employee,accounting_period", - LinesEmployeeAccountingPeriodCompany: "lines,employee,accounting_period,company", - LinesEmployeeCompany: "lines,employee,company", -} as const; -export type ExpenseReportsListRequestExpand = - (typeof ExpenseReportsListRequestExpand)[keyof typeof ExpenseReportsListRequestExpand]; diff --git a/src/api/resources/accounting/resources/expenseReports/types/ExpenseReportsRetrieveRequestExpand.ts b/src/api/resources/accounting/resources/expenseReports/types/ExpenseReportsRetrieveRequestExpand.ts deleted file mode 100644 index c014f3315..000000000 --- a/src/api/resources/accounting/resources/expenseReports/types/ExpenseReportsRetrieveRequestExpand.ts +++ /dev/null @@ -1,21 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export const ExpenseReportsRetrieveRequestExpand = { - AccountingPeriod: "accounting_period", - AccountingPeriodCompany: "accounting_period,company", - Company: "company", - Employee: "employee", - EmployeeAccountingPeriod: "employee,accounting_period", - EmployeeAccountingPeriodCompany: "employee,accounting_period,company", - EmployeeCompany: "employee,company", - Lines: "lines", - LinesAccountingPeriod: "lines,accounting_period", - LinesAccountingPeriodCompany: "lines,accounting_period,company", - LinesCompany: "lines,company", - LinesEmployee: "lines,employee", - LinesEmployeeAccountingPeriod: "lines,employee,accounting_period", - LinesEmployeeAccountingPeriodCompany: "lines,employee,accounting_period,company", - LinesEmployeeCompany: "lines,employee,company", -} as const; -export type ExpenseReportsRetrieveRequestExpand = - (typeof ExpenseReportsRetrieveRequestExpand)[keyof typeof ExpenseReportsRetrieveRequestExpand]; diff --git a/src/api/resources/accounting/resources/expenseReports/types/index.ts b/src/api/resources/accounting/resources/expenseReports/types/index.ts deleted file mode 100644 index 9dd83d9ba..000000000 --- a/src/api/resources/accounting/resources/expenseReports/types/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -export * from "./ExpenseReportsLinesListRequestExpand"; -export * from "./ExpenseReportsListRequestExpand"; -export * from "./ExpenseReportsRetrieveRequestExpand"; diff --git a/src/api/resources/accounting/resources/expenses/client/Client.ts b/src/api/resources/accounting/resources/expenses/client/Client.ts deleted file mode 100644 index be90d9323..000000000 --- a/src/api/resources/accounting/resources/expenses/client/Client.ts +++ /dev/null @@ -1,578 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../BaseClient"; -import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../../../BaseClient"; -import * as core from "../../../../../../core"; -import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../../../core/headers"; -import * as environments from "../../../../../../environments"; -import { handleNonStatusCodeError } from "../../../../../../errors/handleNonStatusCodeError"; -import * as errors from "../../../../../../errors/index"; -import * as serializers from "../../../../../../serialization/index"; -import type * as Merge from "../../../../../index"; - -export declare namespace ExpensesClient { - export type Options = BaseClientOptions; - - export interface RequestOptions extends BaseRequestOptions {} -} - -export class ExpensesClient { - protected readonly _options: NormalizedClientOptionsWithAuth; - - constructor(options: ExpensesClient.Options) { - this._options = normalizeClientOptionsWithAuth(options); - } - - /** - * Returns a list of `Expense` objects. - * - * @param {Merge.accounting.ExpensesListRequest} request - * @param {ExpensesClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.expenses.list({ - * companyId: "company_id", - * createdAfter: new Date("2024-01-15T09:30:00.000Z"), - * createdBefore: new Date("2024-01-15T09:30:00.000Z"), - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * expand: "account", - * includeDeletedData: true, - * includeRemoteData: true, - * includeRemoteFields: true, - * includeShellData: true, - * modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - * modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - * pageSize: 1, - * remoteId: "remote_id", - * transactionDateAfter: new Date("2024-01-15T09:30:00.000Z"), - * transactionDateBefore: new Date("2024-01-15T09:30:00.000Z") - * }) - */ - public list( - request: Merge.accounting.ExpensesListRequest = {}, - requestOptions?: ExpensesClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__list(request, requestOptions)); - } - - private async __list( - request: Merge.accounting.ExpensesListRequest = {}, - requestOptions?: ExpensesClient.RequestOptions, - ): Promise> { - const { - companyId, - createdAfter, - createdBefore, - cursor, - expand, - includeDeletedData, - includeRemoteData, - includeRemoteFields, - includeShellData, - modifiedAfter, - modifiedBefore, - pageSize, - remoteId, - transactionDateAfter, - transactionDateBefore, - } = request; - const _queryParams: Record = { - company_id: companyId, - created_after: createdAfter?.toISOString(), - created_before: createdBefore?.toISOString(), - cursor, - expand: - expand != null - ? serializers.accounting.ExpensesListRequestExpand.jsonOrThrow(expand, { - unrecognizedObjectKeys: "strip", - }) - : undefined, - include_deleted_data: includeDeletedData, - include_remote_data: includeRemoteData, - include_remote_fields: includeRemoteFields, - include_shell_data: includeShellData, - modified_after: modifiedAfter?.toISOString(), - modified_before: modifiedBefore?.toISOString(), - page_size: pageSize, - remote_id: remoteId, - transaction_date_after: transactionDateAfter?.toISOString(), - transaction_date_before: transactionDateBefore?.toISOString(), - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/expenses", - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaginatedExpenseList.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError(_response.error, _response.rawResponse, "GET", "/accounting/v1/expenses"); - } - - /** - * Creates an `Expense` object with the given values. - * - * @param {Merge.accounting.ExpenseEndpointRequest} request - * @param {ExpensesClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.expenses.create({ - * isDebugMode: true, - * runAsync: true, - * model: {} - * }) - */ - public create( - request: Merge.accounting.ExpenseEndpointRequest, - requestOptions?: ExpensesClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__create(request, requestOptions)); - } - - private async __create( - request: Merge.accounting.ExpenseEndpointRequest, - requestOptions?: ExpensesClient.RequestOptions, - ): Promise> { - const { isDebugMode, runAsync, ..._body } = request; - const _queryParams: Record = { - is_debug_mode: isDebugMode, - run_async: runAsync, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/expenses", - ), - method: "POST", - headers: _headers, - contentType: "application/json", - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - requestType: "json", - body: serializers.accounting.ExpenseEndpointRequest.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }), - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.ExpenseResponse.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError(_response.error, _response.rawResponse, "POST", "/accounting/v1/expenses"); - } - - /** - * Returns an `Expense` object with the given `id`. - * - * @param {string} id - * @param {Merge.accounting.ExpensesRetrieveRequest} request - * @param {ExpensesClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.expenses.retrieve("id", { - * expand: "account", - * includeRemoteData: true, - * includeRemoteFields: true, - * includeShellData: true - * }) - */ - public retrieve( - id: string, - request: Merge.accounting.ExpensesRetrieveRequest = {}, - requestOptions?: ExpensesClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__retrieve(id, request, requestOptions)); - } - - private async __retrieve( - id: string, - request: Merge.accounting.ExpensesRetrieveRequest = {}, - requestOptions?: ExpensesClient.RequestOptions, - ): Promise> { - const { expand, includeRemoteData, includeRemoteFields, includeShellData } = request; - const _queryParams: Record = { - expand: - expand != null - ? serializers.accounting.ExpensesRetrieveRequestExpand.jsonOrThrow(expand, { - unrecognizedObjectKeys: "strip", - }) - : undefined, - include_remote_data: includeRemoteData, - include_remote_fields: includeRemoteFields, - include_shell_data: includeShellData, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - `accounting/v1/expenses/${core.url.encodePathParam(id)}`, - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.Expense.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError(_response.error, _response.rawResponse, "GET", "/accounting/v1/expenses/{id}"); - } - - /** - * Returns a list of `RemoteFieldClass` objects. - * - * @param {Merge.accounting.ExpensesLinesRemoteFieldClassesListRequest} request - * @param {ExpensesClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.expenses.linesRemoteFieldClassesList({ - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * isCommonModelField: true, - * isCustom: true, - * pageSize: 1 - * }) - */ - public linesRemoteFieldClassesList( - request: Merge.accounting.ExpensesLinesRemoteFieldClassesListRequest = {}, - requestOptions?: ExpensesClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__linesRemoteFieldClassesList(request, requestOptions)); - } - - private async __linesRemoteFieldClassesList( - request: Merge.accounting.ExpensesLinesRemoteFieldClassesListRequest = {}, - requestOptions?: ExpensesClient.RequestOptions, - ): Promise> { - const { - cursor, - includeDeletedData, - includeRemoteData, - includeShellData, - isCommonModelField, - isCustom, - pageSize, - } = request; - const _queryParams: Record = { - cursor, - include_deleted_data: includeDeletedData, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - is_common_model_field: isCommonModelField, - is_custom: isCustom, - page_size: pageSize, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/expenses/lines/remote-field-classes", - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaginatedRemoteFieldClassList.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/expenses/lines/remote-field-classes", - ); - } - - /** - * Returns metadata for `Expense` POSTs. - * - * @param {ExpensesClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.expenses.metaPostRetrieve() - */ - public metaPostRetrieve( - requestOptions?: ExpensesClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__metaPostRetrieve(requestOptions)); - } - - private async __metaPostRetrieve( - requestOptions?: ExpensesClient.RequestOptions, - ): Promise> { - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/expenses/meta/post", - ), - method: "GET", - headers: _headers, - queryParameters: requestOptions?.queryParams, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.MetaResponse.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/expenses/meta/post", - ); - } - - /** - * Returns a list of `RemoteFieldClass` objects. - * - * @param {Merge.accounting.ExpensesRemoteFieldClassesListRequest} request - * @param {ExpensesClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.expenses.remoteFieldClassesList({ - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * isCommonModelField: true, - * isCustom: true, - * pageSize: 1 - * }) - */ - public remoteFieldClassesList( - request: Merge.accounting.ExpensesRemoteFieldClassesListRequest = {}, - requestOptions?: ExpensesClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__remoteFieldClassesList(request, requestOptions)); - } - - private async __remoteFieldClassesList( - request: Merge.accounting.ExpensesRemoteFieldClassesListRequest = {}, - requestOptions?: ExpensesClient.RequestOptions, - ): Promise> { - const { - cursor, - includeDeletedData, - includeRemoteData, - includeShellData, - isCommonModelField, - isCustom, - pageSize, - } = request; - const _queryParams: Record = { - cursor, - include_deleted_data: includeDeletedData, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - is_common_model_field: isCommonModelField, - is_custom: isCustom, - page_size: pageSize, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/expenses/remote-field-classes", - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaginatedRemoteFieldClassList.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/expenses/remote-field-classes", - ); - } -} diff --git a/src/api/resources/accounting/resources/expenses/client/index.ts b/src/api/resources/accounting/resources/expenses/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/api/resources/accounting/resources/expenses/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/api/resources/accounting/resources/expenses/client/requests/ExpenseEndpointRequest.ts b/src/api/resources/accounting/resources/expenses/client/requests/ExpenseEndpointRequest.ts deleted file mode 100644 index 43e2a4697..000000000 --- a/src/api/resources/accounting/resources/expenses/client/requests/ExpenseEndpointRequest.ts +++ /dev/null @@ -1,19 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * isDebugMode: true, - * runAsync: true, - * model: {} - * } - */ -export interface ExpenseEndpointRequest { - /** Whether to include debug fields (such as log file links) in the response. */ - isDebugMode?: boolean; - /** Whether or not third-party updates should be run asynchronously. */ - runAsync?: boolean; - model: Merge.accounting.ExpenseRequest; -} diff --git a/src/api/resources/accounting/resources/expenses/client/requests/ExpensesLinesRemoteFieldClassesListRequest.ts b/src/api/resources/accounting/resources/expenses/client/requests/ExpensesLinesRemoteFieldClassesListRequest.ts deleted file mode 100644 index 9b4833125..000000000 --- a/src/api/resources/accounting/resources/expenses/client/requests/ExpensesLinesRemoteFieldClassesListRequest.ts +++ /dev/null @@ -1,30 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * @example - * { - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * isCommonModelField: true, - * isCustom: true, - * pageSize: 1 - * } - */ -export interface ExpensesLinesRemoteFieldClassesListRequest { - /** The pagination cursor value. */ - cursor?: string; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - includeDeletedData?: boolean; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** If provided, will only return remote field classes with this is_common_model_field value */ - isCommonModelField?: boolean; - /** If provided, will only return remote fields classes with this is_custom value */ - isCustom?: boolean; - /** Number of results to return per page. */ - pageSize?: number; -} diff --git a/src/api/resources/accounting/resources/expenses/client/requests/ExpensesListRequest.ts b/src/api/resources/accounting/resources/expenses/client/requests/ExpensesListRequest.ts deleted file mode 100644 index c5af2dd41..000000000 --- a/src/api/resources/accounting/resources/expenses/client/requests/ExpensesListRequest.ts +++ /dev/null @@ -1,56 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * companyId: "company_id", - * createdAfter: new Date("2024-01-15T09:30:00.000Z"), - * createdBefore: new Date("2024-01-15T09:30:00.000Z"), - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * expand: "account", - * includeDeletedData: true, - * includeRemoteData: true, - * includeRemoteFields: true, - * includeShellData: true, - * modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - * modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - * pageSize: 1, - * remoteId: "remote_id", - * transactionDateAfter: new Date("2024-01-15T09:30:00.000Z"), - * transactionDateBefore: new Date("2024-01-15T09:30:00.000Z") - * } - */ -export interface ExpensesListRequest { - /** If provided, will only return expenses for this company. */ - companyId?: string; - /** If provided, will only return objects created after this datetime. */ - createdAfter?: Date; - /** If provided, will only return objects created before this datetime. */ - createdBefore?: Date; - /** The pagination cursor value. */ - cursor?: string; - /** Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. */ - expand?: Merge.accounting.ExpensesListRequestExpand; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - includeDeletedData?: boolean; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include all remote fields, including fields that Merge did not map to common models, in a normalized format. */ - includeRemoteFields?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** If provided, only objects synced by Merge after this date time will be returned. */ - modifiedAfter?: Date; - /** If provided, only objects synced by Merge before this date time will be returned. */ - modifiedBefore?: Date; - /** Number of results to return per page. */ - pageSize?: number; - /** The API provider's ID for the given object. */ - remoteId?: string; - /** If provided, will only return objects created after this datetime. */ - transactionDateAfter?: Date; - /** If provided, will only return objects created before this datetime. */ - transactionDateBefore?: Date; -} diff --git a/src/api/resources/accounting/resources/expenses/client/requests/ExpensesRemoteFieldClassesListRequest.ts b/src/api/resources/accounting/resources/expenses/client/requests/ExpensesRemoteFieldClassesListRequest.ts deleted file mode 100644 index 2185b8f00..000000000 --- a/src/api/resources/accounting/resources/expenses/client/requests/ExpensesRemoteFieldClassesListRequest.ts +++ /dev/null @@ -1,30 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * @example - * { - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * isCommonModelField: true, - * isCustom: true, - * pageSize: 1 - * } - */ -export interface ExpensesRemoteFieldClassesListRequest { - /** The pagination cursor value. */ - cursor?: string; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - includeDeletedData?: boolean; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** If provided, will only return remote field classes with this is_common_model_field value */ - isCommonModelField?: boolean; - /** If provided, will only return remote fields classes with this is_custom value */ - isCustom?: boolean; - /** Number of results to return per page. */ - pageSize?: number; -} diff --git a/src/api/resources/accounting/resources/expenses/client/requests/ExpensesRetrieveRequest.ts b/src/api/resources/accounting/resources/expenses/client/requests/ExpensesRetrieveRequest.ts deleted file mode 100644 index 02b7d25be..000000000 --- a/src/api/resources/accounting/resources/expenses/client/requests/ExpensesRetrieveRequest.ts +++ /dev/null @@ -1,23 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * expand: "account", - * includeRemoteData: true, - * includeRemoteFields: true, - * includeShellData: true - * } - */ -export interface ExpensesRetrieveRequest { - /** Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. */ - expand?: Merge.accounting.ExpensesRetrieveRequestExpand; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include all remote fields, including fields that Merge did not map to common models, in a normalized format. */ - includeRemoteFields?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; -} diff --git a/src/api/resources/accounting/resources/expenses/client/requests/index.ts b/src/api/resources/accounting/resources/expenses/client/requests/index.ts deleted file mode 100644 index 2ebb45939..000000000 --- a/src/api/resources/accounting/resources/expenses/client/requests/index.ts +++ /dev/null @@ -1,5 +0,0 @@ -export type { ExpenseEndpointRequest } from "./ExpenseEndpointRequest"; -export type { ExpensesLinesRemoteFieldClassesListRequest } from "./ExpensesLinesRemoteFieldClassesListRequest"; -export type { ExpensesListRequest } from "./ExpensesListRequest"; -export type { ExpensesRemoteFieldClassesListRequest } from "./ExpensesRemoteFieldClassesListRequest"; -export type { ExpensesRetrieveRequest } from "./ExpensesRetrieveRequest"; diff --git a/src/api/resources/accounting/resources/expenses/exports.ts b/src/api/resources/accounting/resources/expenses/exports.ts deleted file mode 100644 index 6206905dd..000000000 --- a/src/api/resources/accounting/resources/expenses/exports.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export { ExpensesClient } from "./client/Client"; -export * from "./client/index"; diff --git a/src/api/resources/accounting/resources/expenses/index.ts b/src/api/resources/accounting/resources/expenses/index.ts deleted file mode 100644 index d2ec2302c..000000000 --- a/src/api/resources/accounting/resources/expenses/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./client"; -export * from "./types"; diff --git a/src/api/resources/accounting/resources/expenses/types/ExpensesListRequestExpand.ts b/src/api/resources/accounting/resources/expenses/types/ExpensesListRequestExpand.ts deleted file mode 100644 index 199a965a6..000000000 --- a/src/api/resources/accounting/resources/expenses/types/ExpensesListRequestExpand.ts +++ /dev/null @@ -1,73 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export const ExpensesListRequestExpand = { - Account: "account", - AccountAccountingPeriod: "account,accounting_period", - AccountCompany: "account,company", - AccountCompanyAccountingPeriod: "account,company,accounting_period", - AccountCompanyEmployee: "account,company,employee", - AccountCompanyEmployeeAccountingPeriod: "account,company,employee,accounting_period", - AccountContact: "account,contact", - AccountContactAccountingPeriod: "account,contact,accounting_period", - AccountContactCompany: "account,contact,company", - AccountContactCompanyAccountingPeriod: "account,contact,company,accounting_period", - AccountContactCompanyEmployee: "account,contact,company,employee", - AccountContactCompanyEmployeeAccountingPeriod: "account,contact,company,employee,accounting_period", - AccountContactEmployee: "account,contact,employee", - AccountContactEmployeeAccountingPeriod: "account,contact,employee,accounting_period", - AccountEmployee: "account,employee", - AccountEmployeeAccountingPeriod: "account,employee,accounting_period", - AccountingPeriod: "accounting_period", - Company: "company", - CompanyAccountingPeriod: "company,accounting_period", - CompanyEmployee: "company,employee", - CompanyEmployeeAccountingPeriod: "company,employee,accounting_period", - Contact: "contact", - ContactAccountingPeriod: "contact,accounting_period", - ContactCompany: "contact,company", - ContactCompanyAccountingPeriod: "contact,company,accounting_period", - ContactCompanyEmployee: "contact,company,employee", - ContactCompanyEmployeeAccountingPeriod: "contact,company,employee,accounting_period", - ContactEmployee: "contact,employee", - ContactEmployeeAccountingPeriod: "contact,employee,accounting_period", - Employee: "employee", - EmployeeAccountingPeriod: "employee,accounting_period", - TrackingCategories: "tracking_categories", - TrackingCategoriesAccount: "tracking_categories,account", - TrackingCategoriesAccountAccountingPeriod: "tracking_categories,account,accounting_period", - TrackingCategoriesAccountCompany: "tracking_categories,account,company", - TrackingCategoriesAccountCompanyAccountingPeriod: "tracking_categories,account,company,accounting_period", - TrackingCategoriesAccountCompanyEmployee: "tracking_categories,account,company,employee", - TrackingCategoriesAccountCompanyEmployeeAccountingPeriod: - "tracking_categories,account,company,employee,accounting_period", - TrackingCategoriesAccountContact: "tracking_categories,account,contact", - TrackingCategoriesAccountContactAccountingPeriod: "tracking_categories,account,contact,accounting_period", - TrackingCategoriesAccountContactCompany: "tracking_categories,account,contact,company", - TrackingCategoriesAccountContactCompanyAccountingPeriod: - "tracking_categories,account,contact,company,accounting_period", - TrackingCategoriesAccountContactCompanyEmployee: "tracking_categories,account,contact,company,employee", - TrackingCategoriesAccountContactCompanyEmployeeAccountingPeriod: - "tracking_categories,account,contact,company,employee,accounting_period", - TrackingCategoriesAccountContactEmployee: "tracking_categories,account,contact,employee", - TrackingCategoriesAccountContactEmployeeAccountingPeriod: - "tracking_categories,account,contact,employee,accounting_period", - TrackingCategoriesAccountEmployee: "tracking_categories,account,employee", - TrackingCategoriesAccountEmployeeAccountingPeriod: "tracking_categories,account,employee,accounting_period", - TrackingCategoriesAccountingPeriod: "tracking_categories,accounting_period", - TrackingCategoriesCompany: "tracking_categories,company", - TrackingCategoriesCompanyAccountingPeriod: "tracking_categories,company,accounting_period", - TrackingCategoriesCompanyEmployee: "tracking_categories,company,employee", - TrackingCategoriesCompanyEmployeeAccountingPeriod: "tracking_categories,company,employee,accounting_period", - TrackingCategoriesContact: "tracking_categories,contact", - TrackingCategoriesContactAccountingPeriod: "tracking_categories,contact,accounting_period", - TrackingCategoriesContactCompany: "tracking_categories,contact,company", - TrackingCategoriesContactCompanyAccountingPeriod: "tracking_categories,contact,company,accounting_period", - TrackingCategoriesContactCompanyEmployee: "tracking_categories,contact,company,employee", - TrackingCategoriesContactCompanyEmployeeAccountingPeriod: - "tracking_categories,contact,company,employee,accounting_period", - TrackingCategoriesContactEmployee: "tracking_categories,contact,employee", - TrackingCategoriesContactEmployeeAccountingPeriod: "tracking_categories,contact,employee,accounting_period", - TrackingCategoriesEmployee: "tracking_categories,employee", - TrackingCategoriesEmployeeAccountingPeriod: "tracking_categories,employee,accounting_period", -} as const; -export type ExpensesListRequestExpand = (typeof ExpensesListRequestExpand)[keyof typeof ExpensesListRequestExpand]; diff --git a/src/api/resources/accounting/resources/expenses/types/ExpensesRetrieveRequestExpand.ts b/src/api/resources/accounting/resources/expenses/types/ExpensesRetrieveRequestExpand.ts deleted file mode 100644 index 6d942a9f8..000000000 --- a/src/api/resources/accounting/resources/expenses/types/ExpensesRetrieveRequestExpand.ts +++ /dev/null @@ -1,74 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export const ExpensesRetrieveRequestExpand = { - Account: "account", - AccountAccountingPeriod: "account,accounting_period", - AccountCompany: "account,company", - AccountCompanyAccountingPeriod: "account,company,accounting_period", - AccountCompanyEmployee: "account,company,employee", - AccountCompanyEmployeeAccountingPeriod: "account,company,employee,accounting_period", - AccountContact: "account,contact", - AccountContactAccountingPeriod: "account,contact,accounting_period", - AccountContactCompany: "account,contact,company", - AccountContactCompanyAccountingPeriod: "account,contact,company,accounting_period", - AccountContactCompanyEmployee: "account,contact,company,employee", - AccountContactCompanyEmployeeAccountingPeriod: "account,contact,company,employee,accounting_period", - AccountContactEmployee: "account,contact,employee", - AccountContactEmployeeAccountingPeriod: "account,contact,employee,accounting_period", - AccountEmployee: "account,employee", - AccountEmployeeAccountingPeriod: "account,employee,accounting_period", - AccountingPeriod: "accounting_period", - Company: "company", - CompanyAccountingPeriod: "company,accounting_period", - CompanyEmployee: "company,employee", - CompanyEmployeeAccountingPeriod: "company,employee,accounting_period", - Contact: "contact", - ContactAccountingPeriod: "contact,accounting_period", - ContactCompany: "contact,company", - ContactCompanyAccountingPeriod: "contact,company,accounting_period", - ContactCompanyEmployee: "contact,company,employee", - ContactCompanyEmployeeAccountingPeriod: "contact,company,employee,accounting_period", - ContactEmployee: "contact,employee", - ContactEmployeeAccountingPeriod: "contact,employee,accounting_period", - Employee: "employee", - EmployeeAccountingPeriod: "employee,accounting_period", - TrackingCategories: "tracking_categories", - TrackingCategoriesAccount: "tracking_categories,account", - TrackingCategoriesAccountAccountingPeriod: "tracking_categories,account,accounting_period", - TrackingCategoriesAccountCompany: "tracking_categories,account,company", - TrackingCategoriesAccountCompanyAccountingPeriod: "tracking_categories,account,company,accounting_period", - TrackingCategoriesAccountCompanyEmployee: "tracking_categories,account,company,employee", - TrackingCategoriesAccountCompanyEmployeeAccountingPeriod: - "tracking_categories,account,company,employee,accounting_period", - TrackingCategoriesAccountContact: "tracking_categories,account,contact", - TrackingCategoriesAccountContactAccountingPeriod: "tracking_categories,account,contact,accounting_period", - TrackingCategoriesAccountContactCompany: "tracking_categories,account,contact,company", - TrackingCategoriesAccountContactCompanyAccountingPeriod: - "tracking_categories,account,contact,company,accounting_period", - TrackingCategoriesAccountContactCompanyEmployee: "tracking_categories,account,contact,company,employee", - TrackingCategoriesAccountContactCompanyEmployeeAccountingPeriod: - "tracking_categories,account,contact,company,employee,accounting_period", - TrackingCategoriesAccountContactEmployee: "tracking_categories,account,contact,employee", - TrackingCategoriesAccountContactEmployeeAccountingPeriod: - "tracking_categories,account,contact,employee,accounting_period", - TrackingCategoriesAccountEmployee: "tracking_categories,account,employee", - TrackingCategoriesAccountEmployeeAccountingPeriod: "tracking_categories,account,employee,accounting_period", - TrackingCategoriesAccountingPeriod: "tracking_categories,accounting_period", - TrackingCategoriesCompany: "tracking_categories,company", - TrackingCategoriesCompanyAccountingPeriod: "tracking_categories,company,accounting_period", - TrackingCategoriesCompanyEmployee: "tracking_categories,company,employee", - TrackingCategoriesCompanyEmployeeAccountingPeriod: "tracking_categories,company,employee,accounting_period", - TrackingCategoriesContact: "tracking_categories,contact", - TrackingCategoriesContactAccountingPeriod: "tracking_categories,contact,accounting_period", - TrackingCategoriesContactCompany: "tracking_categories,contact,company", - TrackingCategoriesContactCompanyAccountingPeriod: "tracking_categories,contact,company,accounting_period", - TrackingCategoriesContactCompanyEmployee: "tracking_categories,contact,company,employee", - TrackingCategoriesContactCompanyEmployeeAccountingPeriod: - "tracking_categories,contact,company,employee,accounting_period", - TrackingCategoriesContactEmployee: "tracking_categories,contact,employee", - TrackingCategoriesContactEmployeeAccountingPeriod: "tracking_categories,contact,employee,accounting_period", - TrackingCategoriesEmployee: "tracking_categories,employee", - TrackingCategoriesEmployeeAccountingPeriod: "tracking_categories,employee,accounting_period", -} as const; -export type ExpensesRetrieveRequestExpand = - (typeof ExpensesRetrieveRequestExpand)[keyof typeof ExpensesRetrieveRequestExpand]; diff --git a/src/api/resources/accounting/resources/expenses/types/index.ts b/src/api/resources/accounting/resources/expenses/types/index.ts deleted file mode 100644 index 2a53835eb..000000000 --- a/src/api/resources/accounting/resources/expenses/types/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./ExpensesListRequestExpand"; -export * from "./ExpensesRetrieveRequestExpand"; diff --git a/src/api/resources/accounting/resources/fieldMapping/client/Client.ts b/src/api/resources/accounting/resources/fieldMapping/client/Client.ts deleted file mode 100644 index ed351dd21..000000000 --- a/src/api/resources/accounting/resources/fieldMapping/client/Client.ts +++ /dev/null @@ -1,480 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../BaseClient"; -import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../../../BaseClient"; -import * as core from "../../../../../../core"; -import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../../../core/headers"; -import * as environments from "../../../../../../environments"; -import { handleNonStatusCodeError } from "../../../../../../errors/handleNonStatusCodeError"; -import * as errors from "../../../../../../errors/index"; -import * as serializers from "../../../../../../serialization/index"; -import type * as Merge from "../../../../../index"; - -export declare namespace FieldMappingClient { - export type Options = BaseClientOptions; - - export interface RequestOptions extends BaseRequestOptions {} -} - -export class FieldMappingClient { - protected readonly _options: NormalizedClientOptionsWithAuth; - - constructor(options: FieldMappingClient.Options) { - this._options = normalizeClientOptionsWithAuth(options); - } - - /** - * Get all Field Mappings for this Linked Account. Field Mappings are mappings between third-party Remote Fields and user defined Merge fields. [Learn more](https://docs.merge.dev/supplemental-data/field-mappings/overview/). - * - * @param {Merge.accounting.FieldMappingsRetrieveRequest} request - * @param {FieldMappingClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.fieldMapping.fieldMappingsRetrieve({ - * excludeRemoteFieldMetadata: true - * }) - */ - public fieldMappingsRetrieve( - request: Merge.accounting.FieldMappingsRetrieveRequest = {}, - requestOptions?: FieldMappingClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__fieldMappingsRetrieve(request, requestOptions)); - } - - private async __fieldMappingsRetrieve( - request: Merge.accounting.FieldMappingsRetrieveRequest = {}, - requestOptions?: FieldMappingClient.RequestOptions, - ): Promise> { - const { excludeRemoteFieldMetadata } = request; - const _queryParams: Record = { - exclude_remote_field_metadata: excludeRemoteFieldMetadata, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/field-mappings", - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.FieldMappingApiInstanceResponse.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError(_response.error, _response.rawResponse, "GET", "/accounting/v1/field-mappings"); - } - - /** - * Create new Field Mappings that will be available after the next scheduled sync. This will cause the next sync for this Linked Account to sync **ALL** data from start. - * - * @param {Merge.accounting.CreateFieldMappingRequest} request - * @param {FieldMappingClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.fieldMapping.fieldMappingsCreate({ - * excludeRemoteFieldMetadata: true, - * targetFieldName: "example_target_field_name", - * targetFieldDescription: "this is a example description of the target field", - * remoteFieldTraversalPath: ["example_remote_field"], - * remoteMethod: "GET", - * remoteUrlPath: "/example-url-path", - * commonModelName: "ExampleCommonModel" - * }) - */ - public fieldMappingsCreate( - request: Merge.accounting.CreateFieldMappingRequest, - requestOptions?: FieldMappingClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__fieldMappingsCreate(request, requestOptions)); - } - - private async __fieldMappingsCreate( - request: Merge.accounting.CreateFieldMappingRequest, - requestOptions?: FieldMappingClient.RequestOptions, - ): Promise> { - const { excludeRemoteFieldMetadata, ..._body } = request; - const _queryParams: Record = { - exclude_remote_field_metadata: excludeRemoteFieldMetadata, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/field-mappings", - ), - method: "POST", - headers: _headers, - contentType: "application/json", - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - requestType: "json", - body: serializers.accounting.CreateFieldMappingRequest.jsonOrThrow(_body, { - unrecognizedObjectKeys: "strip", - }), - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.FieldMappingInstanceResponse.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "POST", - "/accounting/v1/field-mappings", - ); - } - - /** - * Deletes Field Mappings for a Linked Account. All data related to this Field Mapping will be deleted and these changes will be reflected after the next scheduled sync. This will cause the next sync for this Linked Account to sync **ALL** data from start. - * - * @param {string} field_mapping_id - * @param {FieldMappingClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.fieldMapping.fieldMappingsDestroy("field_mapping_id") - */ - public fieldMappingsDestroy( - field_mapping_id: string, - requestOptions?: FieldMappingClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__fieldMappingsDestroy(field_mapping_id, requestOptions)); - } - - private async __fieldMappingsDestroy( - field_mapping_id: string, - requestOptions?: FieldMappingClient.RequestOptions, - ): Promise> { - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - `accounting/v1/field-mappings/${core.url.encodePathParam(field_mapping_id)}`, - ), - method: "DELETE", - headers: _headers, - queryParameters: requestOptions?.queryParams, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.FieldMappingInstanceResponse.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "DELETE", - "/accounting/v1/field-mappings/{field_mapping_id}", - ); - } - - /** - * Create or update existing Field Mappings for a Linked Account. Changes will be reflected after the next scheduled sync. This will cause the next sync for this Linked Account to sync **ALL** data from start. - * - * @param {string} field_mapping_id - * @param {Merge.accounting.PatchedEditFieldMappingRequest} request - * @param {FieldMappingClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.fieldMapping.fieldMappingsPartialUpdate("field_mapping_id") - */ - public fieldMappingsPartialUpdate( - field_mapping_id: string, - request: Merge.accounting.PatchedEditFieldMappingRequest = {}, - requestOptions?: FieldMappingClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise( - this.__fieldMappingsPartialUpdate(field_mapping_id, request, requestOptions), - ); - } - - private async __fieldMappingsPartialUpdate( - field_mapping_id: string, - request: Merge.accounting.PatchedEditFieldMappingRequest = {}, - requestOptions?: FieldMappingClient.RequestOptions, - ): Promise> { - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - `accounting/v1/field-mappings/${core.url.encodePathParam(field_mapping_id)}`, - ), - method: "PATCH", - headers: _headers, - contentType: "application/json", - queryParameters: requestOptions?.queryParams, - requestType: "json", - body: serializers.accounting.PatchedEditFieldMappingRequest.jsonOrThrow(request, { - unrecognizedObjectKeys: "strip", - }), - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.FieldMappingInstanceResponse.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "PATCH", - "/accounting/v1/field-mappings/{field_mapping_id}", - ); - } - - /** - * Get all remote fields for a Linked Account. Remote fields are third-party fields that are accessible after initial sync if remote_data is enabled. You can use remote fields to override existing Merge fields or map a new Merge field. [Learn more](https://docs.merge.dev/supplemental-data/field-mappings/overview/). - * - * @param {Merge.accounting.RemoteFieldsRetrieveRequest} request - * @param {FieldMappingClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.fieldMapping.remoteFieldsRetrieve({ - * commonModels: "common_models", - * includeExampleValues: "include_example_values" - * }) - */ - public remoteFieldsRetrieve( - request: Merge.accounting.RemoteFieldsRetrieveRequest = {}, - requestOptions?: FieldMappingClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__remoteFieldsRetrieve(request, requestOptions)); - } - - private async __remoteFieldsRetrieve( - request: Merge.accounting.RemoteFieldsRetrieveRequest = {}, - requestOptions?: FieldMappingClient.RequestOptions, - ): Promise> { - const { commonModels, includeExampleValues } = request; - const _queryParams: Record = { - common_models: commonModels, - include_example_values: includeExampleValues, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/remote-fields", - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.RemoteFieldApiResponse.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError(_response.error, _response.rawResponse, "GET", "/accounting/v1/remote-fields"); - } - - /** - * Get all organization-wide Target Fields, this will not include any Linked Account specific Target Fields. Organization-wide Target Fields are additional fields appended to the Merge Common Model for all Linked Accounts in a category. [Learn more](https://docs.merge.dev/supplemental-data/field-mappings/target-fields/). - * - * @param {FieldMappingClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.fieldMapping.targetFieldsRetrieve() - */ - public targetFieldsRetrieve( - requestOptions?: FieldMappingClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__targetFieldsRetrieve(requestOptions)); - } - - private async __targetFieldsRetrieve( - requestOptions?: FieldMappingClient.RequestOptions, - ): Promise> { - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/target-fields", - ), - method: "GET", - headers: _headers, - queryParameters: requestOptions?.queryParams, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.ExternalTargetFieldApiResponse.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError(_response.error, _response.rawResponse, "GET", "/accounting/v1/target-fields"); - } -} diff --git a/src/api/resources/accounting/resources/fieldMapping/client/index.ts b/src/api/resources/accounting/resources/fieldMapping/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/api/resources/accounting/resources/fieldMapping/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/api/resources/accounting/resources/fieldMapping/client/requests/CreateFieldMappingRequest.ts b/src/api/resources/accounting/resources/fieldMapping/client/requests/CreateFieldMappingRequest.ts deleted file mode 100644 index e711ea5fc..000000000 --- a/src/api/resources/accounting/resources/fieldMapping/client/requests/CreateFieldMappingRequest.ts +++ /dev/null @@ -1,30 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * @example - * { - * excludeRemoteFieldMetadata: true, - * targetFieldName: "example_target_field_name", - * targetFieldDescription: "this is a example description of the target field", - * remoteFieldTraversalPath: ["example_remote_field"], - * remoteMethod: "GET", - * remoteUrlPath: "/example-url-path", - * commonModelName: "ExampleCommonModel" - * } - */ -export interface CreateFieldMappingRequest { - /** If `true`, remote fields metadata is excluded from each field mapping instance (i.e. `remote_fields.remote_key_name` and `remote_fields.schema` will be null). This will increase the speed of the request since these fields require some calculations. */ - excludeRemoteFieldMetadata?: boolean; - /** The name of the target field you want this remote field to map to. */ - targetFieldName: string; - /** The description of the target field you want this remote field to map to. */ - targetFieldDescription: string; - /** The field traversal path of the remote field listed when you hit the GET /remote-fields endpoint. */ - remoteFieldTraversalPath: unknown[]; - /** The method of the remote endpoint where the remote field is coming from. */ - remoteMethod: string; - /** The path of the remote endpoint where the remote field is coming from. */ - remoteUrlPath: string; - /** The name of the Common Model that the remote field corresponds to in a given category. */ - commonModelName: string; -} diff --git a/src/api/resources/accounting/resources/fieldMapping/client/requests/FieldMappingsRetrieveRequest.ts b/src/api/resources/accounting/resources/fieldMapping/client/requests/FieldMappingsRetrieveRequest.ts deleted file mode 100644 index 7235c6e26..000000000 --- a/src/api/resources/accounting/resources/fieldMapping/client/requests/FieldMappingsRetrieveRequest.ts +++ /dev/null @@ -1,12 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * @example - * { - * excludeRemoteFieldMetadata: true - * } - */ -export interface FieldMappingsRetrieveRequest { - /** If `true`, remote fields metadata is excluded from each field mapping instance (i.e. `remote_fields.remote_key_name` and `remote_fields.schema` will be null). This will increase the speed of the request since these fields require some calculations. */ - excludeRemoteFieldMetadata?: boolean; -} diff --git a/src/api/resources/accounting/resources/fieldMapping/client/requests/PatchedEditFieldMappingRequest.ts b/src/api/resources/accounting/resources/fieldMapping/client/requests/PatchedEditFieldMappingRequest.ts deleted file mode 100644 index 0efe65466..000000000 --- a/src/api/resources/accounting/resources/fieldMapping/client/requests/PatchedEditFieldMappingRequest.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * @example - * {} - */ -export interface PatchedEditFieldMappingRequest { - /** The field traversal path of the remote field listed when you hit the GET /remote-fields endpoint. */ - remoteFieldTraversalPath?: unknown[]; - /** The method of the remote endpoint where the remote field is coming from. */ - remoteMethod?: string; - /** The path of the remote endpoint where the remote field is coming from. */ - remoteUrlPath?: string; -} diff --git a/src/api/resources/accounting/resources/fieldMapping/client/requests/RemoteFieldsRetrieveRequest.ts b/src/api/resources/accounting/resources/fieldMapping/client/requests/RemoteFieldsRetrieveRequest.ts deleted file mode 100644 index 99718436d..000000000 --- a/src/api/resources/accounting/resources/fieldMapping/client/requests/RemoteFieldsRetrieveRequest.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * @example - * { - * commonModels: "common_models", - * includeExampleValues: "include_example_values" - * } - */ -export interface RemoteFieldsRetrieveRequest { - /** A comma seperated list of Common Model names. If included, will only return Remote Fields for those Common Models. */ - commonModels?: string; - /** If true, will include example values, where available, for remote fields in the 3rd party platform. These examples come from active data from your customers. */ - includeExampleValues?: string; -} diff --git a/src/api/resources/accounting/resources/fieldMapping/client/requests/index.ts b/src/api/resources/accounting/resources/fieldMapping/client/requests/index.ts deleted file mode 100644 index 1b7bf82f2..000000000 --- a/src/api/resources/accounting/resources/fieldMapping/client/requests/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -export type { CreateFieldMappingRequest } from "./CreateFieldMappingRequest"; -export type { FieldMappingsRetrieveRequest } from "./FieldMappingsRetrieveRequest"; -export type { PatchedEditFieldMappingRequest } from "./PatchedEditFieldMappingRequest"; -export type { RemoteFieldsRetrieveRequest } from "./RemoteFieldsRetrieveRequest"; diff --git a/src/api/resources/accounting/resources/fieldMapping/exports.ts b/src/api/resources/accounting/resources/fieldMapping/exports.ts deleted file mode 100644 index 62e814785..000000000 --- a/src/api/resources/accounting/resources/fieldMapping/exports.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export { FieldMappingClient } from "./client/Client"; -export * from "./client/index"; diff --git a/src/api/resources/accounting/resources/fieldMapping/index.ts b/src/api/resources/accounting/resources/fieldMapping/index.ts deleted file mode 100644 index 5ec76921e..000000000 --- a/src/api/resources/accounting/resources/fieldMapping/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./client"; diff --git a/src/api/resources/accounting/resources/forceResync/client/Client.ts b/src/api/resources/accounting/resources/forceResync/client/Client.ts deleted file mode 100644 index 73a3adef1..000000000 --- a/src/api/resources/accounting/resources/forceResync/client/Client.ts +++ /dev/null @@ -1,94 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../BaseClient"; -import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../../../BaseClient"; -import * as core from "../../../../../../core"; -import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../../../core/headers"; -import * as environments from "../../../../../../environments"; -import { handleNonStatusCodeError } from "../../../../../../errors/handleNonStatusCodeError"; -import * as errors from "../../../../../../errors/index"; -import * as serializers from "../../../../../../serialization/index"; -import type * as Merge from "../../../../../index"; - -export declare namespace ForceResyncClient { - export type Options = BaseClientOptions; - - export interface RequestOptions extends BaseRequestOptions {} -} - -export class ForceResyncClient { - protected readonly _options: NormalizedClientOptionsWithAuth; - - constructor(options: ForceResyncClient.Options) { - this._options = normalizeClientOptionsWithAuth(options); - } - - /** - * Force re-sync of all models. This endpoint is available for monthly, quarterly, and highest sync frequency customers on the Professional or Enterprise plans. Doing so will consume a sync credit for the relevant linked account. Force re-syncs can also be triggered manually in the Merge Dashboard and is available for all customers. - * - * @param {ForceResyncClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.forceResync.syncStatusResyncCreate() - */ - public syncStatusResyncCreate( - requestOptions?: ForceResyncClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__syncStatusResyncCreate(requestOptions)); - } - - private async __syncStatusResyncCreate( - requestOptions?: ForceResyncClient.RequestOptions, - ): Promise> { - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/sync-status/resync", - ), - method: "POST", - headers: _headers, - queryParameters: requestOptions?.queryParams, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.forceResync.syncStatusResyncCreate.Response.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "POST", - "/accounting/v1/sync-status/resync", - ); - } -} diff --git a/src/api/resources/accounting/resources/forceResync/client/index.ts b/src/api/resources/accounting/resources/forceResync/client/index.ts deleted file mode 100644 index cb0ff5c3b..000000000 --- a/src/api/resources/accounting/resources/forceResync/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export {}; diff --git a/src/api/resources/accounting/resources/forceResync/exports.ts b/src/api/resources/accounting/resources/forceResync/exports.ts deleted file mode 100644 index e9e97915f..000000000 --- a/src/api/resources/accounting/resources/forceResync/exports.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export { ForceResyncClient } from "./client/Client"; -export * from "./client/index"; diff --git a/src/api/resources/accounting/resources/forceResync/index.ts b/src/api/resources/accounting/resources/forceResync/index.ts deleted file mode 100644 index 5ec76921e..000000000 --- a/src/api/resources/accounting/resources/forceResync/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./client"; diff --git a/src/api/resources/accounting/resources/generalLedgerTransactions/client/Client.ts b/src/api/resources/accounting/resources/generalLedgerTransactions/client/Client.ts deleted file mode 100644 index 7a475e586..000000000 --- a/src/api/resources/accounting/resources/generalLedgerTransactions/client/Client.ts +++ /dev/null @@ -1,239 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../BaseClient"; -import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../../../BaseClient"; -import * as core from "../../../../../../core"; -import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../../../core/headers"; -import * as environments from "../../../../../../environments"; -import { handleNonStatusCodeError } from "../../../../../../errors/handleNonStatusCodeError"; -import * as errors from "../../../../../../errors/index"; -import * as serializers from "../../../../../../serialization/index"; -import type * as Merge from "../../../../../index"; - -export declare namespace GeneralLedgerTransactionsClient { - export type Options = BaseClientOptions; - - export interface RequestOptions extends BaseRequestOptions {} -} - -export class GeneralLedgerTransactionsClient { - protected readonly _options: NormalizedClientOptionsWithAuth; - - constructor(options: GeneralLedgerTransactionsClient.Options) { - this._options = normalizeClientOptionsWithAuth(options); - } - - /** - * Returns a list of `GeneralLedgerTransaction` objects. - * - * @param {Merge.accounting.GeneralLedgerTransactionsListRequest} request - * @param {GeneralLedgerTransactionsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.generalLedgerTransactions.list({ - * companyId: "company_id", - * createdAfter: new Date("2024-01-15T09:30:00.000Z"), - * createdBefore: new Date("2024-01-15T09:30:00.000Z"), - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * expand: "accounting_period", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - * modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - * pageSize: 1, - * postedDateAfter: new Date("2024-01-15T09:30:00.000Z"), - * postedDateBefore: new Date("2024-01-15T09:30:00.000Z"), - * remoteId: "remote_id" - * }) - */ - public list( - request: Merge.accounting.GeneralLedgerTransactionsListRequest = {}, - requestOptions?: GeneralLedgerTransactionsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__list(request, requestOptions)); - } - - private async __list( - request: Merge.accounting.GeneralLedgerTransactionsListRequest = {}, - requestOptions?: GeneralLedgerTransactionsClient.RequestOptions, - ): Promise> { - const { - companyId, - createdAfter, - createdBefore, - cursor, - expand, - includeDeletedData, - includeRemoteData, - includeShellData, - modifiedAfter, - modifiedBefore, - pageSize, - postedDateAfter, - postedDateBefore, - remoteId, - } = request; - const _queryParams: Record = { - company_id: companyId, - created_after: createdAfter?.toISOString(), - created_before: createdBefore?.toISOString(), - cursor, - expand: - expand != null - ? serializers.accounting.GeneralLedgerTransactionsListRequestExpand.jsonOrThrow(expand, { - unrecognizedObjectKeys: "strip", - }) - : undefined, - include_deleted_data: includeDeletedData, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - modified_after: modifiedAfter?.toISOString(), - modified_before: modifiedBefore?.toISOString(), - page_size: pageSize, - posted_date_after: postedDateAfter?.toISOString(), - posted_date_before: postedDateBefore?.toISOString(), - remote_id: remoteId, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/general-ledger-transactions", - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaginatedGeneralLedgerTransactionList.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/general-ledger-transactions", - ); - } - - /** - * Returns a `GeneralLedgerTransaction` object with the given `id`. - * - * @param {string} id - * @param {Merge.accounting.GeneralLedgerTransactionsRetrieveRequest} request - * @param {GeneralLedgerTransactionsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.generalLedgerTransactions.retrieve("id", { - * expand: "accounting_period", - * includeRemoteData: true, - * includeShellData: true - * }) - */ - public retrieve( - id: string, - request: Merge.accounting.GeneralLedgerTransactionsRetrieveRequest = {}, - requestOptions?: GeneralLedgerTransactionsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__retrieve(id, request, requestOptions)); - } - - private async __retrieve( - id: string, - request: Merge.accounting.GeneralLedgerTransactionsRetrieveRequest = {}, - requestOptions?: GeneralLedgerTransactionsClient.RequestOptions, - ): Promise> { - const { expand, includeRemoteData, includeShellData } = request; - const _queryParams: Record = { - expand: - expand != null - ? serializers.accounting.GeneralLedgerTransactionsRetrieveRequestExpand.jsonOrThrow(expand, { - unrecognizedObjectKeys: "strip", - }) - : undefined, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - `accounting/v1/general-ledger-transactions/${core.url.encodePathParam(id)}`, - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.GeneralLedgerTransaction.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/general-ledger-transactions/{id}", - ); - } -} diff --git a/src/api/resources/accounting/resources/generalLedgerTransactions/client/index.ts b/src/api/resources/accounting/resources/generalLedgerTransactions/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/api/resources/accounting/resources/generalLedgerTransactions/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/api/resources/accounting/resources/generalLedgerTransactions/client/requests/GeneralLedgerTransactionsListRequest.ts b/src/api/resources/accounting/resources/generalLedgerTransactions/client/requests/GeneralLedgerTransactionsListRequest.ts deleted file mode 100644 index cc65774fd..000000000 --- a/src/api/resources/accounting/resources/generalLedgerTransactions/client/requests/GeneralLedgerTransactionsListRequest.ts +++ /dev/null @@ -1,53 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * companyId: "company_id", - * createdAfter: new Date("2024-01-15T09:30:00.000Z"), - * createdBefore: new Date("2024-01-15T09:30:00.000Z"), - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * expand: "accounting_period", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - * modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - * pageSize: 1, - * postedDateAfter: new Date("2024-01-15T09:30:00.000Z"), - * postedDateBefore: new Date("2024-01-15T09:30:00.000Z"), - * remoteId: "remote_id" - * } - */ -export interface GeneralLedgerTransactionsListRequest { - /** If provided, will only return general ledger transactions for this company. */ - companyId?: string; - /** If provided, will only return objects created after this datetime. */ - createdAfter?: Date; - /** If provided, will only return objects created before this datetime. */ - createdBefore?: Date; - /** The pagination cursor value. */ - cursor?: string; - /** Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. */ - expand?: Merge.accounting.GeneralLedgerTransactionsListRequestExpand; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - includeDeletedData?: boolean; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** If provided, only objects synced by Merge after this date time will be returned. */ - modifiedAfter?: Date; - /** If provided, only objects synced by Merge before this date time will be returned. */ - modifiedBefore?: Date; - /** Number of results to return per page. */ - pageSize?: number; - /** If provided, will only return objects posted after this datetime. */ - postedDateAfter?: Date; - /** If provided, will only return objects posted before this datetime. */ - postedDateBefore?: Date; - /** The API provider's ID for the given object. */ - remoteId?: string; -} diff --git a/src/api/resources/accounting/resources/generalLedgerTransactions/client/requests/GeneralLedgerTransactionsRetrieveRequest.ts b/src/api/resources/accounting/resources/generalLedgerTransactions/client/requests/GeneralLedgerTransactionsRetrieveRequest.ts deleted file mode 100644 index 8107472a3..000000000 --- a/src/api/resources/accounting/resources/generalLedgerTransactions/client/requests/GeneralLedgerTransactionsRetrieveRequest.ts +++ /dev/null @@ -1,20 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * expand: "accounting_period", - * includeRemoteData: true, - * includeShellData: true - * } - */ -export interface GeneralLedgerTransactionsRetrieveRequest { - /** Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. */ - expand?: Merge.accounting.GeneralLedgerTransactionsRetrieveRequestExpand; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; -} diff --git a/src/api/resources/accounting/resources/generalLedgerTransactions/client/requests/index.ts b/src/api/resources/accounting/resources/generalLedgerTransactions/client/requests/index.ts deleted file mode 100644 index 33112d702..000000000 --- a/src/api/resources/accounting/resources/generalLedgerTransactions/client/requests/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export type { GeneralLedgerTransactionsListRequest } from "./GeneralLedgerTransactionsListRequest"; -export type { GeneralLedgerTransactionsRetrieveRequest } from "./GeneralLedgerTransactionsRetrieveRequest"; diff --git a/src/api/resources/accounting/resources/generalLedgerTransactions/exports.ts b/src/api/resources/accounting/resources/generalLedgerTransactions/exports.ts deleted file mode 100644 index 699d27542..000000000 --- a/src/api/resources/accounting/resources/generalLedgerTransactions/exports.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export { GeneralLedgerTransactionsClient } from "./client/Client"; -export * from "./client/index"; diff --git a/src/api/resources/accounting/resources/generalLedgerTransactions/index.ts b/src/api/resources/accounting/resources/generalLedgerTransactions/index.ts deleted file mode 100644 index d2ec2302c..000000000 --- a/src/api/resources/accounting/resources/generalLedgerTransactions/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./client"; -export * from "./types"; diff --git a/src/api/resources/accounting/resources/generalLedgerTransactions/types/GeneralLedgerTransactionsListRequestExpand.ts b/src/api/resources/accounting/resources/generalLedgerTransactions/types/GeneralLedgerTransactionsListRequestExpand.ts deleted file mode 100644 index 5502ad348..000000000 --- a/src/api/resources/accounting/resources/generalLedgerTransactions/types/GeneralLedgerTransactionsListRequestExpand.ts +++ /dev/null @@ -1,24 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export const GeneralLedgerTransactionsListRequestExpand = { - AccountingPeriod: "accounting_period", - Company: "company", - CompanyAccountingPeriod: "company,accounting_period", - GeneralLedgerTransactionLines: "general_ledger_transaction_lines", - GeneralLedgerTransactionLinesAccountingPeriod: "general_ledger_transaction_lines,accounting_period", - GeneralLedgerTransactionLinesCompany: "general_ledger_transaction_lines,company", - GeneralLedgerTransactionLinesCompanyAccountingPeriod: "general_ledger_transaction_lines,company,accounting_period", - TrackingCategories: "tracking_categories", - TrackingCategoriesAccountingPeriod: "tracking_categories,accounting_period", - TrackingCategoriesCompany: "tracking_categories,company", - TrackingCategoriesCompanyAccountingPeriod: "tracking_categories,company,accounting_period", - TrackingCategoriesGeneralLedgerTransactionLines: "tracking_categories,general_ledger_transaction_lines", - TrackingCategoriesGeneralLedgerTransactionLinesAccountingPeriod: - "tracking_categories,general_ledger_transaction_lines,accounting_period", - TrackingCategoriesGeneralLedgerTransactionLinesCompany: - "tracking_categories,general_ledger_transaction_lines,company", - TrackingCategoriesGeneralLedgerTransactionLinesCompanyAccountingPeriod: - "tracking_categories,general_ledger_transaction_lines,company,accounting_period", -} as const; -export type GeneralLedgerTransactionsListRequestExpand = - (typeof GeneralLedgerTransactionsListRequestExpand)[keyof typeof GeneralLedgerTransactionsListRequestExpand]; diff --git a/src/api/resources/accounting/resources/generalLedgerTransactions/types/GeneralLedgerTransactionsRetrieveRequestExpand.ts b/src/api/resources/accounting/resources/generalLedgerTransactions/types/GeneralLedgerTransactionsRetrieveRequestExpand.ts deleted file mode 100644 index 3f4d5eb74..000000000 --- a/src/api/resources/accounting/resources/generalLedgerTransactions/types/GeneralLedgerTransactionsRetrieveRequestExpand.ts +++ /dev/null @@ -1,24 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export const GeneralLedgerTransactionsRetrieveRequestExpand = { - AccountingPeriod: "accounting_period", - Company: "company", - CompanyAccountingPeriod: "company,accounting_period", - GeneralLedgerTransactionLines: "general_ledger_transaction_lines", - GeneralLedgerTransactionLinesAccountingPeriod: "general_ledger_transaction_lines,accounting_period", - GeneralLedgerTransactionLinesCompany: "general_ledger_transaction_lines,company", - GeneralLedgerTransactionLinesCompanyAccountingPeriod: "general_ledger_transaction_lines,company,accounting_period", - TrackingCategories: "tracking_categories", - TrackingCategoriesAccountingPeriod: "tracking_categories,accounting_period", - TrackingCategoriesCompany: "tracking_categories,company", - TrackingCategoriesCompanyAccountingPeriod: "tracking_categories,company,accounting_period", - TrackingCategoriesGeneralLedgerTransactionLines: "tracking_categories,general_ledger_transaction_lines", - TrackingCategoriesGeneralLedgerTransactionLinesAccountingPeriod: - "tracking_categories,general_ledger_transaction_lines,accounting_period", - TrackingCategoriesGeneralLedgerTransactionLinesCompany: - "tracking_categories,general_ledger_transaction_lines,company", - TrackingCategoriesGeneralLedgerTransactionLinesCompanyAccountingPeriod: - "tracking_categories,general_ledger_transaction_lines,company,accounting_period", -} as const; -export type GeneralLedgerTransactionsRetrieveRequestExpand = - (typeof GeneralLedgerTransactionsRetrieveRequestExpand)[keyof typeof GeneralLedgerTransactionsRetrieveRequestExpand]; diff --git a/src/api/resources/accounting/resources/generalLedgerTransactions/types/index.ts b/src/api/resources/accounting/resources/generalLedgerTransactions/types/index.ts deleted file mode 100644 index e77fb4471..000000000 --- a/src/api/resources/accounting/resources/generalLedgerTransactions/types/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./GeneralLedgerTransactionsListRequestExpand"; -export * from "./GeneralLedgerTransactionsRetrieveRequestExpand"; diff --git a/src/api/resources/accounting/resources/generateKey/client/Client.ts b/src/api/resources/accounting/resources/generateKey/client/Client.ts deleted file mode 100644 index 748e7d41c..000000000 --- a/src/api/resources/accounting/resources/generateKey/client/Client.ts +++ /dev/null @@ -1,99 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../BaseClient"; -import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../../../BaseClient"; -import * as core from "../../../../../../core"; -import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../../../core/headers"; -import * as environments from "../../../../../../environments"; -import { handleNonStatusCodeError } from "../../../../../../errors/handleNonStatusCodeError"; -import * as errors from "../../../../../../errors/index"; -import * as serializers from "../../../../../../serialization/index"; -import type * as Merge from "../../../../../index"; - -export declare namespace GenerateKeyClient { - export type Options = BaseClientOptions; - - export interface RequestOptions extends BaseRequestOptions {} -} - -export class GenerateKeyClient { - protected readonly _options: NormalizedClientOptionsWithAuth; - - constructor(options: GenerateKeyClient.Options) { - this._options = normalizeClientOptionsWithAuth(options); - } - - /** - * Create a remote key. - * - * @param {Merge.accounting.GenerateRemoteKeyRequest} request - * @param {GenerateKeyClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.generateKey.create({ - * name: "Remote Deployment Key 1" - * }) - */ - public create( - request: Merge.accounting.GenerateRemoteKeyRequest, - requestOptions?: GenerateKeyClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__create(request, requestOptions)); - } - - private async __create( - request: Merge.accounting.GenerateRemoteKeyRequest, - requestOptions?: GenerateKeyClient.RequestOptions, - ): Promise> { - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/generate-key", - ), - method: "POST", - headers: _headers, - contentType: "application/json", - queryParameters: requestOptions?.queryParams, - requestType: "json", - body: serializers.accounting.GenerateRemoteKeyRequest.jsonOrThrow(request, { - unrecognizedObjectKeys: "strip", - }), - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.RemoteKey.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError(_response.error, _response.rawResponse, "POST", "/accounting/v1/generate-key"); - } -} diff --git a/src/api/resources/accounting/resources/generateKey/client/index.ts b/src/api/resources/accounting/resources/generateKey/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/api/resources/accounting/resources/generateKey/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/api/resources/accounting/resources/generateKey/client/requests/GenerateRemoteKeyRequest.ts b/src/api/resources/accounting/resources/generateKey/client/requests/GenerateRemoteKeyRequest.ts deleted file mode 100644 index 923e28af4..000000000 --- a/src/api/resources/accounting/resources/generateKey/client/requests/GenerateRemoteKeyRequest.ts +++ /dev/null @@ -1,12 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * @example - * { - * name: "Remote Deployment Key 1" - * } - */ -export interface GenerateRemoteKeyRequest { - /** The name of the remote key */ - name: string; -} diff --git a/src/api/resources/accounting/resources/generateKey/client/requests/index.ts b/src/api/resources/accounting/resources/generateKey/client/requests/index.ts deleted file mode 100644 index 61b0bc4ac..000000000 --- a/src/api/resources/accounting/resources/generateKey/client/requests/index.ts +++ /dev/null @@ -1 +0,0 @@ -export type { GenerateRemoteKeyRequest } from "./GenerateRemoteKeyRequest"; diff --git a/src/api/resources/accounting/resources/generateKey/exports.ts b/src/api/resources/accounting/resources/generateKey/exports.ts deleted file mode 100644 index e6761067f..000000000 --- a/src/api/resources/accounting/resources/generateKey/exports.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export { GenerateKeyClient } from "./client/Client"; -export * from "./client/index"; diff --git a/src/api/resources/accounting/resources/generateKey/index.ts b/src/api/resources/accounting/resources/generateKey/index.ts deleted file mode 100644 index 5ec76921e..000000000 --- a/src/api/resources/accounting/resources/generateKey/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./client"; diff --git a/src/api/resources/accounting/resources/incomeStatements/client/Client.ts b/src/api/resources/accounting/resources/incomeStatements/client/Client.ts deleted file mode 100644 index 9f72f7a11..000000000 --- a/src/api/resources/accounting/resources/incomeStatements/client/Client.ts +++ /dev/null @@ -1,223 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../BaseClient"; -import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../../../BaseClient"; -import * as core from "../../../../../../core"; -import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../../../core/headers"; -import * as environments from "../../../../../../environments"; -import { handleNonStatusCodeError } from "../../../../../../errors/handleNonStatusCodeError"; -import * as errors from "../../../../../../errors/index"; -import * as serializers from "../../../../../../serialization/index"; -import type * as Merge from "../../../../../index"; - -export declare namespace IncomeStatementsClient { - export type Options = BaseClientOptions; - - export interface RequestOptions extends BaseRequestOptions {} -} - -export class IncomeStatementsClient { - protected readonly _options: NormalizedClientOptionsWithAuth; - - constructor(options: IncomeStatementsClient.Options) { - this._options = normalizeClientOptionsWithAuth(options); - } - - /** - * Returns a list of `IncomeStatement` objects. - * - * @param {Merge.accounting.IncomeStatementsListRequest} request - * @param {IncomeStatementsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.incomeStatements.list({ - * companyId: "company_id", - * createdAfter: new Date("2024-01-15T09:30:00.000Z"), - * createdBefore: new Date("2024-01-15T09:30:00.000Z"), - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * expand: "company", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - * modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - * pageSize: 1, - * remoteId: "remote_id" - * }) - */ - public list( - request: Merge.accounting.IncomeStatementsListRequest = {}, - requestOptions?: IncomeStatementsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__list(request, requestOptions)); - } - - private async __list( - request: Merge.accounting.IncomeStatementsListRequest = {}, - requestOptions?: IncomeStatementsClient.RequestOptions, - ): Promise> { - const { - companyId, - createdAfter, - createdBefore, - cursor, - expand, - includeDeletedData, - includeRemoteData, - includeShellData, - modifiedAfter, - modifiedBefore, - pageSize, - remoteId, - } = request; - const _queryParams: Record = { - company_id: companyId, - created_after: createdAfter?.toISOString(), - created_before: createdBefore?.toISOString(), - cursor, - expand: expand != null ? expand : undefined, - include_deleted_data: includeDeletedData, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - modified_after: modifiedAfter?.toISOString(), - modified_before: modifiedBefore?.toISOString(), - page_size: pageSize, - remote_id: remoteId, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/income-statements", - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaginatedIncomeStatementList.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/income-statements", - ); - } - - /** - * Returns an `IncomeStatement` object with the given `id`. - * - * @param {string} id - * @param {Merge.accounting.IncomeStatementsRetrieveRequest} request - * @param {IncomeStatementsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.incomeStatements.retrieve("id", { - * expand: "company", - * includeRemoteData: true, - * includeShellData: true - * }) - */ - public retrieve( - id: string, - request: Merge.accounting.IncomeStatementsRetrieveRequest = {}, - requestOptions?: IncomeStatementsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__retrieve(id, request, requestOptions)); - } - - private async __retrieve( - id: string, - request: Merge.accounting.IncomeStatementsRetrieveRequest = {}, - requestOptions?: IncomeStatementsClient.RequestOptions, - ): Promise> { - const { expand, includeRemoteData, includeShellData } = request; - const _queryParams: Record = { - expand: expand != null ? expand : undefined, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - `accounting/v1/income-statements/${core.url.encodePathParam(id)}`, - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.IncomeStatement.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/income-statements/{id}", - ); - } -} diff --git a/src/api/resources/accounting/resources/incomeStatements/client/index.ts b/src/api/resources/accounting/resources/incomeStatements/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/api/resources/accounting/resources/incomeStatements/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/api/resources/accounting/resources/incomeStatements/client/requests/IncomeStatementsListRequest.ts b/src/api/resources/accounting/resources/incomeStatements/client/requests/IncomeStatementsListRequest.ts deleted file mode 100644 index 6d8bda5d6..000000000 --- a/src/api/resources/accounting/resources/incomeStatements/client/requests/IncomeStatementsListRequest.ts +++ /dev/null @@ -1,45 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * @example - * { - * companyId: "company_id", - * createdAfter: new Date("2024-01-15T09:30:00.000Z"), - * createdBefore: new Date("2024-01-15T09:30:00.000Z"), - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * expand: "company", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - * modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - * pageSize: 1, - * remoteId: "remote_id" - * } - */ -export interface IncomeStatementsListRequest { - /** If provided, will only return income statements for this company. */ - companyId?: string; - /** If provided, will only return objects created after this datetime. */ - createdAfter?: Date; - /** If provided, will only return objects created before this datetime. */ - createdBefore?: Date; - /** The pagination cursor value. */ - cursor?: string; - /** Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. */ - expand?: "company"; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - includeDeletedData?: boolean; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** If provided, only objects synced by Merge after this date time will be returned. */ - modifiedAfter?: Date; - /** If provided, only objects synced by Merge before this date time will be returned. */ - modifiedBefore?: Date; - /** Number of results to return per page. */ - pageSize?: number; - /** The API provider's ID for the given object. */ - remoteId?: string; -} diff --git a/src/api/resources/accounting/resources/incomeStatements/client/requests/IncomeStatementsRetrieveRequest.ts b/src/api/resources/accounting/resources/incomeStatements/client/requests/IncomeStatementsRetrieveRequest.ts deleted file mode 100644 index 8b193e228..000000000 --- a/src/api/resources/accounting/resources/incomeStatements/client/requests/IncomeStatementsRetrieveRequest.ts +++ /dev/null @@ -1,18 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * @example - * { - * expand: "company", - * includeRemoteData: true, - * includeShellData: true - * } - */ -export interface IncomeStatementsRetrieveRequest { - /** Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. */ - expand?: "company"; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; -} diff --git a/src/api/resources/accounting/resources/incomeStatements/client/requests/index.ts b/src/api/resources/accounting/resources/incomeStatements/client/requests/index.ts deleted file mode 100644 index 4bce26baf..000000000 --- a/src/api/resources/accounting/resources/incomeStatements/client/requests/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export type { IncomeStatementsListRequest } from "./IncomeStatementsListRequest"; -export type { IncomeStatementsRetrieveRequest } from "./IncomeStatementsRetrieveRequest"; diff --git a/src/api/resources/accounting/resources/incomeStatements/exports.ts b/src/api/resources/accounting/resources/incomeStatements/exports.ts deleted file mode 100644 index 689b3ecf5..000000000 --- a/src/api/resources/accounting/resources/incomeStatements/exports.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export { IncomeStatementsClient } from "./client/Client"; -export * from "./client/index"; diff --git a/src/api/resources/accounting/resources/incomeStatements/index.ts b/src/api/resources/accounting/resources/incomeStatements/index.ts deleted file mode 100644 index 5ec76921e..000000000 --- a/src/api/resources/accounting/resources/incomeStatements/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./client"; diff --git a/src/api/resources/accounting/resources/index.ts b/src/api/resources/accounting/resources/index.ts deleted file mode 100644 index 94fd04b76..000000000 --- a/src/api/resources/accounting/resources/index.ts +++ /dev/null @@ -1,106 +0,0 @@ -export * as accountDetails from "./accountDetails"; -export * as accountingPeriods from "./accountingPeriods"; -export * from "./accountingPeriods/client/requests"; -export * as accounts from "./accounts"; -export * from "./accounts/client/requests"; -export * from "./accounts/types"; -export * as accountToken from "./accountToken"; -export * as addresses from "./addresses"; -export * from "./addresses/client/requests"; -export * as asyncPassthrough from "./asyncPassthrough"; -export * from "./asyncPassthrough/types"; -export * as asyncTasks from "./asyncTasks"; -export * as attachments from "./attachments"; -export * from "./attachments/client/requests"; -export * as auditTrail from "./auditTrail"; -export * from "./auditTrail/client/requests"; -export * as availableActions from "./availableActions"; -export * as balanceSheets from "./balanceSheets"; -export * from "./balanceSheets/client/requests"; -export * as bankFeedAccounts from "./bankFeedAccounts"; -export * from "./bankFeedAccounts/client/requests"; -export * as bankFeedTransactions from "./bankFeedTransactions"; -export * from "./bankFeedTransactions/client/requests"; -export * as cashFlowStatements from "./cashFlowStatements"; -export * from "./cashFlowStatements/client/requests"; -export * as companyInfo from "./companyInfo"; -export * from "./companyInfo/client/requests"; -export * from "./companyInfo/types"; -export * as contacts from "./contacts"; -export * from "./contacts/client/requests"; -export * from "./contacts/types"; -export * as creditNotes from "./creditNotes"; -export * from "./creditNotes/client/requests"; -export * from "./creditNotes/types"; -export * as deleteAccount from "./deleteAccount"; -export * as employees from "./employees"; -export * from "./employees/client/requests"; -export * as expenseReports from "./expenseReports"; -export * from "./expenseReports/client/requests"; -export * from "./expenseReports/types"; -export * as expenses from "./expenses"; -export * from "./expenses/client/requests"; -export * from "./expenses/types"; -export * as fieldMapping from "./fieldMapping"; -export * from "./fieldMapping/client/requests"; -export * as forceResync from "./forceResync"; -export * as generalLedgerTransactions from "./generalLedgerTransactions"; -export * from "./generalLedgerTransactions/client/requests"; -export * from "./generalLedgerTransactions/types"; -export * as generateKey from "./generateKey"; -export * from "./generateKey/client/requests"; -export * as incomeStatements from "./incomeStatements"; -export * from "./incomeStatements/client/requests"; -export * as invoices from "./invoices"; -export * from "./invoices/client/requests"; -export * from "./invoices/types"; -export * as issues from "./issues"; -export * from "./issues/client/requests"; -export * from "./issues/types"; -export * as items from "./items"; -export * from "./items/client/requests"; -export * from "./items/types"; -export * as journalEntries from "./journalEntries"; -export * from "./journalEntries/client/requests"; -export * from "./journalEntries/types"; -export * as linkedAccounts from "./linkedAccounts"; -export * from "./linkedAccounts/client/requests"; -export * from "./linkedAccounts/types"; -export * as linkToken from "./linkToken"; -export * from "./linkToken/client/requests"; -export * from "./linkToken/types"; -export * as passthrough from "./passthrough"; -export * as paymentMethods from "./paymentMethods"; -export * from "./paymentMethods/client/requests"; -export * as payments from "./payments"; -export * from "./payments/client/requests"; -export * from "./payments/types"; -export * as paymentTerms from "./paymentTerms"; -export * from "./paymentTerms/client/requests"; -export * as phoneNumbers from "./phoneNumbers"; -export * from "./phoneNumbers/client/requests"; -export * as projects from "./projects"; -export * from "./projects/client/requests"; -export * from "./projects/types"; -export * as purchaseOrders from "./purchaseOrders"; -export * from "./purchaseOrders/client/requests"; -export * from "./purchaseOrders/types"; -export * as regenerateKey from "./regenerateKey"; -export * from "./regenerateKey/client/requests"; -export * as scopes from "./scopes"; -export * from "./scopes/client/requests"; -export * as syncStatus from "./syncStatus"; -export * from "./syncStatus/client/requests"; -export * as taxRates from "./taxRates"; -export * from "./taxRates/client/requests"; -export * as trackingCategories from "./trackingCategories"; -export * from "./trackingCategories/client/requests"; -export * from "./trackingCategories/types"; -export * as transactions from "./transactions"; -export * from "./transactions/client/requests"; -export * from "./transactions/types"; -export * as vendorCredits from "./vendorCredits"; -export * from "./vendorCredits/client/requests"; -export * from "./vendorCredits/types"; -export * as webhookReceivers from "./webhookReceivers"; -export * from "./webhookReceivers/client/requests"; diff --git a/src/api/resources/accounting/resources/invoices/client/Client.ts b/src/api/resources/accounting/resources/invoices/client/Client.ts deleted file mode 100644 index 0986d0bff..000000000 --- a/src/api/resources/accounting/resources/invoices/client/Client.ts +++ /dev/null @@ -1,774 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../BaseClient"; -import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../../../BaseClient"; -import * as core from "../../../../../../core"; -import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../../../core/headers"; -import * as environments from "../../../../../../environments"; -import { handleNonStatusCodeError } from "../../../../../../errors/handleNonStatusCodeError"; -import * as errors from "../../../../../../errors/index"; -import * as serializers from "../../../../../../serialization/index"; -import type * as Merge from "../../../../../index"; - -export declare namespace InvoicesClient { - export type Options = BaseClientOptions; - - export interface RequestOptions extends BaseRequestOptions {} -} - -export class InvoicesClient { - protected readonly _options: NormalizedClientOptionsWithAuth; - - constructor(options: InvoicesClient.Options) { - this._options = normalizeClientOptionsWithAuth(options); - } - - /** - * Returns a list of `Invoice` objects. - * - * @param {Merge.accounting.InvoicesListRequest} request - * @param {InvoicesClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.invoices.list({ - * companyId: "company_id", - * contactId: "contact_id", - * createdAfter: new Date("2024-01-15T09:30:00.000Z"), - * createdBefore: new Date("2024-01-15T09:30:00.000Z"), - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * expand: "accounting_period", - * includeDeletedData: true, - * includeRemoteData: true, - * includeRemoteFields: true, - * includeShellData: true, - * issueDateAfter: new Date("2024-01-15T09:30:00.000Z"), - * issueDateBefore: new Date("2024-01-15T09:30:00.000Z"), - * modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - * modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - * number: "number", - * pageSize: 1, - * remoteFields: "type", - * remoteId: "remote_id", - * showEnumOrigins: "type", - * status: "DRAFT", - * type: "ACCOUNTS_PAYABLE" - * }) - */ - public list( - request: Merge.accounting.InvoicesListRequest = {}, - requestOptions?: InvoicesClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__list(request, requestOptions)); - } - - private async __list( - request: Merge.accounting.InvoicesListRequest = {}, - requestOptions?: InvoicesClient.RequestOptions, - ): Promise> { - const { - companyId, - contactId, - createdAfter, - createdBefore, - cursor, - expand, - includeDeletedData, - includeRemoteData, - includeRemoteFields, - includeShellData, - issueDateAfter, - issueDateBefore, - modifiedAfter, - modifiedBefore, - number: number_, - pageSize, - remoteFields, - remoteId, - showEnumOrigins, - status, - type: type_, - } = request; - const _queryParams: Record = { - company_id: companyId, - contact_id: contactId, - created_after: createdAfter?.toISOString(), - created_before: createdBefore?.toISOString(), - cursor, - expand: - expand != null - ? serializers.accounting.InvoicesListRequestExpand.jsonOrThrow(expand, { - unrecognizedObjectKeys: "strip", - }) - : undefined, - include_deleted_data: includeDeletedData, - include_remote_data: includeRemoteData, - include_remote_fields: includeRemoteFields, - include_shell_data: includeShellData, - issue_date_after: issueDateAfter?.toISOString(), - issue_date_before: issueDateBefore?.toISOString(), - modified_after: modifiedAfter?.toISOString(), - modified_before: modifiedBefore?.toISOString(), - number: number_, - page_size: pageSize, - remote_fields: remoteFields != null ? remoteFields : undefined, - remote_id: remoteId, - show_enum_origins: showEnumOrigins != null ? showEnumOrigins : undefined, - status: - status != null - ? serializers.accounting.InvoicesListRequestStatus.jsonOrThrow(status, { - unrecognizedObjectKeys: "strip", - }) - : undefined, - type: - type_ != null - ? serializers.accounting.InvoicesListRequestType.jsonOrThrow(type_, { - unrecognizedObjectKeys: "strip", - }) - : undefined, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/invoices", - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaginatedInvoiceList.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError(_response.error, _response.rawResponse, "GET", "/accounting/v1/invoices"); - } - - /** - * Creates an `Invoice` object with the given values. - * Including a `PurchaseOrder` id in the `purchase_orders` property will generate an Accounts Payable Invoice from the specified Purchase Order(s). - * - * - * @param {Merge.accounting.InvoiceEndpointRequest} request - * @param {InvoicesClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.invoices.create({ - * isDebugMode: true, - * runAsync: true, - * model: {} - * }) - */ - public create( - request: Merge.accounting.InvoiceEndpointRequest, - requestOptions?: InvoicesClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__create(request, requestOptions)); - } - - private async __create( - request: Merge.accounting.InvoiceEndpointRequest, - requestOptions?: InvoicesClient.RequestOptions, - ): Promise> { - const { isDebugMode, runAsync, ..._body } = request; - const _queryParams: Record = { - is_debug_mode: isDebugMode, - run_async: runAsync, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/invoices", - ), - method: "POST", - headers: _headers, - contentType: "application/json", - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - requestType: "json", - body: serializers.accounting.InvoiceEndpointRequest.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }), - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.InvoiceResponse.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError(_response.error, _response.rawResponse, "POST", "/accounting/v1/invoices"); - } - - /** - * Returns an `Invoice` object with the given `id`. - * - * @param {string} id - * @param {Merge.accounting.InvoicesRetrieveRequest} request - * @param {InvoicesClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.invoices.retrieve("id", { - * expand: "accounting_period", - * includeRemoteData: true, - * includeRemoteFields: true, - * includeShellData: true, - * remoteFields: "type", - * showEnumOrigins: "type" - * }) - */ - public retrieve( - id: string, - request: Merge.accounting.InvoicesRetrieveRequest = {}, - requestOptions?: InvoicesClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__retrieve(id, request, requestOptions)); - } - - private async __retrieve( - id: string, - request: Merge.accounting.InvoicesRetrieveRequest = {}, - requestOptions?: InvoicesClient.RequestOptions, - ): Promise> { - const { expand, includeRemoteData, includeRemoteFields, includeShellData, remoteFields, showEnumOrigins } = - request; - const _queryParams: Record = { - expand: - expand != null - ? serializers.accounting.InvoicesRetrieveRequestExpand.jsonOrThrow(expand, { - unrecognizedObjectKeys: "strip", - }) - : undefined, - include_remote_data: includeRemoteData, - include_remote_fields: includeRemoteFields, - include_shell_data: includeShellData, - remote_fields: remoteFields != null ? remoteFields : undefined, - show_enum_origins: showEnumOrigins != null ? showEnumOrigins : undefined, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - `accounting/v1/invoices/${core.url.encodePathParam(id)}`, - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.Invoice.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError(_response.error, _response.rawResponse, "GET", "/accounting/v1/invoices/{id}"); - } - - /** - * Updates an `Invoice` object with the given `id`. - * - * @param {string} id - * @param {Merge.accounting.PatchedInvoiceEndpointRequest} request - * @param {InvoicesClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.invoices.partialUpdate("id", { - * isDebugMode: true, - * runAsync: true, - * model: {} - * }) - */ - public partialUpdate( - id: string, - request: Merge.accounting.PatchedInvoiceEndpointRequest, - requestOptions?: InvoicesClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__partialUpdate(id, request, requestOptions)); - } - - private async __partialUpdate( - id: string, - request: Merge.accounting.PatchedInvoiceEndpointRequest, - requestOptions?: InvoicesClient.RequestOptions, - ): Promise> { - const { isDebugMode, runAsync, ..._body } = request; - const _queryParams: Record = { - is_debug_mode: isDebugMode, - run_async: runAsync, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - `accounting/v1/invoices/${core.url.encodePathParam(id)}`, - ), - method: "PATCH", - headers: _headers, - contentType: "application/json", - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - requestType: "json", - body: serializers.accounting.PatchedInvoiceEndpointRequest.jsonOrThrow(_body, { - unrecognizedObjectKeys: "strip", - }), - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.InvoiceResponse.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "PATCH", - "/accounting/v1/invoices/{id}", - ); - } - - /** - * Returns a list of `RemoteFieldClass` objects. - * - * @param {Merge.accounting.InvoicesLineItemsRemoteFieldClassesListRequest} request - * @param {InvoicesClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.invoices.lineItemsRemoteFieldClassesList({ - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * isCommonModelField: true, - * isCustom: true, - * pageSize: 1 - * }) - */ - public lineItemsRemoteFieldClassesList( - request: Merge.accounting.InvoicesLineItemsRemoteFieldClassesListRequest = {}, - requestOptions?: InvoicesClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__lineItemsRemoteFieldClassesList(request, requestOptions)); - } - - private async __lineItemsRemoteFieldClassesList( - request: Merge.accounting.InvoicesLineItemsRemoteFieldClassesListRequest = {}, - requestOptions?: InvoicesClient.RequestOptions, - ): Promise> { - const { - cursor, - includeDeletedData, - includeRemoteData, - includeShellData, - isCommonModelField, - isCustom, - pageSize, - } = request; - const _queryParams: Record = { - cursor, - include_deleted_data: includeDeletedData, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - is_common_model_field: isCommonModelField, - is_custom: isCustom, - page_size: pageSize, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/invoices/line-items/remote-field-classes", - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaginatedRemoteFieldClassList.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/invoices/line-items/remote-field-classes", - ); - } - - /** - * Returns metadata for `Invoice` PATCHs. - * - * @param {string} id - * @param {InvoicesClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.invoices.metaPatchRetrieve("id") - */ - public metaPatchRetrieve( - id: string, - requestOptions?: InvoicesClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__metaPatchRetrieve(id, requestOptions)); - } - - private async __metaPatchRetrieve( - id: string, - requestOptions?: InvoicesClient.RequestOptions, - ): Promise> { - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - `accounting/v1/invoices/meta/patch/${core.url.encodePathParam(id)}`, - ), - method: "GET", - headers: _headers, - queryParameters: requestOptions?.queryParams, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.MetaResponse.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/invoices/meta/patch/{id}", - ); - } - - /** - * Returns metadata for `Invoice` POSTs. - * - * @param {InvoicesClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.invoices.metaPostRetrieve() - */ - public metaPostRetrieve( - requestOptions?: InvoicesClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__metaPostRetrieve(requestOptions)); - } - - private async __metaPostRetrieve( - requestOptions?: InvoicesClient.RequestOptions, - ): Promise> { - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/invoices/meta/post", - ), - method: "GET", - headers: _headers, - queryParameters: requestOptions?.queryParams, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.MetaResponse.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/invoices/meta/post", - ); - } - - /** - * Returns a list of `RemoteFieldClass` objects. - * - * @param {Merge.accounting.InvoicesRemoteFieldClassesListRequest} request - * @param {InvoicesClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.invoices.remoteFieldClassesList({ - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * isCommonModelField: true, - * isCustom: true, - * pageSize: 1 - * }) - */ - public remoteFieldClassesList( - request: Merge.accounting.InvoicesRemoteFieldClassesListRequest = {}, - requestOptions?: InvoicesClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__remoteFieldClassesList(request, requestOptions)); - } - - private async __remoteFieldClassesList( - request: Merge.accounting.InvoicesRemoteFieldClassesListRequest = {}, - requestOptions?: InvoicesClient.RequestOptions, - ): Promise> { - const { - cursor, - includeDeletedData, - includeRemoteData, - includeShellData, - isCommonModelField, - isCustom, - pageSize, - } = request; - const _queryParams: Record = { - cursor, - include_deleted_data: includeDeletedData, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - is_common_model_field: isCommonModelField, - is_custom: isCustom, - page_size: pageSize, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/invoices/remote-field-classes", - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaginatedRemoteFieldClassList.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/invoices/remote-field-classes", - ); - } -} diff --git a/src/api/resources/accounting/resources/invoices/client/index.ts b/src/api/resources/accounting/resources/invoices/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/api/resources/accounting/resources/invoices/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/api/resources/accounting/resources/invoices/client/requests/InvoiceEndpointRequest.ts b/src/api/resources/accounting/resources/invoices/client/requests/InvoiceEndpointRequest.ts deleted file mode 100644 index 48e9beeac..000000000 --- a/src/api/resources/accounting/resources/invoices/client/requests/InvoiceEndpointRequest.ts +++ /dev/null @@ -1,19 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * isDebugMode: true, - * runAsync: true, - * model: {} - * } - */ -export interface InvoiceEndpointRequest { - /** Whether to include debug fields (such as log file links) in the response. */ - isDebugMode?: boolean; - /** Whether or not third-party updates should be run asynchronously. */ - runAsync?: boolean; - model: Merge.accounting.InvoiceRequest; -} diff --git a/src/api/resources/accounting/resources/invoices/client/requests/InvoicesLineItemsRemoteFieldClassesListRequest.ts b/src/api/resources/accounting/resources/invoices/client/requests/InvoicesLineItemsRemoteFieldClassesListRequest.ts deleted file mode 100644 index bc270d77f..000000000 --- a/src/api/resources/accounting/resources/invoices/client/requests/InvoicesLineItemsRemoteFieldClassesListRequest.ts +++ /dev/null @@ -1,30 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * @example - * { - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * isCommonModelField: true, - * isCustom: true, - * pageSize: 1 - * } - */ -export interface InvoicesLineItemsRemoteFieldClassesListRequest { - /** The pagination cursor value. */ - cursor?: string; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - includeDeletedData?: boolean; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** If provided, will only return remote field classes with this is_common_model_field value */ - isCommonModelField?: boolean; - /** If provided, will only return remote fields classes with this is_custom value */ - isCustom?: boolean; - /** Number of results to return per page. */ - pageSize?: number; -} diff --git a/src/api/resources/accounting/resources/invoices/client/requests/InvoicesListRequest.ts b/src/api/resources/accounting/resources/invoices/client/requests/InvoicesListRequest.ts deleted file mode 100644 index 3d6b57134..000000000 --- a/src/api/resources/accounting/resources/invoices/client/requests/InvoicesListRequest.ts +++ /dev/null @@ -1,88 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * companyId: "company_id", - * contactId: "contact_id", - * createdAfter: new Date("2024-01-15T09:30:00.000Z"), - * createdBefore: new Date("2024-01-15T09:30:00.000Z"), - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * expand: "accounting_period", - * includeDeletedData: true, - * includeRemoteData: true, - * includeRemoteFields: true, - * includeShellData: true, - * issueDateAfter: new Date("2024-01-15T09:30:00.000Z"), - * issueDateBefore: new Date("2024-01-15T09:30:00.000Z"), - * modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - * modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - * number: "number", - * pageSize: 1, - * remoteFields: "type", - * remoteId: "remote_id", - * showEnumOrigins: "type", - * status: "DRAFT", - * type: "ACCOUNTS_PAYABLE" - * } - */ -export interface InvoicesListRequest { - /** If provided, will only return invoices for this company. */ - companyId?: string; - /** If provided, will only return invoices for this contact. */ - contactId?: string; - /** If provided, will only return objects created after this datetime. */ - createdAfter?: Date; - /** If provided, will only return objects created before this datetime. */ - createdBefore?: Date; - /** The pagination cursor value. */ - cursor?: string; - /** Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. */ - expand?: Merge.accounting.InvoicesListRequestExpand; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - includeDeletedData?: boolean; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include all remote fields, including fields that Merge did not map to common models, in a normalized format. */ - includeRemoteFields?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** If provided, will only return objects created after this datetime. */ - issueDateAfter?: Date; - /** If provided, will only return objects created before this datetime. */ - issueDateBefore?: Date; - /** If provided, only objects synced by Merge after this date time will be returned. */ - modifiedAfter?: Date; - /** If provided, only objects synced by Merge before this date time will be returned. */ - modifiedBefore?: Date; - /** If provided, will only return Invoices with this number. */ - number?: string; - /** Number of results to return per page. */ - pageSize?: number; - /** Deprecated. Use show_enum_origins. */ - remoteFields?: "type"; - /** The API provider's ID for the given object. */ - remoteId?: string; - /** A comma separated list of enum field names for which you'd like the original values to be returned, instead of Merge's normalized enum values. [Learn more](https://help.merge.dev/en/articles/8950958-show_enum_origins-query-parameter) */ - showEnumOrigins?: "type"; - /** - * If provided, will only return Invoices with this status. - * - * * `PAID` - PAID - * * `DRAFT` - DRAFT - * * `SUBMITTED` - SUBMITTED - * * `PARTIALLY_PAID` - PARTIALLY_PAID - * * `OPEN` - OPEN - * * `VOID` - VOID - */ - status?: Merge.accounting.InvoicesListRequestStatus; - /** - * If provided, will only return Invoices with this type. - * - * * `ACCOUNTS_RECEIVABLE` - ACCOUNTS_RECEIVABLE - * * `ACCOUNTS_PAYABLE` - ACCOUNTS_PAYABLE - */ - type?: Merge.accounting.InvoicesListRequestType; -} diff --git a/src/api/resources/accounting/resources/invoices/client/requests/InvoicesRemoteFieldClassesListRequest.ts b/src/api/resources/accounting/resources/invoices/client/requests/InvoicesRemoteFieldClassesListRequest.ts deleted file mode 100644 index 63bf03f40..000000000 --- a/src/api/resources/accounting/resources/invoices/client/requests/InvoicesRemoteFieldClassesListRequest.ts +++ /dev/null @@ -1,30 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * @example - * { - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * isCommonModelField: true, - * isCustom: true, - * pageSize: 1 - * } - */ -export interface InvoicesRemoteFieldClassesListRequest { - /** The pagination cursor value. */ - cursor?: string; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - includeDeletedData?: boolean; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** If provided, will only return remote field classes with this is_common_model_field value */ - isCommonModelField?: boolean; - /** If provided, will only return remote fields classes with this is_custom value */ - isCustom?: boolean; - /** Number of results to return per page. */ - pageSize?: number; -} diff --git a/src/api/resources/accounting/resources/invoices/client/requests/InvoicesRetrieveRequest.ts b/src/api/resources/accounting/resources/invoices/client/requests/InvoicesRetrieveRequest.ts deleted file mode 100644 index 229dde4b6..000000000 --- a/src/api/resources/accounting/resources/invoices/client/requests/InvoicesRetrieveRequest.ts +++ /dev/null @@ -1,29 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * expand: "accounting_period", - * includeRemoteData: true, - * includeRemoteFields: true, - * includeShellData: true, - * remoteFields: "type", - * showEnumOrigins: "type" - * } - */ -export interface InvoicesRetrieveRequest { - /** Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. */ - expand?: Merge.accounting.InvoicesRetrieveRequestExpand; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include all remote fields, including fields that Merge did not map to common models, in a normalized format. */ - includeRemoteFields?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** Deprecated. Use show_enum_origins. */ - remoteFields?: "type"; - /** A comma separated list of enum field names for which you'd like the original values to be returned, instead of Merge's normalized enum values. [Learn more](https://help.merge.dev/en/articles/8950958-show_enum_origins-query-parameter) */ - showEnumOrigins?: "type"; -} diff --git a/src/api/resources/accounting/resources/invoices/client/requests/PatchedInvoiceEndpointRequest.ts b/src/api/resources/accounting/resources/invoices/client/requests/PatchedInvoiceEndpointRequest.ts deleted file mode 100644 index 7be3174e6..000000000 --- a/src/api/resources/accounting/resources/invoices/client/requests/PatchedInvoiceEndpointRequest.ts +++ /dev/null @@ -1,19 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * isDebugMode: true, - * runAsync: true, - * model: {} - * } - */ -export interface PatchedInvoiceEndpointRequest { - /** Whether to include debug fields (such as log file links) in the response. */ - isDebugMode?: boolean; - /** Whether or not third-party updates should be run asynchronously. */ - runAsync?: boolean; - model: Merge.accounting.InvoiceRequest; -} diff --git a/src/api/resources/accounting/resources/invoices/client/requests/index.ts b/src/api/resources/accounting/resources/invoices/client/requests/index.ts deleted file mode 100644 index 07e589cf3..000000000 --- a/src/api/resources/accounting/resources/invoices/client/requests/index.ts +++ /dev/null @@ -1,6 +0,0 @@ -export type { InvoiceEndpointRequest } from "./InvoiceEndpointRequest"; -export type { InvoicesLineItemsRemoteFieldClassesListRequest } from "./InvoicesLineItemsRemoteFieldClassesListRequest"; -export type { InvoicesListRequest } from "./InvoicesListRequest"; -export type { InvoicesRemoteFieldClassesListRequest } from "./InvoicesRemoteFieldClassesListRequest"; -export type { InvoicesRetrieveRequest } from "./InvoicesRetrieveRequest"; -export type { PatchedInvoiceEndpointRequest } from "./PatchedInvoiceEndpointRequest"; diff --git a/src/api/resources/accounting/resources/invoices/exports.ts b/src/api/resources/accounting/resources/invoices/exports.ts deleted file mode 100644 index ee7f23975..000000000 --- a/src/api/resources/accounting/resources/invoices/exports.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export { InvoicesClient } from "./client/Client"; -export * from "./client/index"; diff --git a/src/api/resources/accounting/resources/invoices/index.ts b/src/api/resources/accounting/resources/invoices/index.ts deleted file mode 100644 index d2ec2302c..000000000 --- a/src/api/resources/accounting/resources/invoices/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./client"; -export * from "./types"; diff --git a/src/api/resources/accounting/resources/invoices/types/InvoicesListRequestExpand.ts b/src/api/resources/accounting/resources/invoices/types/InvoicesListRequestExpand.ts deleted file mode 100644 index 3f28b8e44..000000000 --- a/src/api/resources/accounting/resources/invoices/types/InvoicesListRequestExpand.ts +++ /dev/null @@ -1,7516 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export const InvoicesListRequestExpand = { - AccountingPeriod: "accounting_period", - AccountingPeriodPaymentTerm: "accounting_period,payment_term", - AppliedCreditNotes: "applied_credit_notes", - AppliedCreditNotesAccountingPeriod: "applied_credit_notes,accounting_period", - AppliedCreditNotesAccountingPeriodPaymentTerm: "applied_credit_notes,accounting_period,payment_term", - AppliedCreditNotesAppliedVendorCredits: "applied_credit_notes,applied_vendor_credits", - AppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "applied_credit_notes,applied_vendor_credits,accounting_period", - AppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - AppliedCreditNotesAppliedVendorCreditsCompany: "applied_credit_notes,applied_vendor_credits,company", - AppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "applied_credit_notes,applied_vendor_credits,company,accounting_period", - AppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - AppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "applied_credit_notes,applied_vendor_credits,company,employee", - AppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - AppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - AppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - AppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "applied_credit_notes,applied_vendor_credits,company,payment_term", - AppliedCreditNotesAppliedVendorCreditsContact: "applied_credit_notes,applied_vendor_credits,contact", - AppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "applied_credit_notes,applied_vendor_credits,contact,accounting_period", - AppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - AppliedCreditNotesAppliedVendorCreditsContactCompany: "applied_credit_notes,applied_vendor_credits,contact,company", - AppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - AppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - AppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "applied_credit_notes,applied_vendor_credits,contact,company,employee", - AppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - AppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - AppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - AppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - AppliedCreditNotesAppliedVendorCreditsContactEmployee: - "applied_credit_notes,applied_vendor_credits,contact,employee", - AppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - AppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - AppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - AppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "applied_credit_notes,applied_vendor_credits,contact,payment_term", - AppliedCreditNotesAppliedVendorCreditsEmployee: "applied_credit_notes,applied_vendor_credits,employee", - AppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "applied_credit_notes,applied_vendor_credits,employee,accounting_period", - AppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - AppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "applied_credit_notes,applied_vendor_credits,employee,payment_term", - AppliedCreditNotesAppliedVendorCreditsPaymentTerm: "applied_credit_notes,applied_vendor_credits,payment_term", - AppliedCreditNotesCompany: "applied_credit_notes,company", - AppliedCreditNotesCompanyAccountingPeriod: "applied_credit_notes,company,accounting_period", - AppliedCreditNotesCompanyAccountingPeriodPaymentTerm: "applied_credit_notes,company,accounting_period,payment_term", - AppliedCreditNotesCompanyEmployee: "applied_credit_notes,company,employee", - AppliedCreditNotesCompanyEmployeeAccountingPeriod: "applied_credit_notes,company,employee,accounting_period", - AppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_credit_notes,company,employee,accounting_period,payment_term", - AppliedCreditNotesCompanyEmployeePaymentTerm: "applied_credit_notes,company,employee,payment_term", - AppliedCreditNotesCompanyPaymentTerm: "applied_credit_notes,company,payment_term", - AppliedCreditNotesContact: "applied_credit_notes,contact", - AppliedCreditNotesContactAccountingPeriod: "applied_credit_notes,contact,accounting_period", - AppliedCreditNotesContactAccountingPeriodPaymentTerm: "applied_credit_notes,contact,accounting_period,payment_term", - AppliedCreditNotesContactCompany: "applied_credit_notes,contact,company", - AppliedCreditNotesContactCompanyAccountingPeriod: "applied_credit_notes,contact,company,accounting_period", - AppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "applied_credit_notes,contact,company,accounting_period,payment_term", - AppliedCreditNotesContactCompanyEmployee: "applied_credit_notes,contact,company,employee", - AppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "applied_credit_notes,contact,company,employee,accounting_period", - AppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_credit_notes,contact,company,employee,accounting_period,payment_term", - AppliedCreditNotesContactCompanyEmployeePaymentTerm: "applied_credit_notes,contact,company,employee,payment_term", - AppliedCreditNotesContactCompanyPaymentTerm: "applied_credit_notes,contact,company,payment_term", - AppliedCreditNotesContactEmployee: "applied_credit_notes,contact,employee", - AppliedCreditNotesContactEmployeeAccountingPeriod: "applied_credit_notes,contact,employee,accounting_period", - AppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "applied_credit_notes,contact,employee,accounting_period,payment_term", - AppliedCreditNotesContactEmployeePaymentTerm: "applied_credit_notes,contact,employee,payment_term", - AppliedCreditNotesContactPaymentTerm: "applied_credit_notes,contact,payment_term", - AppliedCreditNotesEmployee: "applied_credit_notes,employee", - AppliedCreditNotesEmployeeAccountingPeriod: "applied_credit_notes,employee,accounting_period", - AppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "applied_credit_notes,employee,accounting_period,payment_term", - AppliedCreditNotesEmployeePaymentTerm: "applied_credit_notes,employee,payment_term", - AppliedCreditNotesPaymentTerm: "applied_credit_notes,payment_term", - AppliedPayments: "applied_payments", - AppliedPaymentsAccountingPeriod: "applied_payments,accounting_period", - AppliedPaymentsAccountingPeriodPaymentTerm: "applied_payments,accounting_period,payment_term", - AppliedPaymentsAppliedCreditNotes: "applied_payments,applied_credit_notes", - AppliedPaymentsAppliedCreditNotesAccountingPeriod: "applied_payments,applied_credit_notes,accounting_period", - AppliedPaymentsAppliedCreditNotesAccountingPeriodPaymentTerm: - "applied_payments,applied_credit_notes,accounting_period,payment_term", - AppliedPaymentsAppliedCreditNotesAppliedVendorCredits: - "applied_payments,applied_credit_notes,applied_vendor_credits", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "applied_payments,applied_credit_notes,applied_vendor_credits,accounting_period", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "applied_payments,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsCompany: - "applied_payments,applied_credit_notes,applied_vendor_credits,company", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "applied_payments,applied_credit_notes,applied_vendor_credits,company,accounting_period", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "applied_payments,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "applied_payments,applied_credit_notes,applied_vendor_credits,company,employee", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "applied_payments,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "applied_payments,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "applied_payments,applied_credit_notes,applied_vendor_credits,company,payment_term", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContact: - "applied_payments,applied_credit_notes,applied_vendor_credits,contact", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactCompany: - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,company", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,employee", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,employee", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,payment_term", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsEmployee: - "applied_payments,applied_credit_notes,applied_vendor_credits,employee", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "applied_payments,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "applied_payments,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "applied_payments,applied_credit_notes,applied_vendor_credits,employee,payment_term", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "applied_payments,applied_credit_notes,applied_vendor_credits,payment_term", - AppliedPaymentsAppliedCreditNotesCompany: "applied_payments,applied_credit_notes,company", - AppliedPaymentsAppliedCreditNotesCompanyAccountingPeriod: - "applied_payments,applied_credit_notes,company,accounting_period", - AppliedPaymentsAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "applied_payments,applied_credit_notes,company,accounting_period,payment_term", - AppliedPaymentsAppliedCreditNotesCompanyEmployee: "applied_payments,applied_credit_notes,company,employee", - AppliedPaymentsAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "applied_payments,applied_credit_notes,company,employee,accounting_period", - AppliedPaymentsAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,applied_credit_notes,company,employee,accounting_period,payment_term", - AppliedPaymentsAppliedCreditNotesCompanyEmployeePaymentTerm: - "applied_payments,applied_credit_notes,company,employee,payment_term", - AppliedPaymentsAppliedCreditNotesCompanyPaymentTerm: "applied_payments,applied_credit_notes,company,payment_term", - AppliedPaymentsAppliedCreditNotesContact: "applied_payments,applied_credit_notes,contact", - AppliedPaymentsAppliedCreditNotesContactAccountingPeriod: - "applied_payments,applied_credit_notes,contact,accounting_period", - AppliedPaymentsAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "applied_payments,applied_credit_notes,contact,accounting_period,payment_term", - AppliedPaymentsAppliedCreditNotesContactCompany: "applied_payments,applied_credit_notes,contact,company", - AppliedPaymentsAppliedCreditNotesContactCompanyAccountingPeriod: - "applied_payments,applied_credit_notes,contact,company,accounting_period", - AppliedPaymentsAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,applied_credit_notes,contact,company,accounting_period,payment_term", - AppliedPaymentsAppliedCreditNotesContactCompanyEmployee: - "applied_payments,applied_credit_notes,contact,company,employee", - AppliedPaymentsAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "applied_payments,applied_credit_notes,contact,company,employee,accounting_period", - AppliedPaymentsAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "applied_payments,applied_credit_notes,contact,company,employee,payment_term", - AppliedPaymentsAppliedCreditNotesContactCompanyPaymentTerm: - "applied_payments,applied_credit_notes,contact,company,payment_term", - AppliedPaymentsAppliedCreditNotesContactEmployee: "applied_payments,applied_credit_notes,contact,employee", - AppliedPaymentsAppliedCreditNotesContactEmployeeAccountingPeriod: - "applied_payments,applied_credit_notes,contact,employee,accounting_period", - AppliedPaymentsAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,applied_credit_notes,contact,employee,accounting_period,payment_term", - AppliedPaymentsAppliedCreditNotesContactEmployeePaymentTerm: - "applied_payments,applied_credit_notes,contact,employee,payment_term", - AppliedPaymentsAppliedCreditNotesContactPaymentTerm: "applied_payments,applied_credit_notes,contact,payment_term", - AppliedPaymentsAppliedCreditNotesEmployee: "applied_payments,applied_credit_notes,employee", - AppliedPaymentsAppliedCreditNotesEmployeeAccountingPeriod: - "applied_payments,applied_credit_notes,employee,accounting_period", - AppliedPaymentsAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "applied_payments,applied_credit_notes,employee,accounting_period,payment_term", - AppliedPaymentsAppliedCreditNotesEmployeePaymentTerm: "applied_payments,applied_credit_notes,employee,payment_term", - AppliedPaymentsAppliedCreditNotesPaymentTerm: "applied_payments,applied_credit_notes,payment_term", - AppliedPaymentsAppliedVendorCredits: "applied_payments,applied_vendor_credits", - AppliedPaymentsAppliedVendorCreditsAccountingPeriod: "applied_payments,applied_vendor_credits,accounting_period", - AppliedPaymentsAppliedVendorCreditsAccountingPeriodPaymentTerm: - "applied_payments,applied_vendor_credits,accounting_period,payment_term", - AppliedPaymentsAppliedVendorCreditsCompany: "applied_payments,applied_vendor_credits,company", - AppliedPaymentsAppliedVendorCreditsCompanyAccountingPeriod: - "applied_payments,applied_vendor_credits,company,accounting_period", - AppliedPaymentsAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "applied_payments,applied_vendor_credits,company,accounting_period,payment_term", - AppliedPaymentsAppliedVendorCreditsCompanyEmployee: "applied_payments,applied_vendor_credits,company,employee", - AppliedPaymentsAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "applied_payments,applied_vendor_credits,company,employee,accounting_period", - AppliedPaymentsAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,applied_vendor_credits,company,employee,accounting_period,payment_term", - AppliedPaymentsAppliedVendorCreditsCompanyEmployeePaymentTerm: - "applied_payments,applied_vendor_credits,company,employee,payment_term", - AppliedPaymentsAppliedVendorCreditsCompanyPaymentTerm: - "applied_payments,applied_vendor_credits,company,payment_term", - AppliedPaymentsAppliedVendorCreditsContact: "applied_payments,applied_vendor_credits,contact", - AppliedPaymentsAppliedVendorCreditsContactAccountingPeriod: - "applied_payments,applied_vendor_credits,contact,accounting_period", - AppliedPaymentsAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "applied_payments,applied_vendor_credits,contact,accounting_period,payment_term", - AppliedPaymentsAppliedVendorCreditsContactCompany: "applied_payments,applied_vendor_credits,contact,company", - AppliedPaymentsAppliedVendorCreditsContactCompanyAccountingPeriod: - "applied_payments,applied_vendor_credits,contact,company,accounting_period", - AppliedPaymentsAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,applied_vendor_credits,contact,company,accounting_period,payment_term", - AppliedPaymentsAppliedVendorCreditsContactCompanyEmployee: - "applied_payments,applied_vendor_credits,contact,company,employee", - AppliedPaymentsAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "applied_payments,applied_vendor_credits,contact,company,employee,accounting_period", - AppliedPaymentsAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "applied_payments,applied_vendor_credits,contact,company,employee,payment_term", - AppliedPaymentsAppliedVendorCreditsContactCompanyPaymentTerm: - "applied_payments,applied_vendor_credits,contact,company,payment_term", - AppliedPaymentsAppliedVendorCreditsContactEmployee: "applied_payments,applied_vendor_credits,contact,employee", - AppliedPaymentsAppliedVendorCreditsContactEmployeeAccountingPeriod: - "applied_payments,applied_vendor_credits,contact,employee,accounting_period", - AppliedPaymentsAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,applied_vendor_credits,contact,employee,accounting_period,payment_term", - AppliedPaymentsAppliedVendorCreditsContactEmployeePaymentTerm: - "applied_payments,applied_vendor_credits,contact,employee,payment_term", - AppliedPaymentsAppliedVendorCreditsContactPaymentTerm: - "applied_payments,applied_vendor_credits,contact,payment_term", - AppliedPaymentsAppliedVendorCreditsEmployee: "applied_payments,applied_vendor_credits,employee", - AppliedPaymentsAppliedVendorCreditsEmployeeAccountingPeriod: - "applied_payments,applied_vendor_credits,employee,accounting_period", - AppliedPaymentsAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "applied_payments,applied_vendor_credits,employee,accounting_period,payment_term", - AppliedPaymentsAppliedVendorCreditsEmployeePaymentTerm: - "applied_payments,applied_vendor_credits,employee,payment_term", - AppliedPaymentsAppliedVendorCreditsPaymentTerm: "applied_payments,applied_vendor_credits,payment_term", - AppliedPaymentsCompany: "applied_payments,company", - AppliedPaymentsCompanyAccountingPeriod: "applied_payments,company,accounting_period", - AppliedPaymentsCompanyAccountingPeriodPaymentTerm: "applied_payments,company,accounting_period,payment_term", - AppliedPaymentsCompanyEmployee: "applied_payments,company,employee", - AppliedPaymentsCompanyEmployeeAccountingPeriod: "applied_payments,company,employee,accounting_period", - AppliedPaymentsCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,company,employee,accounting_period,payment_term", - AppliedPaymentsCompanyEmployeePaymentTerm: "applied_payments,company,employee,payment_term", - AppliedPaymentsCompanyPaymentTerm: "applied_payments,company,payment_term", - AppliedPaymentsContact: "applied_payments,contact", - AppliedPaymentsContactAccountingPeriod: "applied_payments,contact,accounting_period", - AppliedPaymentsContactAccountingPeriodPaymentTerm: "applied_payments,contact,accounting_period,payment_term", - AppliedPaymentsContactCompany: "applied_payments,contact,company", - AppliedPaymentsContactCompanyAccountingPeriod: "applied_payments,contact,company,accounting_period", - AppliedPaymentsContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,contact,company,accounting_period,payment_term", - AppliedPaymentsContactCompanyEmployee: "applied_payments,contact,company,employee", - AppliedPaymentsContactCompanyEmployeeAccountingPeriod: - "applied_payments,contact,company,employee,accounting_period", - AppliedPaymentsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsContactCompanyEmployeePaymentTerm: "applied_payments,contact,company,employee,payment_term", - AppliedPaymentsContactCompanyPaymentTerm: "applied_payments,contact,company,payment_term", - AppliedPaymentsContactEmployee: "applied_payments,contact,employee", - AppliedPaymentsContactEmployeeAccountingPeriod: "applied_payments,contact,employee,accounting_period", - AppliedPaymentsContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,contact,employee,accounting_period,payment_term", - AppliedPaymentsContactEmployeePaymentTerm: "applied_payments,contact,employee,payment_term", - AppliedPaymentsContactPaymentTerm: "applied_payments,contact,payment_term", - AppliedPaymentsEmployee: "applied_payments,employee", - AppliedPaymentsEmployeeAccountingPeriod: "applied_payments,employee,accounting_period", - AppliedPaymentsEmployeeAccountingPeriodPaymentTerm: "applied_payments,employee,accounting_period,payment_term", - AppliedPaymentsEmployeePaymentTerm: "applied_payments,employee,payment_term", - AppliedPaymentsLineItems: "applied_payments,line_items", - AppliedPaymentsLineItemsAccountingPeriod: "applied_payments,line_items,accounting_period", - AppliedPaymentsLineItemsAccountingPeriodPaymentTerm: "applied_payments,line_items,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotes: "applied_payments,line_items,applied_credit_notes", - AppliedPaymentsLineItemsAppliedCreditNotesAccountingPeriod: - "applied_payments,line_items,applied_credit_notes,accounting_period", - AppliedPaymentsLineItemsAppliedCreditNotesAccountingPeriodPaymentTerm: - "applied_payments,line_items,applied_credit_notes,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCredits: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,accounting_period", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsCompany: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,accounting_period", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContact: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactCompany: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsEmployee: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,employee", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,employee,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesCompany: "applied_payments,line_items,applied_credit_notes,company", - AppliedPaymentsLineItemsAppliedCreditNotesCompanyAccountingPeriod: - "applied_payments,line_items,applied_credit_notes,company,accounting_period", - AppliedPaymentsLineItemsAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,applied_credit_notes,company,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesCompanyEmployee: - "applied_payments,line_items,applied_credit_notes,company,employee", - AppliedPaymentsLineItemsAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,applied_credit_notes,company,employee,accounting_period", - AppliedPaymentsLineItemsAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,applied_credit_notes,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesCompanyEmployeePaymentTerm: - "applied_payments,line_items,applied_credit_notes,company,employee,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesCompanyPaymentTerm: - "applied_payments,line_items,applied_credit_notes,company,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesContact: "applied_payments,line_items,applied_credit_notes,contact", - AppliedPaymentsLineItemsAppliedCreditNotesContactAccountingPeriod: - "applied_payments,line_items,applied_credit_notes,contact,accounting_period", - AppliedPaymentsLineItemsAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "applied_payments,line_items,applied_credit_notes,contact,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesContactCompany: - "applied_payments,line_items,applied_credit_notes,contact,company", - AppliedPaymentsLineItemsAppliedCreditNotesContactCompanyAccountingPeriod: - "applied_payments,line_items,applied_credit_notes,contact,company,accounting_period", - AppliedPaymentsLineItemsAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,applied_credit_notes,contact,company,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesContactCompanyEmployee: - "applied_payments,line_items,applied_credit_notes,contact,company,employee", - AppliedPaymentsLineItemsAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,applied_credit_notes,contact,company,employee,accounting_period", - AppliedPaymentsLineItemsAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "applied_payments,line_items,applied_credit_notes,contact,company,employee,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesContactCompanyPaymentTerm: - "applied_payments,line_items,applied_credit_notes,contact,company,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesContactEmployee: - "applied_payments,line_items,applied_credit_notes,contact,employee", - AppliedPaymentsLineItemsAppliedCreditNotesContactEmployeeAccountingPeriod: - "applied_payments,line_items,applied_credit_notes,contact,employee,accounting_period", - AppliedPaymentsLineItemsAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,applied_credit_notes,contact,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesContactEmployeePaymentTerm: - "applied_payments,line_items,applied_credit_notes,contact,employee,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesContactPaymentTerm: - "applied_payments,line_items,applied_credit_notes,contact,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesEmployee: "applied_payments,line_items,applied_credit_notes,employee", - AppliedPaymentsLineItemsAppliedCreditNotesEmployeeAccountingPeriod: - "applied_payments,line_items,applied_credit_notes,employee,accounting_period", - AppliedPaymentsLineItemsAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,applied_credit_notes,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesEmployeePaymentTerm: - "applied_payments,line_items,applied_credit_notes,employee,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesPaymentTerm: - "applied_payments,line_items,applied_credit_notes,payment_term", - AppliedPaymentsLineItemsAppliedVendorCredits: "applied_payments,line_items,applied_vendor_credits", - AppliedPaymentsLineItemsAppliedVendorCreditsAccountingPeriod: - "applied_payments,line_items,applied_vendor_credits,accounting_period", - AppliedPaymentsLineItemsAppliedVendorCreditsAccountingPeriodPaymentTerm: - "applied_payments,line_items,applied_vendor_credits,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedVendorCreditsCompany: "applied_payments,line_items,applied_vendor_credits,company", - AppliedPaymentsLineItemsAppliedVendorCreditsCompanyAccountingPeriod: - "applied_payments,line_items,applied_vendor_credits,company,accounting_period", - AppliedPaymentsLineItemsAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,applied_vendor_credits,company,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedVendorCreditsCompanyEmployee: - "applied_payments,line_items,applied_vendor_credits,company,employee", - AppliedPaymentsLineItemsAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,applied_vendor_credits,company,employee,accounting_period", - AppliedPaymentsLineItemsAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,applied_vendor_credits,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedVendorCreditsCompanyEmployeePaymentTerm: - "applied_payments,line_items,applied_vendor_credits,company,employee,payment_term", - AppliedPaymentsLineItemsAppliedVendorCreditsCompanyPaymentTerm: - "applied_payments,line_items,applied_vendor_credits,company,payment_term", - AppliedPaymentsLineItemsAppliedVendorCreditsContact: "applied_payments,line_items,applied_vendor_credits,contact", - AppliedPaymentsLineItemsAppliedVendorCreditsContactAccountingPeriod: - "applied_payments,line_items,applied_vendor_credits,contact,accounting_period", - AppliedPaymentsLineItemsAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "applied_payments,line_items,applied_vendor_credits,contact,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedVendorCreditsContactCompany: - "applied_payments,line_items,applied_vendor_credits,contact,company", - AppliedPaymentsLineItemsAppliedVendorCreditsContactCompanyAccountingPeriod: - "applied_payments,line_items,applied_vendor_credits,contact,company,accounting_period", - AppliedPaymentsLineItemsAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,applied_vendor_credits,contact,company,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedVendorCreditsContactCompanyEmployee: - "applied_payments,line_items,applied_vendor_credits,contact,company,employee", - AppliedPaymentsLineItemsAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,applied_vendor_credits,contact,company,employee,accounting_period", - AppliedPaymentsLineItemsAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "applied_payments,line_items,applied_vendor_credits,contact,company,employee,payment_term", - AppliedPaymentsLineItemsAppliedVendorCreditsContactCompanyPaymentTerm: - "applied_payments,line_items,applied_vendor_credits,contact,company,payment_term", - AppliedPaymentsLineItemsAppliedVendorCreditsContactEmployee: - "applied_payments,line_items,applied_vendor_credits,contact,employee", - AppliedPaymentsLineItemsAppliedVendorCreditsContactEmployeeAccountingPeriod: - "applied_payments,line_items,applied_vendor_credits,contact,employee,accounting_period", - AppliedPaymentsLineItemsAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,applied_vendor_credits,contact,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedVendorCreditsContactEmployeePaymentTerm: - "applied_payments,line_items,applied_vendor_credits,contact,employee,payment_term", - AppliedPaymentsLineItemsAppliedVendorCreditsContactPaymentTerm: - "applied_payments,line_items,applied_vendor_credits,contact,payment_term", - AppliedPaymentsLineItemsAppliedVendorCreditsEmployee: "applied_payments,line_items,applied_vendor_credits,employee", - AppliedPaymentsLineItemsAppliedVendorCreditsEmployeeAccountingPeriod: - "applied_payments,line_items,applied_vendor_credits,employee,accounting_period", - AppliedPaymentsLineItemsAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,applied_vendor_credits,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedVendorCreditsEmployeePaymentTerm: - "applied_payments,line_items,applied_vendor_credits,employee,payment_term", - AppliedPaymentsLineItemsAppliedVendorCreditsPaymentTerm: - "applied_payments,line_items,applied_vendor_credits,payment_term", - AppliedPaymentsLineItemsCompany: "applied_payments,line_items,company", - AppliedPaymentsLineItemsCompanyAccountingPeriod: "applied_payments,line_items,company,accounting_period", - AppliedPaymentsLineItemsCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,company,accounting_period,payment_term", - AppliedPaymentsLineItemsCompanyEmployee: "applied_payments,line_items,company,employee", - AppliedPaymentsLineItemsCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,company,employee,accounting_period", - AppliedPaymentsLineItemsCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsCompanyEmployeePaymentTerm: "applied_payments,line_items,company,employee,payment_term", - AppliedPaymentsLineItemsCompanyPaymentTerm: "applied_payments,line_items,company,payment_term", - AppliedPaymentsLineItemsContact: "applied_payments,line_items,contact", - AppliedPaymentsLineItemsContactAccountingPeriod: "applied_payments,line_items,contact,accounting_period", - AppliedPaymentsLineItemsContactAccountingPeriodPaymentTerm: - "applied_payments,line_items,contact,accounting_period,payment_term", - AppliedPaymentsLineItemsContactCompany: "applied_payments,line_items,contact,company", - AppliedPaymentsLineItemsContactCompanyAccountingPeriod: - "applied_payments,line_items,contact,company,accounting_period", - AppliedPaymentsLineItemsContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,contact,company,accounting_period,payment_term", - AppliedPaymentsLineItemsContactCompanyEmployee: "applied_payments,line_items,contact,company,employee", - AppliedPaymentsLineItemsContactCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,contact,company,employee,accounting_period", - AppliedPaymentsLineItemsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsContactCompanyEmployeePaymentTerm: - "applied_payments,line_items,contact,company,employee,payment_term", - AppliedPaymentsLineItemsContactCompanyPaymentTerm: "applied_payments,line_items,contact,company,payment_term", - AppliedPaymentsLineItemsContactEmployee: "applied_payments,line_items,contact,employee", - AppliedPaymentsLineItemsContactEmployeeAccountingPeriod: - "applied_payments,line_items,contact,employee,accounting_period", - AppliedPaymentsLineItemsContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,contact,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsContactEmployeePaymentTerm: "applied_payments,line_items,contact,employee,payment_term", - AppliedPaymentsLineItemsContactPaymentTerm: "applied_payments,line_items,contact,payment_term", - AppliedPaymentsLineItemsEmployee: "applied_payments,line_items,employee", - AppliedPaymentsLineItemsEmployeeAccountingPeriod: "applied_payments,line_items,employee,accounting_period", - AppliedPaymentsLineItemsEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsEmployeePaymentTerm: "applied_payments,line_items,employee,payment_term", - AppliedPaymentsLineItemsPaymentTerm: "applied_payments,line_items,payment_term", - AppliedPaymentsLineItemsPurchaseOrders: "applied_payments,line_items,purchase_orders", - AppliedPaymentsLineItemsPurchaseOrdersAccountingPeriod: - "applied_payments,line_items,purchase_orders,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotes: - "applied_payments,line_items,purchase_orders,applied_credit_notes", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAccountingPeriod: - "applied_payments,line_items,purchase_orders,applied_credit_notes,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCredits: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompany: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContact: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompany: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployee: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesCompany: - "applied_payments,line_items,purchase_orders,applied_credit_notes,company", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriod: - "applied_payments,line_items,purchase_orders,applied_credit_notes,company,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesCompanyEmployee: - "applied_payments,line_items,purchase_orders,applied_credit_notes,company,employee", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,purchase_orders,applied_credit_notes,company,employee,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesCompanyEmployeePaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,company,employee,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesCompanyPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,company,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContact: - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactAccountingPeriod: - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactCompany: - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriod: - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactCompanyEmployee: - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactCompanyPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactEmployee: - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,employee", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriod: - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactEmployeePaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,employee,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesEmployee: - "applied_payments,line_items,purchase_orders,applied_credit_notes,employee", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriod: - "applied_payments,line_items,purchase_orders,applied_credit_notes,employee,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesEmployeePaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,employee,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCredits: - "applied_payments,line_items,purchase_orders,applied_vendor_credits", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsAccountingPeriod: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsCompany: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,company", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriod: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,company,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsCompanyEmployee: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,company,employee", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsCompanyEmployeePaymentTerm: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,company,employee,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsCompanyPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,company,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContact: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactAccountingPeriod: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactCompany: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriod: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployee: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactEmployee: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,employee", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriod: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactEmployeePaymentTerm: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsEmployee: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,employee", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriod: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,employee,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsEmployeePaymentTerm: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,employee,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersCompany: "applied_payments,line_items,purchase_orders,company", - AppliedPaymentsLineItemsPurchaseOrdersCompanyAccountingPeriod: - "applied_payments,line_items,purchase_orders,company,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,company,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersCompanyEmployee: - "applied_payments,line_items,purchase_orders,company,employee", - AppliedPaymentsLineItemsPurchaseOrdersCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,purchase_orders,company,employee,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersCompanyEmployeePaymentTerm: - "applied_payments,line_items,purchase_orders,company,employee,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersCompanyPaymentTerm: - "applied_payments,line_items,purchase_orders,company,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersContact: "applied_payments,line_items,purchase_orders,contact", - AppliedPaymentsLineItemsPurchaseOrdersContactAccountingPeriod: - "applied_payments,line_items,purchase_orders,contact,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersContactAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,contact,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersContactCompany: "applied_payments,line_items,purchase_orders,contact,company", - AppliedPaymentsLineItemsPurchaseOrdersContactCompanyAccountingPeriod: - "applied_payments,line_items,purchase_orders,contact,company,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,contact,company,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersContactCompanyEmployee: - "applied_payments,line_items,purchase_orders,contact,company,employee", - AppliedPaymentsLineItemsPurchaseOrdersContactCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,purchase_orders,contact,company,employee,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersContactCompanyEmployeePaymentTerm: - "applied_payments,line_items,purchase_orders,contact,company,employee,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersContactCompanyPaymentTerm: - "applied_payments,line_items,purchase_orders,contact,company,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersContactEmployee: - "applied_payments,line_items,purchase_orders,contact,employee", - AppliedPaymentsLineItemsPurchaseOrdersContactEmployeeAccountingPeriod: - "applied_payments,line_items,purchase_orders,contact,employee,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,contact,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersContactEmployeePaymentTerm: - "applied_payments,line_items,purchase_orders,contact,employee,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersContactPaymentTerm: - "applied_payments,line_items,purchase_orders,contact,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersEmployee: "applied_payments,line_items,purchase_orders,employee", - AppliedPaymentsLineItemsPurchaseOrdersEmployeeAccountingPeriod: - "applied_payments,line_items,purchase_orders,employee,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersEmployeePaymentTerm: - "applied_payments,line_items,purchase_orders,employee,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersPaymentTerm: "applied_payments,line_items,purchase_orders,payment_term", - AppliedPaymentsLineItemsTrackingCategories: "applied_payments,line_items,tracking_categories", - AppliedPaymentsLineItemsTrackingCategoriesAccountingPeriod: - "applied_payments,line_items,tracking_categories,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotes: - "applied_payments,line_items,tracking_categories,applied_credit_notes", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAccountingPeriod: - "applied_payments,line_items,tracking_categories,applied_credit_notes,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCredits: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompany: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContact: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompany: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployee: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesCompany: - "applied_payments,line_items,tracking_categories,applied_credit_notes,company", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesCompanyAccountingPeriod: - "applied_payments,line_items,tracking_categories,applied_credit_notes,company,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,company,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesCompanyEmployee: - "applied_payments,line_items,tracking_categories,applied_credit_notes,company,employee", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,applied_credit_notes,company,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesCompanyEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,company,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesCompanyPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,company,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContact: - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactAccountingPeriod: - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactCompany: - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactCompanyAccountingPeriod: - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactCompanyEmployee: - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactCompanyPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactEmployee: - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,employee", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesEmployee: - "applied_payments,line_items,tracking_categories,applied_credit_notes,employee", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,applied_credit_notes,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCredits: - "applied_payments,line_items,tracking_categories,applied_vendor_credits", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsAccountingPeriod: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsCompany: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,company", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsCompanyAccountingPeriod: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,company,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,company,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsCompanyEmployee: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,company,employee", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,company,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,company,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsCompanyPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,company,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContact: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactAccountingPeriod: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactCompany: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyAccountingPeriod: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployee: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactEmployee: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,employee", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsEmployee: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,employee", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesCompany: "applied_payments,line_items,tracking_categories,company", - AppliedPaymentsLineItemsTrackingCategoriesCompanyAccountingPeriod: - "applied_payments,line_items,tracking_categories,company,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,company,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesCompanyEmployee: - "applied_payments,line_items,tracking_categories,company,employee", - AppliedPaymentsLineItemsTrackingCategoriesCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,company,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesCompanyEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,company,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesCompanyPaymentTerm: - "applied_payments,line_items,tracking_categories,company,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesContact: "applied_payments,line_items,tracking_categories,contact", - AppliedPaymentsLineItemsTrackingCategoriesContactAccountingPeriod: - "applied_payments,line_items,tracking_categories,contact,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesContactAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,contact,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesContactCompany: - "applied_payments,line_items,tracking_categories,contact,company", - AppliedPaymentsLineItemsTrackingCategoriesContactCompanyAccountingPeriod: - "applied_payments,line_items,tracking_categories,contact,company,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,contact,company,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesContactCompanyEmployee: - "applied_payments,line_items,tracking_categories,contact,company,employee", - AppliedPaymentsLineItemsTrackingCategoriesContactCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,contact,company,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesContactCompanyEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,contact,company,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesContactCompanyPaymentTerm: - "applied_payments,line_items,tracking_categories,contact,company,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesContactEmployee: - "applied_payments,line_items,tracking_categories,contact,employee", - AppliedPaymentsLineItemsTrackingCategoriesContactEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,contact,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,contact,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesContactEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,contact,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesContactPaymentTerm: - "applied_payments,line_items,tracking_categories,contact,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesEmployee: "applied_payments,line_items,tracking_categories,employee", - AppliedPaymentsLineItemsTrackingCategoriesEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPaymentTerm: - "applied_payments,line_items,tracking_categories,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrders: - "applied_payments,line_items,tracking_categories,purchase_orders", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotes: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCredits: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompany: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContact: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompany: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployee: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompany: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployee: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContact: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompany: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployee: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployee: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployee: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCredits: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompany: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployee: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContact: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompany: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployee: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployee: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployee: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersCompany: - "applied_payments,line_items,tracking_categories,purchase_orders,company", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersCompanyAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,company,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,company,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersCompanyEmployee: - "applied_payments,line_items,tracking_categories,purchase_orders,company,employee", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,company,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersCompanyEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,company,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersCompanyPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,company,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContact: - "applied_payments,line_items,tracking_categories,purchase_orders,contact", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,contact,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,contact,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactCompany: - "applied_payments,line_items,tracking_categories,purchase_orders,contact,company", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactCompanyAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,contact,company,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,contact,company,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactCompanyEmployee: - "applied_payments,line_items,tracking_categories,purchase_orders,contact,company,employee", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,contact,company,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactCompanyEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,contact,company,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactCompanyPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,contact,company,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactEmployee: - "applied_payments,line_items,tracking_categories,purchase_orders,contact,employee", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,contact,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,contact,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,contact,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,contact,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersEmployee: - "applied_payments,line_items,tracking_categories,purchase_orders,employee", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,payment_term", - AppliedPaymentsPaymentTerm: "applied_payments,payment_term", - AppliedPaymentsPurchaseOrders: "applied_payments,purchase_orders", - AppliedPaymentsPurchaseOrdersAccountingPeriod: "applied_payments,purchase_orders,accounting_period", - AppliedPaymentsPurchaseOrdersAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotes: "applied_payments,purchase_orders,applied_credit_notes", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAccountingPeriod: - "applied_payments,purchase_orders,applied_credit_notes,accounting_period", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCredits: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompany: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContact: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompany: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployee: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesCompany: - "applied_payments,purchase_orders,applied_credit_notes,company", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriod: - "applied_payments,purchase_orders,applied_credit_notes,company,accounting_period", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesCompanyEmployee: - "applied_payments,purchase_orders,applied_credit_notes,company,employee", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "applied_payments,purchase_orders,applied_credit_notes,company,employee,accounting_period", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesCompanyEmployeePaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,company,employee,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesCompanyPaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,company,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesContact: - "applied_payments,purchase_orders,applied_credit_notes,contact", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesContactAccountingPeriod: - "applied_payments,purchase_orders,applied_credit_notes,contact,accounting_period", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesContactCompany: - "applied_payments,purchase_orders,applied_credit_notes,contact,company", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriod: - "applied_payments,purchase_orders,applied_credit_notes,contact,company,accounting_period", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesContactCompanyEmployee: - "applied_payments,purchase_orders,applied_credit_notes,contact,company,employee", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "applied_payments,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesContactCompanyPaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,contact,company,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesContactEmployee: - "applied_payments,purchase_orders,applied_credit_notes,contact,employee", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriod: - "applied_payments,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesContactEmployeePaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,contact,employee,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesContactPaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,contact,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesEmployee: - "applied_payments,purchase_orders,applied_credit_notes,employee", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriod: - "applied_payments,purchase_orders,applied_credit_notes,employee,accounting_period", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesEmployeePaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,employee,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesPaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,payment_term", - AppliedPaymentsPurchaseOrdersAppliedVendorCredits: "applied_payments,purchase_orders,applied_vendor_credits", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsAccountingPeriod: - "applied_payments,purchase_orders,applied_vendor_credits,accounting_period", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsCompany: - "applied_payments,purchase_orders,applied_vendor_credits,company", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriod: - "applied_payments,purchase_orders,applied_vendor_credits,company,accounting_period", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsCompanyEmployee: - "applied_payments,purchase_orders,applied_vendor_credits,company,employee", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "applied_payments,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsCompanyEmployeePaymentTerm: - "applied_payments,purchase_orders,applied_vendor_credits,company,employee,payment_term", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsCompanyPaymentTerm: - "applied_payments,purchase_orders,applied_vendor_credits,company,payment_term", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsContact: - "applied_payments,purchase_orders,applied_vendor_credits,contact", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactAccountingPeriod: - "applied_payments,purchase_orders,applied_vendor_credits,contact,accounting_period", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactCompany: - "applied_payments,purchase_orders,applied_vendor_credits,contact,company", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriod: - "applied_payments,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployee: - "applied_payments,purchase_orders,applied_vendor_credits,contact,company,employee", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "applied_payments,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "applied_payments,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactCompanyPaymentTerm: - "applied_payments,purchase_orders,applied_vendor_credits,contact,company,payment_term", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactEmployee: - "applied_payments,purchase_orders,applied_vendor_credits,contact,employee", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriod: - "applied_payments,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactEmployeePaymentTerm: - "applied_payments,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactPaymentTerm: - "applied_payments,purchase_orders,applied_vendor_credits,contact,payment_term", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsEmployee: - "applied_payments,purchase_orders,applied_vendor_credits,employee", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriod: - "applied_payments,purchase_orders,applied_vendor_credits,employee,accounting_period", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsEmployeePaymentTerm: - "applied_payments,purchase_orders,applied_vendor_credits,employee,payment_term", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsPaymentTerm: - "applied_payments,purchase_orders,applied_vendor_credits,payment_term", - AppliedPaymentsPurchaseOrdersCompany: "applied_payments,purchase_orders,company", - AppliedPaymentsPurchaseOrdersCompanyAccountingPeriod: "applied_payments,purchase_orders,company,accounting_period", - AppliedPaymentsPurchaseOrdersCompanyAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,company,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersCompanyEmployee: "applied_payments,purchase_orders,company,employee", - AppliedPaymentsPurchaseOrdersCompanyEmployeeAccountingPeriod: - "applied_payments,purchase_orders,company,employee,accounting_period", - AppliedPaymentsPurchaseOrdersCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,company,employee,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersCompanyEmployeePaymentTerm: - "applied_payments,purchase_orders,company,employee,payment_term", - AppliedPaymentsPurchaseOrdersCompanyPaymentTerm: "applied_payments,purchase_orders,company,payment_term", - AppliedPaymentsPurchaseOrdersContact: "applied_payments,purchase_orders,contact", - AppliedPaymentsPurchaseOrdersContactAccountingPeriod: "applied_payments,purchase_orders,contact,accounting_period", - AppliedPaymentsPurchaseOrdersContactAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,contact,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersContactCompany: "applied_payments,purchase_orders,contact,company", - AppliedPaymentsPurchaseOrdersContactCompanyAccountingPeriod: - "applied_payments,purchase_orders,contact,company,accounting_period", - AppliedPaymentsPurchaseOrdersContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,contact,company,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersContactCompanyEmployee: "applied_payments,purchase_orders,contact,company,employee", - AppliedPaymentsPurchaseOrdersContactCompanyEmployeeAccountingPeriod: - "applied_payments,purchase_orders,contact,company,employee,accounting_period", - AppliedPaymentsPurchaseOrdersContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersContactCompanyEmployeePaymentTerm: - "applied_payments,purchase_orders,contact,company,employee,payment_term", - AppliedPaymentsPurchaseOrdersContactCompanyPaymentTerm: - "applied_payments,purchase_orders,contact,company,payment_term", - AppliedPaymentsPurchaseOrdersContactEmployee: "applied_payments,purchase_orders,contact,employee", - AppliedPaymentsPurchaseOrdersContactEmployeeAccountingPeriod: - "applied_payments,purchase_orders,contact,employee,accounting_period", - AppliedPaymentsPurchaseOrdersContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,contact,employee,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersContactEmployeePaymentTerm: - "applied_payments,purchase_orders,contact,employee,payment_term", - AppliedPaymentsPurchaseOrdersContactPaymentTerm: "applied_payments,purchase_orders,contact,payment_term", - AppliedPaymentsPurchaseOrdersEmployee: "applied_payments,purchase_orders,employee", - AppliedPaymentsPurchaseOrdersEmployeeAccountingPeriod: - "applied_payments,purchase_orders,employee,accounting_period", - AppliedPaymentsPurchaseOrdersEmployeeAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,employee,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersEmployeePaymentTerm: "applied_payments,purchase_orders,employee,payment_term", - AppliedPaymentsPurchaseOrdersPaymentTerm: "applied_payments,purchase_orders,payment_term", - AppliedPaymentsTrackingCategories: "applied_payments,tracking_categories", - AppliedPaymentsTrackingCategoriesAccountingPeriod: "applied_payments,tracking_categories,accounting_period", - AppliedPaymentsTrackingCategoriesAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotes: "applied_payments,tracking_categories,applied_credit_notes", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAccountingPeriod: - "applied_payments,tracking_categories,applied_credit_notes,accounting_period", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCredits: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompany: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContact: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompany: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployee: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesCompany: - "applied_payments,tracking_categories,applied_credit_notes,company", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesCompanyAccountingPeriod: - "applied_payments,tracking_categories,applied_credit_notes,company,accounting_period", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,company,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesCompanyEmployee: - "applied_payments,tracking_categories,applied_credit_notes,company,employee", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "applied_payments,tracking_categories,applied_credit_notes,company,employee,accounting_period", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,company,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesCompanyEmployeePaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,company,employee,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesCompanyPaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,company,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesContact: - "applied_payments,tracking_categories,applied_credit_notes,contact", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesContactAccountingPeriod: - "applied_payments,tracking_categories,applied_credit_notes,contact,accounting_period", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,contact,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesContactCompany: - "applied_payments,tracking_categories,applied_credit_notes,contact,company", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesContactCompanyAccountingPeriod: - "applied_payments,tracking_categories,applied_credit_notes,contact,company,accounting_period", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,contact,company,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesContactCompanyEmployee: - "applied_payments,tracking_categories,applied_credit_notes,contact,company,employee", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "applied_payments,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,contact,company,employee,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesContactCompanyPaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,contact,company,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesContactEmployee: - "applied_payments,tracking_categories,applied_credit_notes,contact,employee", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesContactEmployeeAccountingPeriod: - "applied_payments,tracking_categories,applied_credit_notes,contact,employee,accounting_period", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,contact,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesContactEmployeePaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,contact,employee,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesContactPaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,contact,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesEmployee: - "applied_payments,tracking_categories,applied_credit_notes,employee", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesEmployeeAccountingPeriod: - "applied_payments,tracking_categories,applied_credit_notes,employee,accounting_period", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesEmployeePaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,employee,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesPaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,payment_term", - AppliedPaymentsTrackingCategoriesAppliedVendorCredits: - "applied_payments,tracking_categories,applied_vendor_credits", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsAccountingPeriod: - "applied_payments,tracking_categories,applied_vendor_credits,accounting_period", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,applied_vendor_credits,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsCompany: - "applied_payments,tracking_categories,applied_vendor_credits,company", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsCompanyAccountingPeriod: - "applied_payments,tracking_categories,applied_vendor_credits,company,accounting_period", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,applied_vendor_credits,company,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsCompanyEmployee: - "applied_payments,tracking_categories,applied_vendor_credits,company,employee", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "applied_payments,tracking_categories,applied_vendor_credits,company,employee,accounting_period", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,applied_vendor_credits,company,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "applied_payments,tracking_categories,applied_vendor_credits,company,employee,payment_term", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsCompanyPaymentTerm: - "applied_payments,tracking_categories,applied_vendor_credits,company,payment_term", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsContact: - "applied_payments,tracking_categories,applied_vendor_credits,contact", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactAccountingPeriod: - "applied_payments,tracking_categories,applied_vendor_credits,contact,accounting_period", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,applied_vendor_credits,contact,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactCompany: - "applied_payments,tracking_categories,applied_vendor_credits,contact,company", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactCompanyAccountingPeriod: - "applied_payments,tracking_categories,applied_vendor_credits,contact,company,accounting_period", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,applied_vendor_credits,contact,company,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployee: - "applied_payments,tracking_categories,applied_vendor_credits,contact,company,employee", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "applied_payments,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "applied_payments,tracking_categories,applied_vendor_credits,contact,company,employee,payment_term", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactCompanyPaymentTerm: - "applied_payments,tracking_categories,applied_vendor_credits,contact,company,payment_term", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactEmployee: - "applied_payments,tracking_categories,applied_vendor_credits,contact,employee", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "applied_payments,tracking_categories,applied_vendor_credits,contact,employee,accounting_period", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,applied_vendor_credits,contact,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactEmployeePaymentTerm: - "applied_payments,tracking_categories,applied_vendor_credits,contact,employee,payment_term", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactPaymentTerm: - "applied_payments,tracking_categories,applied_vendor_credits,contact,payment_term", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsEmployee: - "applied_payments,tracking_categories,applied_vendor_credits,employee", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsEmployeeAccountingPeriod: - "applied_payments,tracking_categories,applied_vendor_credits,employee,accounting_period", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,applied_vendor_credits,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsEmployeePaymentTerm: - "applied_payments,tracking_categories,applied_vendor_credits,employee,payment_term", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsPaymentTerm: - "applied_payments,tracking_categories,applied_vendor_credits,payment_term", - AppliedPaymentsTrackingCategoriesCompany: "applied_payments,tracking_categories,company", - AppliedPaymentsTrackingCategoriesCompanyAccountingPeriod: - "applied_payments,tracking_categories,company,accounting_period", - AppliedPaymentsTrackingCategoriesCompanyAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,company,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesCompanyEmployee: "applied_payments,tracking_categories,company,employee", - AppliedPaymentsTrackingCategoriesCompanyEmployeeAccountingPeriod: - "applied_payments,tracking_categories,company,employee,accounting_period", - AppliedPaymentsTrackingCategoriesCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,company,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesCompanyEmployeePaymentTerm: - "applied_payments,tracking_categories,company,employee,payment_term", - AppliedPaymentsTrackingCategoriesCompanyPaymentTerm: "applied_payments,tracking_categories,company,payment_term", - AppliedPaymentsTrackingCategoriesContact: "applied_payments,tracking_categories,contact", - AppliedPaymentsTrackingCategoriesContactAccountingPeriod: - "applied_payments,tracking_categories,contact,accounting_period", - AppliedPaymentsTrackingCategoriesContactAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,contact,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesContactCompany: "applied_payments,tracking_categories,contact,company", - AppliedPaymentsTrackingCategoriesContactCompanyAccountingPeriod: - "applied_payments,tracking_categories,contact,company,accounting_period", - AppliedPaymentsTrackingCategoriesContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,contact,company,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesContactCompanyEmployee: - "applied_payments,tracking_categories,contact,company,employee", - AppliedPaymentsTrackingCategoriesContactCompanyEmployeeAccountingPeriod: - "applied_payments,tracking_categories,contact,company,employee,accounting_period", - AppliedPaymentsTrackingCategoriesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesContactCompanyEmployeePaymentTerm: - "applied_payments,tracking_categories,contact,company,employee,payment_term", - AppliedPaymentsTrackingCategoriesContactCompanyPaymentTerm: - "applied_payments,tracking_categories,contact,company,payment_term", - AppliedPaymentsTrackingCategoriesContactEmployee: "applied_payments,tracking_categories,contact,employee", - AppliedPaymentsTrackingCategoriesContactEmployeeAccountingPeriod: - "applied_payments,tracking_categories,contact,employee,accounting_period", - AppliedPaymentsTrackingCategoriesContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,contact,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesContactEmployeePaymentTerm: - "applied_payments,tracking_categories,contact,employee,payment_term", - AppliedPaymentsTrackingCategoriesContactPaymentTerm: "applied_payments,tracking_categories,contact,payment_term", - AppliedPaymentsTrackingCategoriesEmployee: "applied_payments,tracking_categories,employee", - AppliedPaymentsTrackingCategoriesEmployeeAccountingPeriod: - "applied_payments,tracking_categories,employee,accounting_period", - AppliedPaymentsTrackingCategoriesEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesEmployeePaymentTerm: "applied_payments,tracking_categories,employee,payment_term", - AppliedPaymentsTrackingCategoriesPaymentTerm: "applied_payments,tracking_categories,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrders: "applied_payments,tracking_categories,purchase_orders", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotes: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCredits: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompany: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContact: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompany: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployee: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompany: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployee: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployeePaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContact: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompany: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployee: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployee: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployeePaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployee: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,employee", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployeePaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,employee,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCredits: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompany: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployee: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployeePaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContact: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompany: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployee: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployee: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployeePaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployee: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,employee", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployeePaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersCompany: - "applied_payments,tracking_categories,purchase_orders,company", - AppliedPaymentsTrackingCategoriesPurchaseOrdersCompanyAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,company,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersCompanyAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,company,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersCompanyEmployee: - "applied_payments,tracking_categories,purchase_orders,company,employee", - AppliedPaymentsTrackingCategoriesPurchaseOrdersCompanyEmployeeAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,company,employee,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,company,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersCompanyEmployeePaymentTerm: - "applied_payments,tracking_categories,purchase_orders,company,employee,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersCompanyPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,company,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersContact: - "applied_payments,tracking_categories,purchase_orders,contact", - AppliedPaymentsTrackingCategoriesPurchaseOrdersContactAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,contact,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersContactAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,contact,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersContactCompany: - "applied_payments,tracking_categories,purchase_orders,contact,company", - AppliedPaymentsTrackingCategoriesPurchaseOrdersContactCompanyAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,contact,company,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,contact,company,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersContactCompanyEmployee: - "applied_payments,tracking_categories,purchase_orders,contact,company,employee", - AppliedPaymentsTrackingCategoriesPurchaseOrdersContactCompanyEmployeeAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,contact,company,employee,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersContactCompanyEmployeePaymentTerm: - "applied_payments,tracking_categories,purchase_orders,contact,company,employee,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersContactCompanyPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,contact,company,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersContactEmployee: - "applied_payments,tracking_categories,purchase_orders,contact,employee", - AppliedPaymentsTrackingCategoriesPurchaseOrdersContactEmployeeAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,contact,employee,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,contact,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersContactEmployeePaymentTerm: - "applied_payments,tracking_categories,purchase_orders,contact,employee,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersContactPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,contact,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersEmployee: - "applied_payments,tracking_categories,purchase_orders,employee", - AppliedPaymentsTrackingCategoriesPurchaseOrdersEmployeeAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,employee,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersEmployeePaymentTerm: - "applied_payments,tracking_categories,purchase_orders,employee,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,payment_term", - AppliedVendorCredits: "applied_vendor_credits", - AppliedVendorCreditsAccountingPeriod: "applied_vendor_credits,accounting_period", - AppliedVendorCreditsAccountingPeriodPaymentTerm: "applied_vendor_credits,accounting_period,payment_term", - AppliedVendorCreditsCompany: "applied_vendor_credits,company", - AppliedVendorCreditsCompanyAccountingPeriod: "applied_vendor_credits,company,accounting_period", - AppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "applied_vendor_credits,company,accounting_period,payment_term", - AppliedVendorCreditsCompanyEmployee: "applied_vendor_credits,company,employee", - AppliedVendorCreditsCompanyEmployeeAccountingPeriod: "applied_vendor_credits,company,employee,accounting_period", - AppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_vendor_credits,company,employee,accounting_period,payment_term", - AppliedVendorCreditsCompanyEmployeePaymentTerm: "applied_vendor_credits,company,employee,payment_term", - AppliedVendorCreditsCompanyPaymentTerm: "applied_vendor_credits,company,payment_term", - AppliedVendorCreditsContact: "applied_vendor_credits,contact", - AppliedVendorCreditsContactAccountingPeriod: "applied_vendor_credits,contact,accounting_period", - AppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "applied_vendor_credits,contact,accounting_period,payment_term", - AppliedVendorCreditsContactCompany: "applied_vendor_credits,contact,company", - AppliedVendorCreditsContactCompanyAccountingPeriod: "applied_vendor_credits,contact,company,accounting_period", - AppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "applied_vendor_credits,contact,company,accounting_period,payment_term", - AppliedVendorCreditsContactCompanyEmployee: "applied_vendor_credits,contact,company,employee", - AppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "applied_vendor_credits,contact,company,employee,accounting_period", - AppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - AppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "applied_vendor_credits,contact,company,employee,payment_term", - AppliedVendorCreditsContactCompanyPaymentTerm: "applied_vendor_credits,contact,company,payment_term", - AppliedVendorCreditsContactEmployee: "applied_vendor_credits,contact,employee", - AppliedVendorCreditsContactEmployeeAccountingPeriod: "applied_vendor_credits,contact,employee,accounting_period", - AppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "applied_vendor_credits,contact,employee,accounting_period,payment_term", - AppliedVendorCreditsContactEmployeePaymentTerm: "applied_vendor_credits,contact,employee,payment_term", - AppliedVendorCreditsContactPaymentTerm: "applied_vendor_credits,contact,payment_term", - AppliedVendorCreditsEmployee: "applied_vendor_credits,employee", - AppliedVendorCreditsEmployeeAccountingPeriod: "applied_vendor_credits,employee,accounting_period", - AppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "applied_vendor_credits,employee,accounting_period,payment_term", - AppliedVendorCreditsEmployeePaymentTerm: "applied_vendor_credits,employee,payment_term", - AppliedVendorCreditsPaymentTerm: "applied_vendor_credits,payment_term", - Company: "company", - CompanyAccountingPeriod: "company,accounting_period", - CompanyAccountingPeriodPaymentTerm: "company,accounting_period,payment_term", - CompanyEmployee: "company,employee", - CompanyEmployeeAccountingPeriod: "company,employee,accounting_period", - CompanyEmployeeAccountingPeriodPaymentTerm: "company,employee,accounting_period,payment_term", - CompanyEmployeePaymentTerm: "company,employee,payment_term", - CompanyPaymentTerm: "company,payment_term", - Contact: "contact", - ContactAccountingPeriod: "contact,accounting_period", - ContactAccountingPeriodPaymentTerm: "contact,accounting_period,payment_term", - ContactCompany: "contact,company", - ContactCompanyAccountingPeriod: "contact,company,accounting_period", - ContactCompanyAccountingPeriodPaymentTerm: "contact,company,accounting_period,payment_term", - ContactCompanyEmployee: "contact,company,employee", - ContactCompanyEmployeeAccountingPeriod: "contact,company,employee,accounting_period", - ContactCompanyEmployeeAccountingPeriodPaymentTerm: "contact,company,employee,accounting_period,payment_term", - ContactCompanyEmployeePaymentTerm: "contact,company,employee,payment_term", - ContactCompanyPaymentTerm: "contact,company,payment_term", - ContactEmployee: "contact,employee", - ContactEmployeeAccountingPeriod: "contact,employee,accounting_period", - ContactEmployeeAccountingPeriodPaymentTerm: "contact,employee,accounting_period,payment_term", - ContactEmployeePaymentTerm: "contact,employee,payment_term", - ContactPaymentTerm: "contact,payment_term", - Employee: "employee", - EmployeeAccountingPeriod: "employee,accounting_period", - EmployeeAccountingPeriodPaymentTerm: "employee,accounting_period,payment_term", - EmployeePaymentTerm: "employee,payment_term", - LineItems: "line_items", - LineItemsAccountingPeriod: "line_items,accounting_period", - LineItemsAccountingPeriodPaymentTerm: "line_items,accounting_period,payment_term", - LineItemsAppliedCreditNotes: "line_items,applied_credit_notes", - LineItemsAppliedCreditNotesAccountingPeriod: "line_items,applied_credit_notes,accounting_period", - LineItemsAppliedCreditNotesAccountingPeriodPaymentTerm: - "line_items,applied_credit_notes,accounting_period,payment_term", - LineItemsAppliedCreditNotesAppliedVendorCredits: "line_items,applied_credit_notes,applied_vendor_credits", - LineItemsAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "line_items,applied_credit_notes,applied_vendor_credits,accounting_period", - LineItemsAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "line_items,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - LineItemsAppliedCreditNotesAppliedVendorCreditsCompany: - "line_items,applied_credit_notes,applied_vendor_credits,company", - LineItemsAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "line_items,applied_credit_notes,applied_vendor_credits,company,accounting_period", - LineItemsAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "line_items,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - LineItemsAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "line_items,applied_credit_notes,applied_vendor_credits,company,employee", - LineItemsAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "line_items,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - LineItemsAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - LineItemsAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "line_items,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - LineItemsAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "line_items,applied_credit_notes,applied_vendor_credits,company,payment_term", - LineItemsAppliedCreditNotesAppliedVendorCreditsContact: - "line_items,applied_credit_notes,applied_vendor_credits,contact", - LineItemsAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "line_items,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - LineItemsAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "line_items,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - LineItemsAppliedCreditNotesAppliedVendorCreditsContactCompany: - "line_items,applied_credit_notes,applied_vendor_credits,contact,company", - LineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "line_items,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - LineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "line_items,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - LineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee", - LineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - LineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - LineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - LineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "line_items,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - LineItemsAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "line_items,applied_credit_notes,applied_vendor_credits,contact,employee", - LineItemsAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "line_items,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - LineItemsAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "line_items,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - LineItemsAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "line_items,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - LineItemsAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "line_items,applied_credit_notes,applied_vendor_credits,contact,payment_term", - LineItemsAppliedCreditNotesAppliedVendorCreditsEmployee: - "line_items,applied_credit_notes,applied_vendor_credits,employee", - LineItemsAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "line_items,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - LineItemsAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "line_items,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - LineItemsAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "line_items,applied_credit_notes,applied_vendor_credits,employee,payment_term", - LineItemsAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "line_items,applied_credit_notes,applied_vendor_credits,payment_term", - LineItemsAppliedCreditNotesCompany: "line_items,applied_credit_notes,company", - LineItemsAppliedCreditNotesCompanyAccountingPeriod: "line_items,applied_credit_notes,company,accounting_period", - LineItemsAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "line_items,applied_credit_notes,company,accounting_period,payment_term", - LineItemsAppliedCreditNotesCompanyEmployee: "line_items,applied_credit_notes,company,employee", - LineItemsAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "line_items,applied_credit_notes,company,employee,accounting_period", - LineItemsAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,applied_credit_notes,company,employee,accounting_period,payment_term", - LineItemsAppliedCreditNotesCompanyEmployeePaymentTerm: - "line_items,applied_credit_notes,company,employee,payment_term", - LineItemsAppliedCreditNotesCompanyPaymentTerm: "line_items,applied_credit_notes,company,payment_term", - LineItemsAppliedCreditNotesContact: "line_items,applied_credit_notes,contact", - LineItemsAppliedCreditNotesContactAccountingPeriod: "line_items,applied_credit_notes,contact,accounting_period", - LineItemsAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "line_items,applied_credit_notes,contact,accounting_period,payment_term", - LineItemsAppliedCreditNotesContactCompany: "line_items,applied_credit_notes,contact,company", - LineItemsAppliedCreditNotesContactCompanyAccountingPeriod: - "line_items,applied_credit_notes,contact,company,accounting_period", - LineItemsAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "line_items,applied_credit_notes,contact,company,accounting_period,payment_term", - LineItemsAppliedCreditNotesContactCompanyEmployee: "line_items,applied_credit_notes,contact,company,employee", - LineItemsAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "line_items,applied_credit_notes,contact,company,employee,accounting_period", - LineItemsAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - LineItemsAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "line_items,applied_credit_notes,contact,company,employee,payment_term", - LineItemsAppliedCreditNotesContactCompanyPaymentTerm: - "line_items,applied_credit_notes,contact,company,payment_term", - LineItemsAppliedCreditNotesContactEmployee: "line_items,applied_credit_notes,contact,employee", - LineItemsAppliedCreditNotesContactEmployeeAccountingPeriod: - "line_items,applied_credit_notes,contact,employee,accounting_period", - LineItemsAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "line_items,applied_credit_notes,contact,employee,accounting_period,payment_term", - LineItemsAppliedCreditNotesContactEmployeePaymentTerm: - "line_items,applied_credit_notes,contact,employee,payment_term", - LineItemsAppliedCreditNotesContactPaymentTerm: "line_items,applied_credit_notes,contact,payment_term", - LineItemsAppliedCreditNotesEmployee: "line_items,applied_credit_notes,employee", - LineItemsAppliedCreditNotesEmployeeAccountingPeriod: "line_items,applied_credit_notes,employee,accounting_period", - LineItemsAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "line_items,applied_credit_notes,employee,accounting_period,payment_term", - LineItemsAppliedCreditNotesEmployeePaymentTerm: "line_items,applied_credit_notes,employee,payment_term", - LineItemsAppliedCreditNotesPaymentTerm: "line_items,applied_credit_notes,payment_term", - LineItemsAppliedVendorCredits: "line_items,applied_vendor_credits", - LineItemsAppliedVendorCreditsAccountingPeriod: "line_items,applied_vendor_credits,accounting_period", - LineItemsAppliedVendorCreditsAccountingPeriodPaymentTerm: - "line_items,applied_vendor_credits,accounting_period,payment_term", - LineItemsAppliedVendorCreditsCompany: "line_items,applied_vendor_credits,company", - LineItemsAppliedVendorCreditsCompanyAccountingPeriod: "line_items,applied_vendor_credits,company,accounting_period", - LineItemsAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "line_items,applied_vendor_credits,company,accounting_period,payment_term", - LineItemsAppliedVendorCreditsCompanyEmployee: "line_items,applied_vendor_credits,company,employee", - LineItemsAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "line_items,applied_vendor_credits,company,employee,accounting_period", - LineItemsAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,applied_vendor_credits,company,employee,accounting_period,payment_term", - LineItemsAppliedVendorCreditsCompanyEmployeePaymentTerm: - "line_items,applied_vendor_credits,company,employee,payment_term", - LineItemsAppliedVendorCreditsCompanyPaymentTerm: "line_items,applied_vendor_credits,company,payment_term", - LineItemsAppliedVendorCreditsContact: "line_items,applied_vendor_credits,contact", - LineItemsAppliedVendorCreditsContactAccountingPeriod: "line_items,applied_vendor_credits,contact,accounting_period", - LineItemsAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "line_items,applied_vendor_credits,contact,accounting_period,payment_term", - LineItemsAppliedVendorCreditsContactCompany: "line_items,applied_vendor_credits,contact,company", - LineItemsAppliedVendorCreditsContactCompanyAccountingPeriod: - "line_items,applied_vendor_credits,contact,company,accounting_period", - LineItemsAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "line_items,applied_vendor_credits,contact,company,accounting_period,payment_term", - LineItemsAppliedVendorCreditsContactCompanyEmployee: "line_items,applied_vendor_credits,contact,company,employee", - LineItemsAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "line_items,applied_vendor_credits,contact,company,employee,accounting_period", - LineItemsAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - LineItemsAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "line_items,applied_vendor_credits,contact,company,employee,payment_term", - LineItemsAppliedVendorCreditsContactCompanyPaymentTerm: - "line_items,applied_vendor_credits,contact,company,payment_term", - LineItemsAppliedVendorCreditsContactEmployee: "line_items,applied_vendor_credits,contact,employee", - LineItemsAppliedVendorCreditsContactEmployeeAccountingPeriod: - "line_items,applied_vendor_credits,contact,employee,accounting_period", - LineItemsAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "line_items,applied_vendor_credits,contact,employee,accounting_period,payment_term", - LineItemsAppliedVendorCreditsContactEmployeePaymentTerm: - "line_items,applied_vendor_credits,contact,employee,payment_term", - LineItemsAppliedVendorCreditsContactPaymentTerm: "line_items,applied_vendor_credits,contact,payment_term", - LineItemsAppliedVendorCreditsEmployee: "line_items,applied_vendor_credits,employee", - LineItemsAppliedVendorCreditsEmployeeAccountingPeriod: - "line_items,applied_vendor_credits,employee,accounting_period", - LineItemsAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "line_items,applied_vendor_credits,employee,accounting_period,payment_term", - LineItemsAppliedVendorCreditsEmployeePaymentTerm: "line_items,applied_vendor_credits,employee,payment_term", - LineItemsAppliedVendorCreditsPaymentTerm: "line_items,applied_vendor_credits,payment_term", - LineItemsCompany: "line_items,company", - LineItemsCompanyAccountingPeriod: "line_items,company,accounting_period", - LineItemsCompanyAccountingPeriodPaymentTerm: "line_items,company,accounting_period,payment_term", - LineItemsCompanyEmployee: "line_items,company,employee", - LineItemsCompanyEmployeeAccountingPeriod: "line_items,company,employee,accounting_period", - LineItemsCompanyEmployeeAccountingPeriodPaymentTerm: "line_items,company,employee,accounting_period,payment_term", - LineItemsCompanyEmployeePaymentTerm: "line_items,company,employee,payment_term", - LineItemsCompanyPaymentTerm: "line_items,company,payment_term", - LineItemsContact: "line_items,contact", - LineItemsContactAccountingPeriod: "line_items,contact,accounting_period", - LineItemsContactAccountingPeriodPaymentTerm: "line_items,contact,accounting_period,payment_term", - LineItemsContactCompany: "line_items,contact,company", - LineItemsContactCompanyAccountingPeriod: "line_items,contact,company,accounting_period", - LineItemsContactCompanyAccountingPeriodPaymentTerm: "line_items,contact,company,accounting_period,payment_term", - LineItemsContactCompanyEmployee: "line_items,contact,company,employee", - LineItemsContactCompanyEmployeeAccountingPeriod: "line_items,contact,company,employee,accounting_period", - LineItemsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,contact,company,employee,accounting_period,payment_term", - LineItemsContactCompanyEmployeePaymentTerm: "line_items,contact,company,employee,payment_term", - LineItemsContactCompanyPaymentTerm: "line_items,contact,company,payment_term", - LineItemsContactEmployee: "line_items,contact,employee", - LineItemsContactEmployeeAccountingPeriod: "line_items,contact,employee,accounting_period", - LineItemsContactEmployeeAccountingPeriodPaymentTerm: "line_items,contact,employee,accounting_period,payment_term", - LineItemsContactEmployeePaymentTerm: "line_items,contact,employee,payment_term", - LineItemsContactPaymentTerm: "line_items,contact,payment_term", - LineItemsEmployee: "line_items,employee", - LineItemsEmployeeAccountingPeriod: "line_items,employee,accounting_period", - LineItemsEmployeeAccountingPeriodPaymentTerm: "line_items,employee,accounting_period,payment_term", - LineItemsEmployeePaymentTerm: "line_items,employee,payment_term", - LineItemsPaymentTerm: "line_items,payment_term", - LineItemsPurchaseOrders: "line_items,purchase_orders", - LineItemsPurchaseOrdersAccountingPeriod: "line_items,purchase_orders,accounting_period", - LineItemsPurchaseOrdersAccountingPeriodPaymentTerm: "line_items,purchase_orders,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotes: "line_items,purchase_orders,applied_credit_notes", - LineItemsPurchaseOrdersAppliedCreditNotesAccountingPeriod: - "line_items,purchase_orders,applied_credit_notes,accounting_period", - LineItemsPurchaseOrdersAppliedCreditNotesAccountingPeriodPaymentTerm: - "line_items,purchase_orders,applied_credit_notes,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCredits: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompany: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContact: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompany: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployee: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesCompany: "line_items,purchase_orders,applied_credit_notes,company", - LineItemsPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriod: - "line_items,purchase_orders,applied_credit_notes,company,accounting_period", - LineItemsPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "line_items,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesCompanyEmployee: - "line_items,purchase_orders,applied_credit_notes,company,employee", - LineItemsPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "line_items,purchase_orders,applied_credit_notes,company,employee,accounting_period", - LineItemsPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesCompanyEmployeePaymentTerm: - "line_items,purchase_orders,applied_credit_notes,company,employee,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesCompanyPaymentTerm: - "line_items,purchase_orders,applied_credit_notes,company,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesContact: "line_items,purchase_orders,applied_credit_notes,contact", - LineItemsPurchaseOrdersAppliedCreditNotesContactAccountingPeriod: - "line_items,purchase_orders,applied_credit_notes,contact,accounting_period", - LineItemsPurchaseOrdersAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "line_items,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesContactCompany: - "line_items,purchase_orders,applied_credit_notes,contact,company", - LineItemsPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriod: - "line_items,purchase_orders,applied_credit_notes,contact,company,accounting_period", - LineItemsPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "line_items,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesContactCompanyEmployee: - "line_items,purchase_orders,applied_credit_notes,contact,company,employee", - LineItemsPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "line_items,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - LineItemsPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "line_items,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesContactCompanyPaymentTerm: - "line_items,purchase_orders,applied_credit_notes,contact,company,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesContactEmployee: - "line_items,purchase_orders,applied_credit_notes,contact,employee", - LineItemsPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriod: - "line_items,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - LineItemsPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "line_items,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesContactEmployeePaymentTerm: - "line_items,purchase_orders,applied_credit_notes,contact,employee,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesContactPaymentTerm: - "line_items,purchase_orders,applied_credit_notes,contact,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesEmployee: "line_items,purchase_orders,applied_credit_notes,employee", - LineItemsPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriod: - "line_items,purchase_orders,applied_credit_notes,employee,accounting_period", - LineItemsPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "line_items,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesEmployeePaymentTerm: - "line_items,purchase_orders,applied_credit_notes,employee,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesPaymentTerm: - "line_items,purchase_orders,applied_credit_notes,payment_term", - LineItemsPurchaseOrdersAppliedVendorCredits: "line_items,purchase_orders,applied_vendor_credits", - LineItemsPurchaseOrdersAppliedVendorCreditsAccountingPeriod: - "line_items,purchase_orders,applied_vendor_credits,accounting_period", - LineItemsPurchaseOrdersAppliedVendorCreditsAccountingPeriodPaymentTerm: - "line_items,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedVendorCreditsCompany: "line_items,purchase_orders,applied_vendor_credits,company", - LineItemsPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriod: - "line_items,purchase_orders,applied_vendor_credits,company,accounting_period", - LineItemsPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "line_items,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedVendorCreditsCompanyEmployee: - "line_items,purchase_orders,applied_vendor_credits,company,employee", - LineItemsPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "line_items,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - LineItemsPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedVendorCreditsCompanyEmployeePaymentTerm: - "line_items,purchase_orders,applied_vendor_credits,company,employee,payment_term", - LineItemsPurchaseOrdersAppliedVendorCreditsCompanyPaymentTerm: - "line_items,purchase_orders,applied_vendor_credits,company,payment_term", - LineItemsPurchaseOrdersAppliedVendorCreditsContact: "line_items,purchase_orders,applied_vendor_credits,contact", - LineItemsPurchaseOrdersAppliedVendorCreditsContactAccountingPeriod: - "line_items,purchase_orders,applied_vendor_credits,contact,accounting_period", - LineItemsPurchaseOrdersAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "line_items,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedVendorCreditsContactCompany: - "line_items,purchase_orders,applied_vendor_credits,contact,company", - LineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriod: - "line_items,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - LineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "line_items,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployee: - "line_items,purchase_orders,applied_vendor_credits,contact,company,employee", - LineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "line_items,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - LineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "line_items,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - LineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyPaymentTerm: - "line_items,purchase_orders,applied_vendor_credits,contact,company,payment_term", - LineItemsPurchaseOrdersAppliedVendorCreditsContactEmployee: - "line_items,purchase_orders,applied_vendor_credits,contact,employee", - LineItemsPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriod: - "line_items,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - LineItemsPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "line_items,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedVendorCreditsContactEmployeePaymentTerm: - "line_items,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - LineItemsPurchaseOrdersAppliedVendorCreditsContactPaymentTerm: - "line_items,purchase_orders,applied_vendor_credits,contact,payment_term", - LineItemsPurchaseOrdersAppliedVendorCreditsEmployee: "line_items,purchase_orders,applied_vendor_credits,employee", - LineItemsPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriod: - "line_items,purchase_orders,applied_vendor_credits,employee,accounting_period", - LineItemsPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "line_items,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedVendorCreditsEmployeePaymentTerm: - "line_items,purchase_orders,applied_vendor_credits,employee,payment_term", - LineItemsPurchaseOrdersAppliedVendorCreditsPaymentTerm: - "line_items,purchase_orders,applied_vendor_credits,payment_term", - LineItemsPurchaseOrdersCompany: "line_items,purchase_orders,company", - LineItemsPurchaseOrdersCompanyAccountingPeriod: "line_items,purchase_orders,company,accounting_period", - LineItemsPurchaseOrdersCompanyAccountingPeriodPaymentTerm: - "line_items,purchase_orders,company,accounting_period,payment_term", - LineItemsPurchaseOrdersCompanyEmployee: "line_items,purchase_orders,company,employee", - LineItemsPurchaseOrdersCompanyEmployeeAccountingPeriod: - "line_items,purchase_orders,company,employee,accounting_period", - LineItemsPurchaseOrdersCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,purchase_orders,company,employee,accounting_period,payment_term", - LineItemsPurchaseOrdersCompanyEmployeePaymentTerm: "line_items,purchase_orders,company,employee,payment_term", - LineItemsPurchaseOrdersCompanyPaymentTerm: "line_items,purchase_orders,company,payment_term", - LineItemsPurchaseOrdersContact: "line_items,purchase_orders,contact", - LineItemsPurchaseOrdersContactAccountingPeriod: "line_items,purchase_orders,contact,accounting_period", - LineItemsPurchaseOrdersContactAccountingPeriodPaymentTerm: - "line_items,purchase_orders,contact,accounting_period,payment_term", - LineItemsPurchaseOrdersContactCompany: "line_items,purchase_orders,contact,company", - LineItemsPurchaseOrdersContactCompanyAccountingPeriod: - "line_items,purchase_orders,contact,company,accounting_period", - LineItemsPurchaseOrdersContactCompanyAccountingPeriodPaymentTerm: - "line_items,purchase_orders,contact,company,accounting_period,payment_term", - LineItemsPurchaseOrdersContactCompanyEmployee: "line_items,purchase_orders,contact,company,employee", - LineItemsPurchaseOrdersContactCompanyEmployeeAccountingPeriod: - "line_items,purchase_orders,contact,company,employee,accounting_period", - LineItemsPurchaseOrdersContactCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,purchase_orders,contact,company,employee,accounting_period,payment_term", - LineItemsPurchaseOrdersContactCompanyEmployeePaymentTerm: - "line_items,purchase_orders,contact,company,employee,payment_term", - LineItemsPurchaseOrdersContactCompanyPaymentTerm: "line_items,purchase_orders,contact,company,payment_term", - LineItemsPurchaseOrdersContactEmployee: "line_items,purchase_orders,contact,employee", - LineItemsPurchaseOrdersContactEmployeeAccountingPeriod: - "line_items,purchase_orders,contact,employee,accounting_period", - LineItemsPurchaseOrdersContactEmployeeAccountingPeriodPaymentTerm: - "line_items,purchase_orders,contact,employee,accounting_period,payment_term", - LineItemsPurchaseOrdersContactEmployeePaymentTerm: "line_items,purchase_orders,contact,employee,payment_term", - LineItemsPurchaseOrdersContactPaymentTerm: "line_items,purchase_orders,contact,payment_term", - LineItemsPurchaseOrdersEmployee: "line_items,purchase_orders,employee", - LineItemsPurchaseOrdersEmployeeAccountingPeriod: "line_items,purchase_orders,employee,accounting_period", - LineItemsPurchaseOrdersEmployeeAccountingPeriodPaymentTerm: - "line_items,purchase_orders,employee,accounting_period,payment_term", - LineItemsPurchaseOrdersEmployeePaymentTerm: "line_items,purchase_orders,employee,payment_term", - LineItemsPurchaseOrdersPaymentTerm: "line_items,purchase_orders,payment_term", - LineItemsTrackingCategories: "line_items,tracking_categories", - LineItemsTrackingCategoriesAccountingPeriod: "line_items,tracking_categories,accounting_period", - LineItemsTrackingCategoriesAccountingPeriodPaymentTerm: - "line_items,tracking_categories,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotes: "line_items,tracking_categories,applied_credit_notes", - LineItemsTrackingCategoriesAppliedCreditNotesAccountingPeriod: - "line_items,tracking_categories,applied_credit_notes,accounting_period", - LineItemsTrackingCategoriesAppliedCreditNotesAccountingPeriodPaymentTerm: - "line_items,tracking_categories,applied_credit_notes,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCredits: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompany: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContact: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompany: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployee: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesCompany: "line_items,tracking_categories,applied_credit_notes,company", - LineItemsTrackingCategoriesAppliedCreditNotesCompanyAccountingPeriod: - "line_items,tracking_categories,applied_credit_notes,company,accounting_period", - LineItemsTrackingCategoriesAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "line_items,tracking_categories,applied_credit_notes,company,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesCompanyEmployee: - "line_items,tracking_categories,applied_credit_notes,company,employee", - LineItemsTrackingCategoriesAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "line_items,tracking_categories,applied_credit_notes,company,employee,accounting_period", - LineItemsTrackingCategoriesAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,applied_credit_notes,company,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesCompanyEmployeePaymentTerm: - "line_items,tracking_categories,applied_credit_notes,company,employee,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesCompanyPaymentTerm: - "line_items,tracking_categories,applied_credit_notes,company,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesContact: "line_items,tracking_categories,applied_credit_notes,contact", - LineItemsTrackingCategoriesAppliedCreditNotesContactAccountingPeriod: - "line_items,tracking_categories,applied_credit_notes,contact,accounting_period", - LineItemsTrackingCategoriesAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "line_items,tracking_categories,applied_credit_notes,contact,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesContactCompany: - "line_items,tracking_categories,applied_credit_notes,contact,company", - LineItemsTrackingCategoriesAppliedCreditNotesContactCompanyAccountingPeriod: - "line_items,tracking_categories,applied_credit_notes,contact,company,accounting_period", - LineItemsTrackingCategoriesAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "line_items,tracking_categories,applied_credit_notes,contact,company,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesContactCompanyEmployee: - "line_items,tracking_categories,applied_credit_notes,contact,company,employee", - LineItemsTrackingCategoriesAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "line_items,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period", - LineItemsTrackingCategoriesAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "line_items,tracking_categories,applied_credit_notes,contact,company,employee,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesContactCompanyPaymentTerm: - "line_items,tracking_categories,applied_credit_notes,contact,company,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesContactEmployee: - "line_items,tracking_categories,applied_credit_notes,contact,employee", - LineItemsTrackingCategoriesAppliedCreditNotesContactEmployeeAccountingPeriod: - "line_items,tracking_categories,applied_credit_notes,contact,employee,accounting_period", - LineItemsTrackingCategoriesAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,applied_credit_notes,contact,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesContactEmployeePaymentTerm: - "line_items,tracking_categories,applied_credit_notes,contact,employee,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesContactPaymentTerm: - "line_items,tracking_categories,applied_credit_notes,contact,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesEmployee: - "line_items,tracking_categories,applied_credit_notes,employee", - LineItemsTrackingCategoriesAppliedCreditNotesEmployeeAccountingPeriod: - "line_items,tracking_categories,applied_credit_notes,employee,accounting_period", - LineItemsTrackingCategoriesAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,applied_credit_notes,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesEmployeePaymentTerm: - "line_items,tracking_categories,applied_credit_notes,employee,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesPaymentTerm: - "line_items,tracking_categories,applied_credit_notes,payment_term", - LineItemsTrackingCategoriesAppliedVendorCredits: "line_items,tracking_categories,applied_vendor_credits", - LineItemsTrackingCategoriesAppliedVendorCreditsAccountingPeriod: - "line_items,tracking_categories,applied_vendor_credits,accounting_period", - LineItemsTrackingCategoriesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "line_items,tracking_categories,applied_vendor_credits,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedVendorCreditsCompany: - "line_items,tracking_categories,applied_vendor_credits,company", - LineItemsTrackingCategoriesAppliedVendorCreditsCompanyAccountingPeriod: - "line_items,tracking_categories,applied_vendor_credits,company,accounting_period", - LineItemsTrackingCategoriesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "line_items,tracking_categories,applied_vendor_credits,company,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedVendorCreditsCompanyEmployee: - "line_items,tracking_categories,applied_vendor_credits,company,employee", - LineItemsTrackingCategoriesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "line_items,tracking_categories,applied_vendor_credits,company,employee,accounting_period", - LineItemsTrackingCategoriesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,applied_vendor_credits,company,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "line_items,tracking_categories,applied_vendor_credits,company,employee,payment_term", - LineItemsTrackingCategoriesAppliedVendorCreditsCompanyPaymentTerm: - "line_items,tracking_categories,applied_vendor_credits,company,payment_term", - LineItemsTrackingCategoriesAppliedVendorCreditsContact: - "line_items,tracking_categories,applied_vendor_credits,contact", - LineItemsTrackingCategoriesAppliedVendorCreditsContactAccountingPeriod: - "line_items,tracking_categories,applied_vendor_credits,contact,accounting_period", - LineItemsTrackingCategoriesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "line_items,tracking_categories,applied_vendor_credits,contact,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedVendorCreditsContactCompany: - "line_items,tracking_categories,applied_vendor_credits,contact,company", - LineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyAccountingPeriod: - "line_items,tracking_categories,applied_vendor_credits,contact,company,accounting_period", - LineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "line_items,tracking_categories,applied_vendor_credits,contact,company,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployee: - "line_items,tracking_categories,applied_vendor_credits,contact,company,employee", - LineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "line_items,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period", - LineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "line_items,tracking_categories,applied_vendor_credits,contact,company,employee,payment_term", - LineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyPaymentTerm: - "line_items,tracking_categories,applied_vendor_credits,contact,company,payment_term", - LineItemsTrackingCategoriesAppliedVendorCreditsContactEmployee: - "line_items,tracking_categories,applied_vendor_credits,contact,employee", - LineItemsTrackingCategoriesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "line_items,tracking_categories,applied_vendor_credits,contact,employee,accounting_period", - LineItemsTrackingCategoriesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,applied_vendor_credits,contact,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedVendorCreditsContactEmployeePaymentTerm: - "line_items,tracking_categories,applied_vendor_credits,contact,employee,payment_term", - LineItemsTrackingCategoriesAppliedVendorCreditsContactPaymentTerm: - "line_items,tracking_categories,applied_vendor_credits,contact,payment_term", - LineItemsTrackingCategoriesAppliedVendorCreditsEmployee: - "line_items,tracking_categories,applied_vendor_credits,employee", - LineItemsTrackingCategoriesAppliedVendorCreditsEmployeeAccountingPeriod: - "line_items,tracking_categories,applied_vendor_credits,employee,accounting_period", - LineItemsTrackingCategoriesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,applied_vendor_credits,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedVendorCreditsEmployeePaymentTerm: - "line_items,tracking_categories,applied_vendor_credits,employee,payment_term", - LineItemsTrackingCategoriesAppliedVendorCreditsPaymentTerm: - "line_items,tracking_categories,applied_vendor_credits,payment_term", - LineItemsTrackingCategoriesCompany: "line_items,tracking_categories,company", - LineItemsTrackingCategoriesCompanyAccountingPeriod: "line_items,tracking_categories,company,accounting_period", - LineItemsTrackingCategoriesCompanyAccountingPeriodPaymentTerm: - "line_items,tracking_categories,company,accounting_period,payment_term", - LineItemsTrackingCategoriesCompanyEmployee: "line_items,tracking_categories,company,employee", - LineItemsTrackingCategoriesCompanyEmployeeAccountingPeriod: - "line_items,tracking_categories,company,employee,accounting_period", - LineItemsTrackingCategoriesCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,company,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesCompanyEmployeePaymentTerm: - "line_items,tracking_categories,company,employee,payment_term", - LineItemsTrackingCategoriesCompanyPaymentTerm: "line_items,tracking_categories,company,payment_term", - LineItemsTrackingCategoriesContact: "line_items,tracking_categories,contact", - LineItemsTrackingCategoriesContactAccountingPeriod: "line_items,tracking_categories,contact,accounting_period", - LineItemsTrackingCategoriesContactAccountingPeriodPaymentTerm: - "line_items,tracking_categories,contact,accounting_period,payment_term", - LineItemsTrackingCategoriesContactCompany: "line_items,tracking_categories,contact,company", - LineItemsTrackingCategoriesContactCompanyAccountingPeriod: - "line_items,tracking_categories,contact,company,accounting_period", - LineItemsTrackingCategoriesContactCompanyAccountingPeriodPaymentTerm: - "line_items,tracking_categories,contact,company,accounting_period,payment_term", - LineItemsTrackingCategoriesContactCompanyEmployee: "line_items,tracking_categories,contact,company,employee", - LineItemsTrackingCategoriesContactCompanyEmployeeAccountingPeriod: - "line_items,tracking_categories,contact,company,employee,accounting_period", - LineItemsTrackingCategoriesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,contact,company,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesContactCompanyEmployeePaymentTerm: - "line_items,tracking_categories,contact,company,employee,payment_term", - LineItemsTrackingCategoriesContactCompanyPaymentTerm: "line_items,tracking_categories,contact,company,payment_term", - LineItemsTrackingCategoriesContactEmployee: "line_items,tracking_categories,contact,employee", - LineItemsTrackingCategoriesContactEmployeeAccountingPeriod: - "line_items,tracking_categories,contact,employee,accounting_period", - LineItemsTrackingCategoriesContactEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,contact,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesContactEmployeePaymentTerm: - "line_items,tracking_categories,contact,employee,payment_term", - LineItemsTrackingCategoriesContactPaymentTerm: "line_items,tracking_categories,contact,payment_term", - LineItemsTrackingCategoriesEmployee: "line_items,tracking_categories,employee", - LineItemsTrackingCategoriesEmployeeAccountingPeriod: "line_items,tracking_categories,employee,accounting_period", - LineItemsTrackingCategoriesEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesEmployeePaymentTerm: "line_items,tracking_categories,employee,payment_term", - LineItemsTrackingCategoriesPaymentTerm: "line_items,tracking_categories,payment_term", - LineItemsTrackingCategoriesPurchaseOrders: "line_items,tracking_categories,purchase_orders", - LineItemsTrackingCategoriesPurchaseOrdersAccountingPeriod: - "line_items,tracking_categories,purchase_orders,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotes: - "line_items,tracking_categories,purchase_orders,applied_credit_notes", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAccountingPeriod: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCredits: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompany: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContact: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompany: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployee: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompany: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,company", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriod: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployee: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployeePaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,company,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContact: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactAccountingPeriod: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompany: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriod: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployee: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployee: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriod: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployeePaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployee: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,employee", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriod: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployeePaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCredits: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsAccountingPeriod: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompany: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,company", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriod: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployee: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployeePaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContact: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactAccountingPeriod: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompany: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriod: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployee: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployee: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriod: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployeePaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployee: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriod: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployeePaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersCompany: "line_items,tracking_categories,purchase_orders,company", - LineItemsTrackingCategoriesPurchaseOrdersCompanyAccountingPeriod: - "line_items,tracking_categories,purchase_orders,company,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersCompanyAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,company,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersCompanyEmployee: - "line_items,tracking_categories,purchase_orders,company,employee", - LineItemsTrackingCategoriesPurchaseOrdersCompanyEmployeeAccountingPeriod: - "line_items,tracking_categories,purchase_orders,company,employee,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,company,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersCompanyEmployeePaymentTerm: - "line_items,tracking_categories,purchase_orders,company,employee,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersCompanyPaymentTerm: - "line_items,tracking_categories,purchase_orders,company,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersContact: "line_items,tracking_categories,purchase_orders,contact", - LineItemsTrackingCategoriesPurchaseOrdersContactAccountingPeriod: - "line_items,tracking_categories,purchase_orders,contact,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersContactAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,contact,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersContactCompany: - "line_items,tracking_categories,purchase_orders,contact,company", - LineItemsTrackingCategoriesPurchaseOrdersContactCompanyAccountingPeriod: - "line_items,tracking_categories,purchase_orders,contact,company,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersContactCompanyAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,contact,company,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersContactCompanyEmployee: - "line_items,tracking_categories,purchase_orders,contact,company,employee", - LineItemsTrackingCategoriesPurchaseOrdersContactCompanyEmployeeAccountingPeriod: - "line_items,tracking_categories,purchase_orders,contact,company,employee,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersContactCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,contact,company,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersContactCompanyEmployeePaymentTerm: - "line_items,tracking_categories,purchase_orders,contact,company,employee,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersContactCompanyPaymentTerm: - "line_items,tracking_categories,purchase_orders,contact,company,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersContactEmployee: - "line_items,tracking_categories,purchase_orders,contact,employee", - LineItemsTrackingCategoriesPurchaseOrdersContactEmployeeAccountingPeriod: - "line_items,tracking_categories,purchase_orders,contact,employee,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersContactEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,contact,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersContactEmployeePaymentTerm: - "line_items,tracking_categories,purchase_orders,contact,employee,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersContactPaymentTerm: - "line_items,tracking_categories,purchase_orders,contact,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersEmployee: "line_items,tracking_categories,purchase_orders,employee", - LineItemsTrackingCategoriesPurchaseOrdersEmployeeAccountingPeriod: - "line_items,tracking_categories,purchase_orders,employee,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersEmployeePaymentTerm: - "line_items,tracking_categories,purchase_orders,employee,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersPaymentTerm: "line_items,tracking_categories,purchase_orders,payment_term", - PaymentTerm: "payment_term", - Payments: "payments", - PaymentsAccountingPeriod: "payments,accounting_period", - PaymentsAccountingPeriodPaymentTerm: "payments,accounting_period,payment_term", - PaymentsAppliedCreditNotes: "payments,applied_credit_notes", - PaymentsAppliedCreditNotesAccountingPeriod: "payments,applied_credit_notes,accounting_period", - PaymentsAppliedCreditNotesAccountingPeriodPaymentTerm: - "payments,applied_credit_notes,accounting_period,payment_term", - PaymentsAppliedCreditNotesAppliedVendorCredits: "payments,applied_credit_notes,applied_vendor_credits", - PaymentsAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "payments,applied_credit_notes,applied_vendor_credits,accounting_period", - PaymentsAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - PaymentsAppliedCreditNotesAppliedVendorCreditsCompany: - "payments,applied_credit_notes,applied_vendor_credits,company", - PaymentsAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "payments,applied_credit_notes,applied_vendor_credits,company,accounting_period", - PaymentsAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "payments,applied_credit_notes,applied_vendor_credits,company,employee", - PaymentsAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - PaymentsAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - PaymentsAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "payments,applied_credit_notes,applied_vendor_credits,company,payment_term", - PaymentsAppliedCreditNotesAppliedVendorCreditsContact: - "payments,applied_credit_notes,applied_vendor_credits,contact", - PaymentsAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "payments,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - PaymentsAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsAppliedCreditNotesAppliedVendorCreditsContactCompany: - "payments,applied_credit_notes,applied_vendor_credits,contact,company", - PaymentsAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - PaymentsAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "payments,applied_credit_notes,applied_vendor_credits,contact,company,employee", - PaymentsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - PaymentsAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "payments,applied_credit_notes,applied_vendor_credits,contact,employee", - PaymentsAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - PaymentsAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - PaymentsAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "payments,applied_credit_notes,applied_vendor_credits,contact,payment_term", - PaymentsAppliedCreditNotesAppliedVendorCreditsEmployee: - "payments,applied_credit_notes,applied_vendor_credits,employee", - PaymentsAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - PaymentsAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "payments,applied_credit_notes,applied_vendor_credits,employee,payment_term", - PaymentsAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "payments,applied_credit_notes,applied_vendor_credits,payment_term", - PaymentsAppliedCreditNotesCompany: "payments,applied_credit_notes,company", - PaymentsAppliedCreditNotesCompanyAccountingPeriod: "payments,applied_credit_notes,company,accounting_period", - PaymentsAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "payments,applied_credit_notes,company,accounting_period,payment_term", - PaymentsAppliedCreditNotesCompanyEmployee: "payments,applied_credit_notes,company,employee", - PaymentsAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "payments,applied_credit_notes,company,employee,accounting_period", - PaymentsAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_credit_notes,company,employee,accounting_period,payment_term", - PaymentsAppliedCreditNotesCompanyEmployeePaymentTerm: "payments,applied_credit_notes,company,employee,payment_term", - PaymentsAppliedCreditNotesCompanyPaymentTerm: "payments,applied_credit_notes,company,payment_term", - PaymentsAppliedCreditNotesContact: "payments,applied_credit_notes,contact", - PaymentsAppliedCreditNotesContactAccountingPeriod: "payments,applied_credit_notes,contact,accounting_period", - PaymentsAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "payments,applied_credit_notes,contact,accounting_period,payment_term", - PaymentsAppliedCreditNotesContactCompany: "payments,applied_credit_notes,contact,company", - PaymentsAppliedCreditNotesContactCompanyAccountingPeriod: - "payments,applied_credit_notes,contact,company,accounting_period", - PaymentsAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_credit_notes,contact,company,accounting_period,payment_term", - PaymentsAppliedCreditNotesContactCompanyEmployee: "payments,applied_credit_notes,contact,company,employee", - PaymentsAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "payments,applied_credit_notes,contact,company,employee,accounting_period", - PaymentsAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "payments,applied_credit_notes,contact,company,employee,payment_term", - PaymentsAppliedCreditNotesContactCompanyPaymentTerm: "payments,applied_credit_notes,contact,company,payment_term", - PaymentsAppliedCreditNotesContactEmployee: "payments,applied_credit_notes,contact,employee", - PaymentsAppliedCreditNotesContactEmployeeAccountingPeriod: - "payments,applied_credit_notes,contact,employee,accounting_period", - PaymentsAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_credit_notes,contact,employee,accounting_period,payment_term", - PaymentsAppliedCreditNotesContactEmployeePaymentTerm: "payments,applied_credit_notes,contact,employee,payment_term", - PaymentsAppliedCreditNotesContactPaymentTerm: "payments,applied_credit_notes,contact,payment_term", - PaymentsAppliedCreditNotesEmployee: "payments,applied_credit_notes,employee", - PaymentsAppliedCreditNotesEmployeeAccountingPeriod: "payments,applied_credit_notes,employee,accounting_period", - PaymentsAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "payments,applied_credit_notes,employee,accounting_period,payment_term", - PaymentsAppliedCreditNotesEmployeePaymentTerm: "payments,applied_credit_notes,employee,payment_term", - PaymentsAppliedCreditNotesPaymentTerm: "payments,applied_credit_notes,payment_term", - PaymentsAppliedPayments: "payments,applied_payments", - PaymentsAppliedPaymentsAccountingPeriod: "payments,applied_payments,accounting_period", - PaymentsAppliedPaymentsAccountingPeriodPaymentTerm: "payments,applied_payments,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotes: "payments,applied_payments,applied_credit_notes", - PaymentsAppliedPaymentsAppliedCreditNotesAccountingPeriod: - "payments,applied_payments,applied_credit_notes,accounting_period", - PaymentsAppliedPaymentsAppliedCreditNotesAccountingPeriodPaymentTerm: - "payments,applied_payments,applied_credit_notes,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCredits: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,accounting_period", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsCompany: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,company", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,company,accounting_period", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,company,employee", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,company,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContact: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactCompany: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,company", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,employee", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,employee", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsEmployee: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,employee", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,employee,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesCompany: "payments,applied_payments,applied_credit_notes,company", - PaymentsAppliedPaymentsAppliedCreditNotesCompanyAccountingPeriod: - "payments,applied_payments,applied_credit_notes,company,accounting_period", - PaymentsAppliedPaymentsAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,applied_credit_notes,company,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesCompanyEmployee: - "payments,applied_payments,applied_credit_notes,company,employee", - PaymentsAppliedPaymentsAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "payments,applied_payments,applied_credit_notes,company,employee,accounting_period", - PaymentsAppliedPaymentsAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,applied_credit_notes,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesCompanyEmployeePaymentTerm: - "payments,applied_payments,applied_credit_notes,company,employee,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesCompanyPaymentTerm: - "payments,applied_payments,applied_credit_notes,company,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesContact: "payments,applied_payments,applied_credit_notes,contact", - PaymentsAppliedPaymentsAppliedCreditNotesContactAccountingPeriod: - "payments,applied_payments,applied_credit_notes,contact,accounting_period", - PaymentsAppliedPaymentsAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "payments,applied_payments,applied_credit_notes,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesContactCompany: - "payments,applied_payments,applied_credit_notes,contact,company", - PaymentsAppliedPaymentsAppliedCreditNotesContactCompanyAccountingPeriod: - "payments,applied_payments,applied_credit_notes,contact,company,accounting_period", - PaymentsAppliedPaymentsAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,applied_credit_notes,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesContactCompanyEmployee: - "payments,applied_payments,applied_credit_notes,contact,company,employee", - PaymentsAppliedPaymentsAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,applied_credit_notes,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "payments,applied_payments,applied_credit_notes,contact,company,employee,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesContactCompanyPaymentTerm: - "payments,applied_payments,applied_credit_notes,contact,company,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesContactEmployee: - "payments,applied_payments,applied_credit_notes,contact,employee", - PaymentsAppliedPaymentsAppliedCreditNotesContactEmployeeAccountingPeriod: - "payments,applied_payments,applied_credit_notes,contact,employee,accounting_period", - PaymentsAppliedPaymentsAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,applied_credit_notes,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesContactEmployeePaymentTerm: - "payments,applied_payments,applied_credit_notes,contact,employee,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesContactPaymentTerm: - "payments,applied_payments,applied_credit_notes,contact,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesEmployee: "payments,applied_payments,applied_credit_notes,employee", - PaymentsAppliedPaymentsAppliedCreditNotesEmployeeAccountingPeriod: - "payments,applied_payments,applied_credit_notes,employee,accounting_period", - PaymentsAppliedPaymentsAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,applied_credit_notes,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesEmployeePaymentTerm: - "payments,applied_payments,applied_credit_notes,employee,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesPaymentTerm: "payments,applied_payments,applied_credit_notes,payment_term", - PaymentsAppliedPaymentsAppliedVendorCredits: "payments,applied_payments,applied_vendor_credits", - PaymentsAppliedPaymentsAppliedVendorCreditsAccountingPeriod: - "payments,applied_payments,applied_vendor_credits,accounting_period", - PaymentsAppliedPaymentsAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,applied_payments,applied_vendor_credits,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedVendorCreditsCompany: "payments,applied_payments,applied_vendor_credits,company", - PaymentsAppliedPaymentsAppliedVendorCreditsCompanyAccountingPeriod: - "payments,applied_payments,applied_vendor_credits,company,accounting_period", - PaymentsAppliedPaymentsAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedVendorCreditsCompanyEmployee: - "payments,applied_payments,applied_vendor_credits,company,employee", - PaymentsAppliedPaymentsAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,applied_payments,applied_vendor_credits,company,employee,accounting_period", - PaymentsAppliedPaymentsAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,applied_payments,applied_vendor_credits,company,employee,payment_term", - PaymentsAppliedPaymentsAppliedVendorCreditsCompanyPaymentTerm: - "payments,applied_payments,applied_vendor_credits,company,payment_term", - PaymentsAppliedPaymentsAppliedVendorCreditsContact: "payments,applied_payments,applied_vendor_credits,contact", - PaymentsAppliedPaymentsAppliedVendorCreditsContactAccountingPeriod: - "payments,applied_payments,applied_vendor_credits,contact,accounting_period", - PaymentsAppliedPaymentsAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,applied_payments,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedVendorCreditsContactCompany: - "payments,applied_payments,applied_vendor_credits,contact,company", - PaymentsAppliedPaymentsAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,applied_payments,applied_vendor_credits,contact,company,accounting_period", - PaymentsAppliedPaymentsAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedVendorCreditsContactCompanyEmployee: - "payments,applied_payments,applied_vendor_credits,contact,company,employee", - PaymentsAppliedPaymentsAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,applied_payments,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsAppliedPaymentsAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,applied_payments,applied_vendor_credits,contact,company,payment_term", - PaymentsAppliedPaymentsAppliedVendorCreditsContactEmployee: - "payments,applied_payments,applied_vendor_credits,contact,employee", - PaymentsAppliedPaymentsAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,applied_payments,applied_vendor_credits,contact,employee,accounting_period", - PaymentsAppliedPaymentsAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,applied_payments,applied_vendor_credits,contact,employee,payment_term", - PaymentsAppliedPaymentsAppliedVendorCreditsContactPaymentTerm: - "payments,applied_payments,applied_vendor_credits,contact,payment_term", - PaymentsAppliedPaymentsAppliedVendorCreditsEmployee: "payments,applied_payments,applied_vendor_credits,employee", - PaymentsAppliedPaymentsAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,applied_payments,applied_vendor_credits,employee,accounting_period", - PaymentsAppliedPaymentsAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedVendorCreditsEmployeePaymentTerm: - "payments,applied_payments,applied_vendor_credits,employee,payment_term", - PaymentsAppliedPaymentsAppliedVendorCreditsPaymentTerm: - "payments,applied_payments,applied_vendor_credits,payment_term", - PaymentsAppliedPaymentsCompany: "payments,applied_payments,company", - PaymentsAppliedPaymentsCompanyAccountingPeriod: "payments,applied_payments,company,accounting_period", - PaymentsAppliedPaymentsCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,company,accounting_period,payment_term", - PaymentsAppliedPaymentsCompanyEmployee: "payments,applied_payments,company,employee", - PaymentsAppliedPaymentsCompanyEmployeeAccountingPeriod: - "payments,applied_payments,company,employee,accounting_period", - PaymentsAppliedPaymentsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsCompanyEmployeePaymentTerm: "payments,applied_payments,company,employee,payment_term", - PaymentsAppliedPaymentsCompanyPaymentTerm: "payments,applied_payments,company,payment_term", - PaymentsAppliedPaymentsContact: "payments,applied_payments,contact", - PaymentsAppliedPaymentsContactAccountingPeriod: "payments,applied_payments,contact,accounting_period", - PaymentsAppliedPaymentsContactAccountingPeriodPaymentTerm: - "payments,applied_payments,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsContactCompany: "payments,applied_payments,contact,company", - PaymentsAppliedPaymentsContactCompanyAccountingPeriod: - "payments,applied_payments,contact,company,accounting_period", - PaymentsAppliedPaymentsContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsContactCompanyEmployee: "payments,applied_payments,contact,company,employee", - PaymentsAppliedPaymentsContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsContactCompanyEmployeePaymentTerm: - "payments,applied_payments,contact,company,employee,payment_term", - PaymentsAppliedPaymentsContactCompanyPaymentTerm: "payments,applied_payments,contact,company,payment_term", - PaymentsAppliedPaymentsContactEmployee: "payments,applied_payments,contact,employee", - PaymentsAppliedPaymentsContactEmployeeAccountingPeriod: - "payments,applied_payments,contact,employee,accounting_period", - PaymentsAppliedPaymentsContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsContactEmployeePaymentTerm: "payments,applied_payments,contact,employee,payment_term", - PaymentsAppliedPaymentsContactPaymentTerm: "payments,applied_payments,contact,payment_term", - PaymentsAppliedPaymentsEmployee: "payments,applied_payments,employee", - PaymentsAppliedPaymentsEmployeeAccountingPeriod: "payments,applied_payments,employee,accounting_period", - PaymentsAppliedPaymentsEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsEmployeePaymentTerm: "payments,applied_payments,employee,payment_term", - PaymentsAppliedPaymentsLineItems: "payments,applied_payments,line_items", - PaymentsAppliedPaymentsLineItemsAccountingPeriod: "payments,applied_payments,line_items,accounting_period", - PaymentsAppliedPaymentsLineItemsAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotes: "payments,applied_payments,line_items,applied_credit_notes", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAccountingPeriod: - "payments,applied_payments,line_items,applied_credit_notes,accounting_period", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCredits: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,accounting_period", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsCompany: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,accounting_period", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContact: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactCompany: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsEmployee: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,employee", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,employee,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesCompany: - "payments,applied_payments,line_items,applied_credit_notes,company", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesCompanyAccountingPeriod: - "payments,applied_payments,line_items,applied_credit_notes,company,accounting_period", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesCompanyEmployee: - "payments,applied_payments,line_items,applied_credit_notes,company,employee", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,applied_credit_notes,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesCompanyPaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,company,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesContact: - "payments,applied_payments,line_items,applied_credit_notes,contact", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesContactAccountingPeriod: - "payments,applied_payments,line_items,applied_credit_notes,contact,accounting_period", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesContactCompany: - "payments,applied_payments,line_items,applied_credit_notes,contact,company", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesContactCompanyAccountingPeriod: - "payments,applied_payments,line_items,applied_credit_notes,contact,company,accounting_period", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesContactCompanyEmployee: - "payments,applied_payments,line_items,applied_credit_notes,contact,company,employee", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,applied_credit_notes,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,contact,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesContactCompanyPaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,contact,company,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesContactEmployee: - "payments,applied_payments,line_items,applied_credit_notes,contact,employee", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesContactEmployeeAccountingPeriod: - "payments,applied_payments,line_items,applied_credit_notes,contact,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesContactEmployeePaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,contact,employee,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesContactPaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,contact,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesEmployee: - "payments,applied_payments,line_items,applied_credit_notes,employee", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesEmployeeAccountingPeriod: - "payments,applied_payments,line_items,applied_credit_notes,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesEmployeePaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,employee,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesPaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedVendorCredits: "payments,applied_payments,line_items,applied_vendor_credits", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsAccountingPeriod: - "payments,applied_payments,line_items,applied_vendor_credits,accounting_period", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,applied_vendor_credits,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsCompany: - "payments,applied_payments,line_items,applied_vendor_credits,company", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsCompanyAccountingPeriod: - "payments,applied_payments,line_items,applied_vendor_credits,company,accounting_period", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsCompanyEmployee: - "payments,applied_payments,line_items,applied_vendor_credits,company,employee", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,applied_vendor_credits,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,applied_vendor_credits,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsCompanyPaymentTerm: - "payments,applied_payments,line_items,applied_vendor_credits,company,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsContact: - "payments,applied_payments,line_items,applied_vendor_credits,contact", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsContactAccountingPeriod: - "payments,applied_payments,line_items,applied_vendor_credits,contact,accounting_period", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsContactCompany: - "payments,applied_payments,line_items,applied_vendor_credits,contact,company", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,applied_payments,line_items,applied_vendor_credits,contact,company,accounting_period", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsContactCompanyEmployee: - "payments,applied_payments,line_items,applied_vendor_credits,contact,company,employee", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,applied_payments,line_items,applied_vendor_credits,contact,company,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsContactEmployee: - "payments,applied_payments,line_items,applied_vendor_credits,contact,employee", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,applied_payments,line_items,applied_vendor_credits,contact,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,applied_payments,line_items,applied_vendor_credits,contact,employee,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsContactPaymentTerm: - "payments,applied_payments,line_items,applied_vendor_credits,contact,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsEmployee: - "payments,applied_payments,line_items,applied_vendor_credits,employee", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,applied_payments,line_items,applied_vendor_credits,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsEmployeePaymentTerm: - "payments,applied_payments,line_items,applied_vendor_credits,employee,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsPaymentTerm: - "payments,applied_payments,line_items,applied_vendor_credits,payment_term", - PaymentsAppliedPaymentsLineItemsCompany: "payments,applied_payments,line_items,company", - PaymentsAppliedPaymentsLineItemsCompanyAccountingPeriod: - "payments,applied_payments,line_items,company,accounting_period", - PaymentsAppliedPaymentsLineItemsCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsCompanyEmployee: "payments,applied_payments,line_items,company,employee", - PaymentsAppliedPaymentsLineItemsCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsCompanyPaymentTerm: "payments,applied_payments,line_items,company,payment_term", - PaymentsAppliedPaymentsLineItemsContact: "payments,applied_payments,line_items,contact", - PaymentsAppliedPaymentsLineItemsContactAccountingPeriod: - "payments,applied_payments,line_items,contact,accounting_period", - PaymentsAppliedPaymentsLineItemsContactAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsContactCompany: "payments,applied_payments,line_items,contact,company", - PaymentsAppliedPaymentsLineItemsContactCompanyAccountingPeriod: - "payments,applied_payments,line_items,contact,company,accounting_period", - PaymentsAppliedPaymentsLineItemsContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsContactCompanyEmployee: - "payments,applied_payments,line_items,contact,company,employee", - PaymentsAppliedPaymentsLineItemsContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsContactCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,contact,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsContactCompanyPaymentTerm: - "payments,applied_payments,line_items,contact,company,payment_term", - PaymentsAppliedPaymentsLineItemsContactEmployee: "payments,applied_payments,line_items,contact,employee", - PaymentsAppliedPaymentsLineItemsContactEmployeeAccountingPeriod: - "payments,applied_payments,line_items,contact,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsContactEmployeePaymentTerm: - "payments,applied_payments,line_items,contact,employee,payment_term", - PaymentsAppliedPaymentsLineItemsContactPaymentTerm: "payments,applied_payments,line_items,contact,payment_term", - PaymentsAppliedPaymentsLineItemsEmployee: "payments,applied_payments,line_items,employee", - PaymentsAppliedPaymentsLineItemsEmployeeAccountingPeriod: - "payments,applied_payments,line_items,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsEmployeePaymentTerm: "payments,applied_payments,line_items,employee,payment_term", - PaymentsAppliedPaymentsLineItemsPaymentTerm: "payments,applied_payments,line_items,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrders: "payments,applied_payments,line_items,purchase_orders", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotes: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCredits: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompany: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContact: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompany: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployee: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesCompany: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,company", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,company,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesCompanyEmployee: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,company,employee", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesCompanyPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,company,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContact: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactCompany: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactCompanyEmployee: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactCompanyPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactEmployee: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,employee", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactEmployeePaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,employee,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesEmployee: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,employee", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesEmployeePaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,employee,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCredits: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsCompany: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,company", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,company,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsCompanyEmployee: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,company,employee", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsCompanyPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,company,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContact: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactCompany: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployee: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactEmployee: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,employee", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsEmployee: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,employee", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsEmployeePaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,employee,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersCompany: - "payments,applied_payments,line_items,purchase_orders,company", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersCompanyAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,company,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersCompanyEmployee: - "payments,applied_payments,line_items,purchase_orders,company,employee", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,purchase_orders,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersCompanyPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,company,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersContact: - "payments,applied_payments,line_items,purchase_orders,contact", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersContactAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,contact,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersContactAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersContactCompany: - "payments,applied_payments,line_items,purchase_orders,contact,company", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersContactCompanyAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,contact,company,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersContactCompanyEmployee: - "payments,applied_payments,line_items,purchase_orders,contact,company,employee", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersContactCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,purchase_orders,contact,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersContactCompanyPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,contact,company,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersContactEmployee: - "payments,applied_payments,line_items,purchase_orders,contact,employee", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersContactEmployeeAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,contact,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersContactEmployeePaymentTerm: - "payments,applied_payments,line_items,purchase_orders,contact,employee,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersContactPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,contact,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersEmployee: - "payments,applied_payments,line_items,purchase_orders,employee", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersEmployeeAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersEmployeePaymentTerm: - "payments,applied_payments,line_items,purchase_orders,employee,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategories: "payments,applied_payments,line_items,tracking_categories", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotes: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCredits: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompany: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContact: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompany: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployee: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesCompany: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,company", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesCompanyAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,company,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesCompanyEmployee: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,company,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesCompanyPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,company,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContact: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactCompany: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactCompanyAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactCompanyEmployee: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactCompanyPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactEmployee: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesEmployee: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCredits: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsCompany: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,company", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsCompanyAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,company,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsCompanyEmployee: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,company,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsCompanyPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,company,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContact: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactCompany: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployee: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactEmployee: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsEmployee: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesCompany: - "payments,applied_payments,line_items,tracking_categories,company", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesCompanyAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,company,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesCompanyEmployee: - "payments,applied_payments,line_items,tracking_categories,company,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesCompanyPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,company,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesContact: - "payments,applied_payments,line_items,tracking_categories,contact", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesContactAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,contact,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesContactAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesContactCompany: - "payments,applied_payments,line_items,tracking_categories,contact,company", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesContactCompanyAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,contact,company,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesContactCompanyEmployee: - "payments,applied_payments,line_items,tracking_categories,contact,company,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesContactCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,contact,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesContactCompanyPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,contact,company,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesContactEmployee: - "payments,applied_payments,line_items,tracking_categories,contact,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesContactEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,contact,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesContactEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,contact,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesContactPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,contact,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesEmployee: - "payments,applied_payments,line_items,tracking_categories,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrders: - "payments,applied_payments,line_items,tracking_categories,purchase_orders", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotes: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCredits: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompany: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContact: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompany: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployee: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompany: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployee: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContact: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompany: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployee: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployee: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployee: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCredits: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompany: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployee: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContact: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompany: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployee: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployee: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployee: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersCompany: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,company", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersCompanyAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,company,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersCompanyEmployee: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,company,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersCompanyPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,company,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContact: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactCompany: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,company", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactCompanyAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,company,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactCompanyEmployee: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,company,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactCompanyPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,company,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactEmployee: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersEmployee: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,payment_term", - PaymentsAppliedPaymentsPaymentTerm: "payments,applied_payments,payment_term", - PaymentsAppliedPaymentsPurchaseOrders: "payments,applied_payments,purchase_orders", - PaymentsAppliedPaymentsPurchaseOrdersAccountingPeriod: - "payments,applied_payments,purchase_orders,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotes: - "payments,applied_payments,purchase_orders,applied_credit_notes", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAccountingPeriod: - "payments,applied_payments,purchase_orders,applied_credit_notes,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCredits: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompany: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContact: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompany: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployee: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesCompany: - "payments,applied_payments,purchase_orders,applied_credit_notes,company", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriod: - "payments,applied_payments,purchase_orders,applied_credit_notes,company,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesCompanyEmployee: - "payments,applied_payments,purchase_orders,applied_credit_notes,company,employee", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "payments,applied_payments,purchase_orders,applied_credit_notes,company,employee,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesCompanyEmployeePaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,company,employee,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesCompanyPaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,company,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesContact: - "payments,applied_payments,purchase_orders,applied_credit_notes,contact", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesContactAccountingPeriod: - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesContactCompany: - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,company", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriod: - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,company,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesContactCompanyEmployee: - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,company,employee", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesContactCompanyPaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,company,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesContactEmployee: - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,employee", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriod: - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesContactEmployeePaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,employee,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesContactPaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesEmployee: - "payments,applied_payments,purchase_orders,applied_credit_notes,employee", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriod: - "payments,applied_payments,purchase_orders,applied_credit_notes,employee,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesEmployeePaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,employee,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesPaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCredits: - "payments,applied_payments,purchase_orders,applied_vendor_credits", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsAccountingPeriod: - "payments,applied_payments,purchase_orders,applied_vendor_credits,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsCompany: - "payments,applied_payments,purchase_orders,applied_vendor_credits,company", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriod: - "payments,applied_payments,purchase_orders,applied_vendor_credits,company,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsCompanyEmployee: - "payments,applied_payments,purchase_orders,applied_vendor_credits,company,employee", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,applied_payments,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,applied_payments,purchase_orders,applied_vendor_credits,company,employee,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsCompanyPaymentTerm: - "payments,applied_payments,purchase_orders,applied_vendor_credits,company,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsContact: - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactAccountingPeriod: - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactCompany: - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,company", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployee: - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,company,employee", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,company,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactEmployee: - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,employee", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactPaymentTerm: - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsEmployee: - "payments,applied_payments,purchase_orders,applied_vendor_credits,employee", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,applied_payments,purchase_orders,applied_vendor_credits,employee,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsEmployeePaymentTerm: - "payments,applied_payments,purchase_orders,applied_vendor_credits,employee,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsPaymentTerm: - "payments,applied_payments,purchase_orders,applied_vendor_credits,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersCompany: "payments,applied_payments,purchase_orders,company", - PaymentsAppliedPaymentsPurchaseOrdersCompanyAccountingPeriod: - "payments,applied_payments,purchase_orders,company,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,company,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersCompanyEmployee: "payments,applied_payments,purchase_orders,company,employee", - PaymentsAppliedPaymentsPurchaseOrdersCompanyEmployeeAccountingPeriod: - "payments,applied_payments,purchase_orders,company,employee,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersCompanyEmployeePaymentTerm: - "payments,applied_payments,purchase_orders,company,employee,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersCompanyPaymentTerm: - "payments,applied_payments,purchase_orders,company,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersContact: "payments,applied_payments,purchase_orders,contact", - PaymentsAppliedPaymentsPurchaseOrdersContactAccountingPeriod: - "payments,applied_payments,purchase_orders,contact,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersContactAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersContactCompany: "payments,applied_payments,purchase_orders,contact,company", - PaymentsAppliedPaymentsPurchaseOrdersContactCompanyAccountingPeriod: - "payments,applied_payments,purchase_orders,contact,company,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersContactCompanyEmployee: - "payments,applied_payments,purchase_orders,contact,company,employee", - PaymentsAppliedPaymentsPurchaseOrdersContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,purchase_orders,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersContactCompanyEmployeePaymentTerm: - "payments,applied_payments,purchase_orders,contact,company,employee,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersContactCompanyPaymentTerm: - "payments,applied_payments,purchase_orders,contact,company,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersContactEmployee: "payments,applied_payments,purchase_orders,contact,employee", - PaymentsAppliedPaymentsPurchaseOrdersContactEmployeeAccountingPeriod: - "payments,applied_payments,purchase_orders,contact,employee,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersContactEmployeePaymentTerm: - "payments,applied_payments,purchase_orders,contact,employee,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersContactPaymentTerm: - "payments,applied_payments,purchase_orders,contact,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersEmployee: "payments,applied_payments,purchase_orders,employee", - PaymentsAppliedPaymentsPurchaseOrdersEmployeeAccountingPeriod: - "payments,applied_payments,purchase_orders,employee,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersEmployeePaymentTerm: - "payments,applied_payments,purchase_orders,employee,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersPaymentTerm: "payments,applied_payments,purchase_orders,payment_term", - PaymentsAppliedPaymentsTrackingCategories: "payments,applied_payments,tracking_categories", - PaymentsAppliedPaymentsTrackingCategoriesAccountingPeriod: - "payments,applied_payments,tracking_categories,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotes: - "payments,applied_payments,tracking_categories,applied_credit_notes", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAccountingPeriod: - "payments,applied_payments,tracking_categories,applied_credit_notes,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCredits: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompany: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContact: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompany: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployee: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesCompany: - "payments,applied_payments,tracking_categories,applied_credit_notes,company", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesCompanyAccountingPeriod: - "payments,applied_payments,tracking_categories,applied_credit_notes,company,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,company,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesCompanyEmployee: - "payments,applied_payments,tracking_categories,applied_credit_notes,company,employee", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,applied_credit_notes,company,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesCompanyEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,company,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesCompanyPaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,company,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesContact: - "payments,applied_payments,tracking_categories,applied_credit_notes,contact", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesContactAccountingPeriod: - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesContactCompany: - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,company", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesContactCompanyAccountingPeriod: - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,company,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesContactCompanyEmployee: - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,company,employee", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,company,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesContactCompanyPaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,company,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesContactEmployee: - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,employee", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesContactEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesContactEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesContactPaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesEmployee: - "payments,applied_payments,tracking_categories,applied_credit_notes,employee", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,applied_credit_notes,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesPaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCredits: - "payments,applied_payments,tracking_categories,applied_vendor_credits", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsAccountingPeriod: - "payments,applied_payments,tracking_categories,applied_vendor_credits,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,applied_vendor_credits,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsCompany: - "payments,applied_payments,tracking_categories,applied_vendor_credits,company", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsCompanyAccountingPeriod: - "payments,applied_payments,tracking_categories,applied_vendor_credits,company,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsCompanyEmployee: - "payments,applied_payments,tracking_categories,applied_vendor_credits,company,employee", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,applied_vendor_credits,company,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,applied_vendor_credits,company,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsCompanyPaymentTerm: - "payments,applied_payments,tracking_categories,applied_vendor_credits,company,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsContact: - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactAccountingPeriod: - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactCompany: - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,company", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,company,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployee: - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,company,employee", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,company,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactEmployee: - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,employee", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactPaymentTerm: - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsEmployee: - "payments,applied_payments,tracking_categories,applied_vendor_credits,employee", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,applied_vendor_credits,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,applied_vendor_credits,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsPaymentTerm: - "payments,applied_payments,tracking_categories,applied_vendor_credits,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesCompany: "payments,applied_payments,tracking_categories,company", - PaymentsAppliedPaymentsTrackingCategoriesCompanyAccountingPeriod: - "payments,applied_payments,tracking_categories,company,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,company,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesCompanyEmployee: - "payments,applied_payments,tracking_categories,company,employee", - PaymentsAppliedPaymentsTrackingCategoriesCompanyEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,company,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesCompanyEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,company,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesCompanyPaymentTerm: - "payments,applied_payments,tracking_categories,company,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesContact: "payments,applied_payments,tracking_categories,contact", - PaymentsAppliedPaymentsTrackingCategoriesContactAccountingPeriod: - "payments,applied_payments,tracking_categories,contact,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesContactAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesContactCompany: - "payments,applied_payments,tracking_categories,contact,company", - PaymentsAppliedPaymentsTrackingCategoriesContactCompanyAccountingPeriod: - "payments,applied_payments,tracking_categories,contact,company,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesContactCompanyEmployee: - "payments,applied_payments,tracking_categories,contact,company,employee", - PaymentsAppliedPaymentsTrackingCategoriesContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesContactCompanyEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,contact,company,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesContactCompanyPaymentTerm: - "payments,applied_payments,tracking_categories,contact,company,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesContactEmployee: - "payments,applied_payments,tracking_categories,contact,employee", - PaymentsAppliedPaymentsTrackingCategoriesContactEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,contact,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesContactEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,contact,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesContactPaymentTerm: - "payments,applied_payments,tracking_categories,contact,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesEmployee: "payments,applied_payments,tracking_categories,employee", - PaymentsAppliedPaymentsTrackingCategoriesEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPaymentTerm: "payments,applied_payments,tracking_categories,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrders: - "payments,applied_payments,tracking_categories,purchase_orders", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotes: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCredits: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompany: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContact: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompany: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployee: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompany: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployee: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContact: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompany: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployee: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployee: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployee: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,employee", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCredits: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompany: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployee: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContact: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompany: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployee: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployee: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployee: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,employee", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersCompany: - "payments,applied_payments,tracking_categories,purchase_orders,company", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersCompanyAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,company,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,company,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersCompanyEmployee: - "payments,applied_payments,tracking_categories,purchase_orders,company,employee", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersCompanyEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,company,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersCompanyEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,company,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersCompanyPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,company,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersContact: - "payments,applied_payments,tracking_categories,purchase_orders,contact", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersContactAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,contact,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersContactAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersContactCompany: - "payments,applied_payments,tracking_categories,purchase_orders,contact,company", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersContactCompanyAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,contact,company,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersContactCompanyEmployee: - "payments,applied_payments,tracking_categories,purchase_orders,contact,company,employee", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersContactCompanyEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,contact,company,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersContactCompanyPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,contact,company,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersContactEmployee: - "payments,applied_payments,tracking_categories,purchase_orders,contact,employee", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersContactEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,contact,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersContactEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,contact,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersContactPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,contact,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersEmployee: - "payments,applied_payments,tracking_categories,purchase_orders,employee", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,payment_term", - PaymentsAppliedVendorCredits: "payments,applied_vendor_credits", - PaymentsAppliedVendorCreditsAccountingPeriod: "payments,applied_vendor_credits,accounting_period", - PaymentsAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,applied_vendor_credits,accounting_period,payment_term", - PaymentsAppliedVendorCreditsCompany: "payments,applied_vendor_credits,company", - PaymentsAppliedVendorCreditsCompanyAccountingPeriod: "payments,applied_vendor_credits,company,accounting_period", - PaymentsAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsAppliedVendorCreditsCompanyEmployee: "payments,applied_vendor_credits,company,employee", - PaymentsAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,applied_vendor_credits,company,employee,accounting_period", - PaymentsAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,applied_vendor_credits,company,employee,payment_term", - PaymentsAppliedVendorCreditsCompanyPaymentTerm: "payments,applied_vendor_credits,company,payment_term", - PaymentsAppliedVendorCreditsContact: "payments,applied_vendor_credits,contact", - PaymentsAppliedVendorCreditsContactAccountingPeriod: "payments,applied_vendor_credits,contact,accounting_period", - PaymentsAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsAppliedVendorCreditsContactCompany: "payments,applied_vendor_credits,contact,company", - PaymentsAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,applied_vendor_credits,contact,company,accounting_period", - PaymentsAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsAppliedVendorCreditsContactCompanyEmployee: "payments,applied_vendor_credits,contact,company,employee", - PaymentsAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,applied_vendor_credits,contact,company,payment_term", - PaymentsAppliedVendorCreditsContactEmployee: "payments,applied_vendor_credits,contact,employee", - PaymentsAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,applied_vendor_credits,contact,employee,accounting_period", - PaymentsAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,applied_vendor_credits,contact,employee,payment_term", - PaymentsAppliedVendorCreditsContactPaymentTerm: "payments,applied_vendor_credits,contact,payment_term", - PaymentsAppliedVendorCreditsEmployee: "payments,applied_vendor_credits,employee", - PaymentsAppliedVendorCreditsEmployeeAccountingPeriod: "payments,applied_vendor_credits,employee,accounting_period", - PaymentsAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsAppliedVendorCreditsEmployeePaymentTerm: "payments,applied_vendor_credits,employee,payment_term", - PaymentsAppliedVendorCreditsPaymentTerm: "payments,applied_vendor_credits,payment_term", - PaymentsCompany: "payments,company", - PaymentsCompanyAccountingPeriod: "payments,company,accounting_period", - PaymentsCompanyAccountingPeriodPaymentTerm: "payments,company,accounting_period,payment_term", - PaymentsCompanyEmployee: "payments,company,employee", - PaymentsCompanyEmployeeAccountingPeriod: "payments,company,employee,accounting_period", - PaymentsCompanyEmployeeAccountingPeriodPaymentTerm: "payments,company,employee,accounting_period,payment_term", - PaymentsCompanyEmployeePaymentTerm: "payments,company,employee,payment_term", - PaymentsCompanyPaymentTerm: "payments,company,payment_term", - PaymentsContact: "payments,contact", - PaymentsContactAccountingPeriod: "payments,contact,accounting_period", - PaymentsContactAccountingPeriodPaymentTerm: "payments,contact,accounting_period,payment_term", - PaymentsContactCompany: "payments,contact,company", - PaymentsContactCompanyAccountingPeriod: "payments,contact,company,accounting_period", - PaymentsContactCompanyAccountingPeriodPaymentTerm: "payments,contact,company,accounting_period,payment_term", - PaymentsContactCompanyEmployee: "payments,contact,company,employee", - PaymentsContactCompanyEmployeeAccountingPeriod: "payments,contact,company,employee,accounting_period", - PaymentsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,contact,company,employee,accounting_period,payment_term", - PaymentsContactCompanyEmployeePaymentTerm: "payments,contact,company,employee,payment_term", - PaymentsContactCompanyPaymentTerm: "payments,contact,company,payment_term", - PaymentsContactEmployee: "payments,contact,employee", - PaymentsContactEmployeeAccountingPeriod: "payments,contact,employee,accounting_period", - PaymentsContactEmployeeAccountingPeriodPaymentTerm: "payments,contact,employee,accounting_period,payment_term", - PaymentsContactEmployeePaymentTerm: "payments,contact,employee,payment_term", - PaymentsContactPaymentTerm: "payments,contact,payment_term", - PaymentsEmployee: "payments,employee", - PaymentsEmployeeAccountingPeriod: "payments,employee,accounting_period", - PaymentsEmployeeAccountingPeriodPaymentTerm: "payments,employee,accounting_period,payment_term", - PaymentsEmployeePaymentTerm: "payments,employee,payment_term", - PaymentsLineItems: "payments,line_items", - PaymentsLineItemsAccountingPeriod: "payments,line_items,accounting_period", - PaymentsLineItemsAccountingPeriodPaymentTerm: "payments,line_items,accounting_period,payment_term", - PaymentsLineItemsAppliedCreditNotes: "payments,line_items,applied_credit_notes", - PaymentsLineItemsAppliedCreditNotesAccountingPeriod: "payments,line_items,applied_credit_notes,accounting_period", - PaymentsLineItemsAppliedCreditNotesAccountingPeriodPaymentTerm: - "payments,line_items,applied_credit_notes,accounting_period,payment_term", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCredits: - "payments,line_items,applied_credit_notes,applied_vendor_credits", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "payments,line_items,applied_credit_notes,applied_vendor_credits,accounting_period", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,line_items,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsCompany: - "payments,line_items,applied_credit_notes,applied_vendor_credits,company", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "payments,line_items,applied_credit_notes,applied_vendor_credits,company,accounting_period", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,line_items,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "payments,line_items,applied_credit_notes,applied_vendor_credits,company,payment_term", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContact: - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactCompany: - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,payment_term", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsEmployee: - "payments,line_items,applied_credit_notes,applied_vendor_credits,employee", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,line_items,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "payments,line_items,applied_credit_notes,applied_vendor_credits,employee,payment_term", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "payments,line_items,applied_credit_notes,applied_vendor_credits,payment_term", - PaymentsLineItemsAppliedCreditNotesCompany: "payments,line_items,applied_credit_notes,company", - PaymentsLineItemsAppliedCreditNotesCompanyAccountingPeriod: - "payments,line_items,applied_credit_notes,company,accounting_period", - PaymentsLineItemsAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "payments,line_items,applied_credit_notes,company,accounting_period,payment_term", - PaymentsLineItemsAppliedCreditNotesCompanyEmployee: "payments,line_items,applied_credit_notes,company,employee", - PaymentsLineItemsAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "payments,line_items,applied_credit_notes,company,employee,accounting_period", - PaymentsLineItemsAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,applied_credit_notes,company,employee,accounting_period,payment_term", - PaymentsLineItemsAppliedCreditNotesCompanyEmployeePaymentTerm: - "payments,line_items,applied_credit_notes,company,employee,payment_term", - PaymentsLineItemsAppliedCreditNotesCompanyPaymentTerm: - "payments,line_items,applied_credit_notes,company,payment_term", - PaymentsLineItemsAppliedCreditNotesContact: "payments,line_items,applied_credit_notes,contact", - PaymentsLineItemsAppliedCreditNotesContactAccountingPeriod: - "payments,line_items,applied_credit_notes,contact,accounting_period", - PaymentsLineItemsAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "payments,line_items,applied_credit_notes,contact,accounting_period,payment_term", - PaymentsLineItemsAppliedCreditNotesContactCompany: "payments,line_items,applied_credit_notes,contact,company", - PaymentsLineItemsAppliedCreditNotesContactCompanyAccountingPeriod: - "payments,line_items,applied_credit_notes,contact,company,accounting_period", - PaymentsLineItemsAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "payments,line_items,applied_credit_notes,contact,company,accounting_period,payment_term", - PaymentsLineItemsAppliedCreditNotesContactCompanyEmployee: - "payments,line_items,applied_credit_notes,contact,company,employee", - PaymentsLineItemsAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "payments,line_items,applied_credit_notes,contact,company,employee,accounting_period", - PaymentsLineItemsAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - PaymentsLineItemsAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "payments,line_items,applied_credit_notes,contact,company,employee,payment_term", - PaymentsLineItemsAppliedCreditNotesContactCompanyPaymentTerm: - "payments,line_items,applied_credit_notes,contact,company,payment_term", - PaymentsLineItemsAppliedCreditNotesContactEmployee: "payments,line_items,applied_credit_notes,contact,employee", - PaymentsLineItemsAppliedCreditNotesContactEmployeeAccountingPeriod: - "payments,line_items,applied_credit_notes,contact,employee,accounting_period", - PaymentsLineItemsAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,applied_credit_notes,contact,employee,accounting_period,payment_term", - PaymentsLineItemsAppliedCreditNotesContactEmployeePaymentTerm: - "payments,line_items,applied_credit_notes,contact,employee,payment_term", - PaymentsLineItemsAppliedCreditNotesContactPaymentTerm: - "payments,line_items,applied_credit_notes,contact,payment_term", - PaymentsLineItemsAppliedCreditNotesEmployee: "payments,line_items,applied_credit_notes,employee", - PaymentsLineItemsAppliedCreditNotesEmployeeAccountingPeriod: - "payments,line_items,applied_credit_notes,employee,accounting_period", - PaymentsLineItemsAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,applied_credit_notes,employee,accounting_period,payment_term", - PaymentsLineItemsAppliedCreditNotesEmployeePaymentTerm: - "payments,line_items,applied_credit_notes,employee,payment_term", - PaymentsLineItemsAppliedCreditNotesPaymentTerm: "payments,line_items,applied_credit_notes,payment_term", - PaymentsLineItemsAppliedVendorCredits: "payments,line_items,applied_vendor_credits", - PaymentsLineItemsAppliedVendorCreditsAccountingPeriod: - "payments,line_items,applied_vendor_credits,accounting_period", - PaymentsLineItemsAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,line_items,applied_vendor_credits,accounting_period,payment_term", - PaymentsLineItemsAppliedVendorCreditsCompany: "payments,line_items,applied_vendor_credits,company", - PaymentsLineItemsAppliedVendorCreditsCompanyAccountingPeriod: - "payments,line_items,applied_vendor_credits,company,accounting_period", - PaymentsLineItemsAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,line_items,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsLineItemsAppliedVendorCreditsCompanyEmployee: "payments,line_items,applied_vendor_credits,company,employee", - PaymentsLineItemsAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,line_items,applied_vendor_credits,company,employee,accounting_period", - PaymentsLineItemsAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsLineItemsAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,line_items,applied_vendor_credits,company,employee,payment_term", - PaymentsLineItemsAppliedVendorCreditsCompanyPaymentTerm: - "payments,line_items,applied_vendor_credits,company,payment_term", - PaymentsLineItemsAppliedVendorCreditsContact: "payments,line_items,applied_vendor_credits,contact", - PaymentsLineItemsAppliedVendorCreditsContactAccountingPeriod: - "payments,line_items,applied_vendor_credits,contact,accounting_period", - PaymentsLineItemsAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,line_items,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsLineItemsAppliedVendorCreditsContactCompany: "payments,line_items,applied_vendor_credits,contact,company", - PaymentsLineItemsAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,line_items,applied_vendor_credits,contact,company,accounting_period", - PaymentsLineItemsAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,line_items,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsLineItemsAppliedVendorCreditsContactCompanyEmployee: - "payments,line_items,applied_vendor_credits,contact,company,employee", - PaymentsLineItemsAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,line_items,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsLineItemsAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsLineItemsAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,line_items,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsLineItemsAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,line_items,applied_vendor_credits,contact,company,payment_term", - PaymentsLineItemsAppliedVendorCreditsContactEmployee: "payments,line_items,applied_vendor_credits,contact,employee", - PaymentsLineItemsAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,line_items,applied_vendor_credits,contact,employee,accounting_period", - PaymentsLineItemsAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsLineItemsAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,line_items,applied_vendor_credits,contact,employee,payment_term", - PaymentsLineItemsAppliedVendorCreditsContactPaymentTerm: - "payments,line_items,applied_vendor_credits,contact,payment_term", - PaymentsLineItemsAppliedVendorCreditsEmployee: "payments,line_items,applied_vendor_credits,employee", - PaymentsLineItemsAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,line_items,applied_vendor_credits,employee,accounting_period", - PaymentsLineItemsAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsLineItemsAppliedVendorCreditsEmployeePaymentTerm: - "payments,line_items,applied_vendor_credits,employee,payment_term", - PaymentsLineItemsAppliedVendorCreditsPaymentTerm: "payments,line_items,applied_vendor_credits,payment_term", - PaymentsLineItemsCompany: "payments,line_items,company", - PaymentsLineItemsCompanyAccountingPeriod: "payments,line_items,company,accounting_period", - PaymentsLineItemsCompanyAccountingPeriodPaymentTerm: "payments,line_items,company,accounting_period,payment_term", - PaymentsLineItemsCompanyEmployee: "payments,line_items,company,employee", - PaymentsLineItemsCompanyEmployeeAccountingPeriod: "payments,line_items,company,employee,accounting_period", - PaymentsLineItemsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,company,employee,accounting_period,payment_term", - PaymentsLineItemsCompanyEmployeePaymentTerm: "payments,line_items,company,employee,payment_term", - PaymentsLineItemsCompanyPaymentTerm: "payments,line_items,company,payment_term", - PaymentsLineItemsContact: "payments,line_items,contact", - PaymentsLineItemsContactAccountingPeriod: "payments,line_items,contact,accounting_period", - PaymentsLineItemsContactAccountingPeriodPaymentTerm: "payments,line_items,contact,accounting_period,payment_term", - PaymentsLineItemsContactCompany: "payments,line_items,contact,company", - PaymentsLineItemsContactCompanyAccountingPeriod: "payments,line_items,contact,company,accounting_period", - PaymentsLineItemsContactCompanyAccountingPeriodPaymentTerm: - "payments,line_items,contact,company,accounting_period,payment_term", - PaymentsLineItemsContactCompanyEmployee: "payments,line_items,contact,company,employee", - PaymentsLineItemsContactCompanyEmployeeAccountingPeriod: - "payments,line_items,contact,company,employee,accounting_period", - PaymentsLineItemsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,contact,company,employee,accounting_period,payment_term", - PaymentsLineItemsContactCompanyEmployeePaymentTerm: "payments,line_items,contact,company,employee,payment_term", - PaymentsLineItemsContactCompanyPaymentTerm: "payments,line_items,contact,company,payment_term", - PaymentsLineItemsContactEmployee: "payments,line_items,contact,employee", - PaymentsLineItemsContactEmployeeAccountingPeriod: "payments,line_items,contact,employee,accounting_period", - PaymentsLineItemsContactEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,contact,employee,accounting_period,payment_term", - PaymentsLineItemsContactEmployeePaymentTerm: "payments,line_items,contact,employee,payment_term", - PaymentsLineItemsContactPaymentTerm: "payments,line_items,contact,payment_term", - PaymentsLineItemsEmployee: "payments,line_items,employee", - PaymentsLineItemsEmployeeAccountingPeriod: "payments,line_items,employee,accounting_period", - PaymentsLineItemsEmployeeAccountingPeriodPaymentTerm: "payments,line_items,employee,accounting_period,payment_term", - PaymentsLineItemsEmployeePaymentTerm: "payments,line_items,employee,payment_term", - PaymentsLineItemsPaymentTerm: "payments,line_items,payment_term", - PaymentsLineItemsPurchaseOrders: "payments,line_items,purchase_orders", - PaymentsLineItemsPurchaseOrdersAccountingPeriod: "payments,line_items,purchase_orders,accounting_period", - PaymentsLineItemsPurchaseOrdersAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotes: "payments,line_items,purchase_orders,applied_credit_notes", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAccountingPeriod: - "payments,line_items,purchase_orders,applied_credit_notes,accounting_period", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCredits: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompany: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContact: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompany: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployee: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesCompany: - "payments,line_items,purchase_orders,applied_credit_notes,company", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriod: - "payments,line_items,purchase_orders,applied_credit_notes,company,accounting_period", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesCompanyEmployee: - "payments,line_items,purchase_orders,applied_credit_notes,company,employee", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "payments,line_items,purchase_orders,applied_credit_notes,company,employee,accounting_period", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesCompanyEmployeePaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,company,employee,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesCompanyPaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,company,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesContact: - "payments,line_items,purchase_orders,applied_credit_notes,contact", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactAccountingPeriod: - "payments,line_items,purchase_orders,applied_credit_notes,contact,accounting_period", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactCompany: - "payments,line_items,purchase_orders,applied_credit_notes,contact,company", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriod: - "payments,line_items,purchase_orders,applied_credit_notes,contact,company,accounting_period", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactCompanyEmployee: - "payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactCompanyPaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,contact,company,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactEmployee: - "payments,line_items,purchase_orders,applied_credit_notes,contact,employee", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriod: - "payments,line_items,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactEmployeePaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,contact,employee,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactPaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,contact,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesEmployee: - "payments,line_items,purchase_orders,applied_credit_notes,employee", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriod: - "payments,line_items,purchase_orders,applied_credit_notes,employee,accounting_period", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesEmployeePaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,employee,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesPaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedVendorCredits: "payments,line_items,purchase_orders,applied_vendor_credits", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsAccountingPeriod: - "payments,line_items,purchase_orders,applied_vendor_credits,accounting_period", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsCompany: - "payments,line_items,purchase_orders,applied_vendor_credits,company", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriod: - "payments,line_items,purchase_orders,applied_vendor_credits,company,accounting_period", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsCompanyEmployee: - "payments,line_items,purchase_orders,applied_vendor_credits,company,employee", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,line_items,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,line_items,purchase_orders,applied_vendor_credits,company,employee,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsCompanyPaymentTerm: - "payments,line_items,purchase_orders,applied_vendor_credits,company,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContact: - "payments,line_items,purchase_orders,applied_vendor_credits,contact", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactAccountingPeriod: - "payments,line_items,purchase_orders,applied_vendor_credits,contact,accounting_period", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactCompany: - "payments,line_items,purchase_orders,applied_vendor_credits,contact,company", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,line_items,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployee: - "payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,line_items,purchase_orders,applied_vendor_credits,contact,company,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactEmployee: - "payments,line_items,purchase_orders,applied_vendor_credits,contact,employee", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactPaymentTerm: - "payments,line_items,purchase_orders,applied_vendor_credits,contact,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsEmployee: - "payments,line_items,purchase_orders,applied_vendor_credits,employee", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,line_items,purchase_orders,applied_vendor_credits,employee,accounting_period", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsEmployeePaymentTerm: - "payments,line_items,purchase_orders,applied_vendor_credits,employee,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsPaymentTerm: - "payments,line_items,purchase_orders,applied_vendor_credits,payment_term", - PaymentsLineItemsPurchaseOrdersCompany: "payments,line_items,purchase_orders,company", - PaymentsLineItemsPurchaseOrdersCompanyAccountingPeriod: - "payments,line_items,purchase_orders,company,accounting_period", - PaymentsLineItemsPurchaseOrdersCompanyAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,company,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersCompanyEmployee: "payments,line_items,purchase_orders,company,employee", - PaymentsLineItemsPurchaseOrdersCompanyEmployeeAccountingPeriod: - "payments,line_items,purchase_orders,company,employee,accounting_period", - PaymentsLineItemsPurchaseOrdersCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,company,employee,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersCompanyEmployeePaymentTerm: - "payments,line_items,purchase_orders,company,employee,payment_term", - PaymentsLineItemsPurchaseOrdersCompanyPaymentTerm: "payments,line_items,purchase_orders,company,payment_term", - PaymentsLineItemsPurchaseOrdersContact: "payments,line_items,purchase_orders,contact", - PaymentsLineItemsPurchaseOrdersContactAccountingPeriod: - "payments,line_items,purchase_orders,contact,accounting_period", - PaymentsLineItemsPurchaseOrdersContactAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,contact,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersContactCompany: "payments,line_items,purchase_orders,contact,company", - PaymentsLineItemsPurchaseOrdersContactCompanyAccountingPeriod: - "payments,line_items,purchase_orders,contact,company,accounting_period", - PaymentsLineItemsPurchaseOrdersContactCompanyAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,contact,company,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersContactCompanyEmployee: - "payments,line_items,purchase_orders,contact,company,employee", - PaymentsLineItemsPurchaseOrdersContactCompanyEmployeeAccountingPeriod: - "payments,line_items,purchase_orders,contact,company,employee,accounting_period", - PaymentsLineItemsPurchaseOrdersContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,contact,company,employee,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersContactCompanyEmployeePaymentTerm: - "payments,line_items,purchase_orders,contact,company,employee,payment_term", - PaymentsLineItemsPurchaseOrdersContactCompanyPaymentTerm: - "payments,line_items,purchase_orders,contact,company,payment_term", - PaymentsLineItemsPurchaseOrdersContactEmployee: "payments,line_items,purchase_orders,contact,employee", - PaymentsLineItemsPurchaseOrdersContactEmployeeAccountingPeriod: - "payments,line_items,purchase_orders,contact,employee,accounting_period", - PaymentsLineItemsPurchaseOrdersContactEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,contact,employee,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersContactEmployeePaymentTerm: - "payments,line_items,purchase_orders,contact,employee,payment_term", - PaymentsLineItemsPurchaseOrdersContactPaymentTerm: "payments,line_items,purchase_orders,contact,payment_term", - PaymentsLineItemsPurchaseOrdersEmployee: "payments,line_items,purchase_orders,employee", - PaymentsLineItemsPurchaseOrdersEmployeeAccountingPeriod: - "payments,line_items,purchase_orders,employee,accounting_period", - PaymentsLineItemsPurchaseOrdersEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,employee,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersEmployeePaymentTerm: "payments,line_items,purchase_orders,employee,payment_term", - PaymentsLineItemsPurchaseOrdersPaymentTerm: "payments,line_items,purchase_orders,payment_term", - PaymentsLineItemsTrackingCategories: "payments,line_items,tracking_categories", - PaymentsLineItemsTrackingCategoriesAccountingPeriod: "payments,line_items,tracking_categories,accounting_period", - PaymentsLineItemsTrackingCategoriesAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotes: - "payments,line_items,tracking_categories,applied_credit_notes", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAccountingPeriod: - "payments,line_items,tracking_categories,applied_credit_notes,accounting_period", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCredits: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompany: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContact: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompany: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployee: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesCompany: - "payments,line_items,tracking_categories,applied_credit_notes,company", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesCompanyAccountingPeriod: - "payments,line_items,tracking_categories,applied_credit_notes,company,accounting_period", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,company,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesCompanyEmployee: - "payments,line_items,tracking_categories,applied_credit_notes,company,employee", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,applied_credit_notes,company,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,company,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesCompanyEmployeePaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,company,employee,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesCompanyPaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,company,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesContact: - "payments,line_items,tracking_categories,applied_credit_notes,contact", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactAccountingPeriod: - "payments,line_items,tracking_categories,applied_credit_notes,contact,accounting_period", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,contact,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactCompany: - "payments,line_items,tracking_categories,applied_credit_notes,contact,company", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactCompanyAccountingPeriod: - "payments,line_items,tracking_categories,applied_credit_notes,contact,company,accounting_period", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,contact,company,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactCompanyEmployee: - "payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactCompanyPaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,contact,company,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactEmployee: - "payments,line_items,tracking_categories,applied_credit_notes,contact,employee", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,applied_credit_notes,contact,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,contact,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactEmployeePaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,contact,employee,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactPaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,contact,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesEmployee: - "payments,line_items,tracking_categories,applied_credit_notes,employee", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,applied_credit_notes,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesEmployeePaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,employee,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesPaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedVendorCredits: - "payments,line_items,tracking_categories,applied_vendor_credits", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsAccountingPeriod: - "payments,line_items,tracking_categories,applied_vendor_credits,accounting_period", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,applied_vendor_credits,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsCompany: - "payments,line_items,tracking_categories,applied_vendor_credits,company", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsCompanyAccountingPeriod: - "payments,line_items,tracking_categories,applied_vendor_credits,company,accounting_period", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsCompanyEmployee: - "payments,line_items,tracking_categories,applied_vendor_credits,company,employee", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,applied_vendor_credits,company,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,line_items,tracking_categories,applied_vendor_credits,company,employee,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsCompanyPaymentTerm: - "payments,line_items,tracking_categories,applied_vendor_credits,company,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContact: - "payments,line_items,tracking_categories,applied_vendor_credits,contact", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactAccountingPeriod: - "payments,line_items,tracking_categories,applied_vendor_credits,contact,accounting_period", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactCompany: - "payments,line_items,tracking_categories,applied_vendor_credits,contact,company", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,line_items,tracking_categories,applied_vendor_credits,contact,company,accounting_period", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployee: - "payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,line_items,tracking_categories,applied_vendor_credits,contact,company,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactEmployee: - "payments,line_items,tracking_categories,applied_vendor_credits,contact,employee", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactPaymentTerm: - "payments,line_items,tracking_categories,applied_vendor_credits,contact,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsEmployee: - "payments,line_items,tracking_categories,applied_vendor_credits,employee", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,applied_vendor_credits,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsEmployeePaymentTerm: - "payments,line_items,tracking_categories,applied_vendor_credits,employee,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsPaymentTerm: - "payments,line_items,tracking_categories,applied_vendor_credits,payment_term", - PaymentsLineItemsTrackingCategoriesCompany: "payments,line_items,tracking_categories,company", - PaymentsLineItemsTrackingCategoriesCompanyAccountingPeriod: - "payments,line_items,tracking_categories,company,accounting_period", - PaymentsLineItemsTrackingCategoriesCompanyAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,company,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesCompanyEmployee: "payments,line_items,tracking_categories,company,employee", - PaymentsLineItemsTrackingCategoriesCompanyEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,company,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,company,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesCompanyEmployeePaymentTerm: - "payments,line_items,tracking_categories,company,employee,payment_term", - PaymentsLineItemsTrackingCategoriesCompanyPaymentTerm: - "payments,line_items,tracking_categories,company,payment_term", - PaymentsLineItemsTrackingCategoriesContact: "payments,line_items,tracking_categories,contact", - PaymentsLineItemsTrackingCategoriesContactAccountingPeriod: - "payments,line_items,tracking_categories,contact,accounting_period", - PaymentsLineItemsTrackingCategoriesContactAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,contact,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesContactCompany: "payments,line_items,tracking_categories,contact,company", - PaymentsLineItemsTrackingCategoriesContactCompanyAccountingPeriod: - "payments,line_items,tracking_categories,contact,company,accounting_period", - PaymentsLineItemsTrackingCategoriesContactCompanyAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,contact,company,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesContactCompanyEmployee: - "payments,line_items,tracking_categories,contact,company,employee", - PaymentsLineItemsTrackingCategoriesContactCompanyEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,contact,company,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,contact,company,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesContactCompanyEmployeePaymentTerm: - "payments,line_items,tracking_categories,contact,company,employee,payment_term", - PaymentsLineItemsTrackingCategoriesContactCompanyPaymentTerm: - "payments,line_items,tracking_categories,contact,company,payment_term", - PaymentsLineItemsTrackingCategoriesContactEmployee: "payments,line_items,tracking_categories,contact,employee", - PaymentsLineItemsTrackingCategoriesContactEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,contact,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesContactEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,contact,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesContactEmployeePaymentTerm: - "payments,line_items,tracking_categories,contact,employee,payment_term", - PaymentsLineItemsTrackingCategoriesContactPaymentTerm: - "payments,line_items,tracking_categories,contact,payment_term", - PaymentsLineItemsTrackingCategoriesEmployee: "payments,line_items,tracking_categories,employee", - PaymentsLineItemsTrackingCategoriesEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesEmployeePaymentTerm: - "payments,line_items,tracking_categories,employee,payment_term", - PaymentsLineItemsTrackingCategoriesPaymentTerm: "payments,line_items,tracking_categories,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrders: "payments,line_items,tracking_categories,purchase_orders", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotes: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCredits: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompany: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContact: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompany: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployee: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompany: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployee: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployeePaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContact: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompany: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployee: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployee: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployeePaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployee: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployeePaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCredits: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompany: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployee: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContact: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompany: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployee: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployee: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployee: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployeePaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersCompany: - "payments,line_items,tracking_categories,purchase_orders,company", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersCompanyAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,company,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersCompanyAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,company,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersCompanyEmployee: - "payments,line_items,tracking_categories,purchase_orders,company,employee", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersCompanyEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,company,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,company,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersCompanyEmployeePaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,company,employee,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersCompanyPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,company,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersContact: - "payments,line_items,tracking_categories,purchase_orders,contact", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersContactAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,contact,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersContactAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,contact,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersContactCompany: - "payments,line_items,tracking_categories,purchase_orders,contact,company", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersContactCompanyAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,contact,company,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersContactCompanyAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,contact,company,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersContactCompanyEmployee: - "payments,line_items,tracking_categories,purchase_orders,contact,company,employee", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersContactCompanyEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,contact,company,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,contact,company,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersContactCompanyEmployeePaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,contact,company,employee,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersContactCompanyPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,contact,company,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersContactEmployee: - "payments,line_items,tracking_categories,purchase_orders,contact,employee", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersContactEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,contact,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersContactEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,contact,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersContactEmployeePaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,contact,employee,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersContactPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,contact,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersEmployee: - "payments,line_items,tracking_categories,purchase_orders,employee", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersEmployeePaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,employee,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,payment_term", - PaymentsPaymentTerm: "payments,payment_term", - PaymentsPurchaseOrders: "payments,purchase_orders", - PaymentsPurchaseOrdersAccountingPeriod: "payments,purchase_orders,accounting_period", - PaymentsPurchaseOrdersAccountingPeriodPaymentTerm: "payments,purchase_orders,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotes: "payments,purchase_orders,applied_credit_notes", - PaymentsPurchaseOrdersAppliedCreditNotesAccountingPeriod: - "payments,purchase_orders,applied_credit_notes,accounting_period", - PaymentsPurchaseOrdersAppliedCreditNotesAccountingPeriodPaymentTerm: - "payments,purchase_orders,applied_credit_notes,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCredits: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompany: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContact: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompany: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployee: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesCompany: "payments,purchase_orders,applied_credit_notes,company", - PaymentsPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriod: - "payments,purchase_orders,applied_credit_notes,company,accounting_period", - PaymentsPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "payments,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesCompanyEmployee: - "payments,purchase_orders,applied_credit_notes,company,employee", - PaymentsPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "payments,purchase_orders,applied_credit_notes,company,employee,accounting_period", - PaymentsPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesCompanyEmployeePaymentTerm: - "payments,purchase_orders,applied_credit_notes,company,employee,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesCompanyPaymentTerm: - "payments,purchase_orders,applied_credit_notes,company,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesContact: "payments,purchase_orders,applied_credit_notes,contact", - PaymentsPurchaseOrdersAppliedCreditNotesContactAccountingPeriod: - "payments,purchase_orders,applied_credit_notes,contact,accounting_period", - PaymentsPurchaseOrdersAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "payments,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesContactCompany: - "payments,purchase_orders,applied_credit_notes,contact,company", - PaymentsPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriod: - "payments,purchase_orders,applied_credit_notes,contact,company,accounting_period", - PaymentsPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "payments,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesContactCompanyEmployee: - "payments,purchase_orders,applied_credit_notes,contact,company,employee", - PaymentsPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "payments,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - PaymentsPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "payments,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesContactCompanyPaymentTerm: - "payments,purchase_orders,applied_credit_notes,contact,company,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesContactEmployee: - "payments,purchase_orders,applied_credit_notes,contact,employee", - PaymentsPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriod: - "payments,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - PaymentsPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "payments,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesContactEmployeePaymentTerm: - "payments,purchase_orders,applied_credit_notes,contact,employee,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesContactPaymentTerm: - "payments,purchase_orders,applied_credit_notes,contact,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesEmployee: "payments,purchase_orders,applied_credit_notes,employee", - PaymentsPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriod: - "payments,purchase_orders,applied_credit_notes,employee,accounting_period", - PaymentsPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "payments,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesEmployeePaymentTerm: - "payments,purchase_orders,applied_credit_notes,employee,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesPaymentTerm: "payments,purchase_orders,applied_credit_notes,payment_term", - PaymentsPurchaseOrdersAppliedVendorCredits: "payments,purchase_orders,applied_vendor_credits", - PaymentsPurchaseOrdersAppliedVendorCreditsAccountingPeriod: - "payments,purchase_orders,applied_vendor_credits,accounting_period", - PaymentsPurchaseOrdersAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedVendorCreditsCompany: "payments,purchase_orders,applied_vendor_credits,company", - PaymentsPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriod: - "payments,purchase_orders,applied_vendor_credits,company,accounting_period", - PaymentsPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedVendorCreditsCompanyEmployee: - "payments,purchase_orders,applied_vendor_credits,company,employee", - PaymentsPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - PaymentsPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,purchase_orders,applied_vendor_credits,company,employee,payment_term", - PaymentsPurchaseOrdersAppliedVendorCreditsCompanyPaymentTerm: - "payments,purchase_orders,applied_vendor_credits,company,payment_term", - PaymentsPurchaseOrdersAppliedVendorCreditsContact: "payments,purchase_orders,applied_vendor_credits,contact", - PaymentsPurchaseOrdersAppliedVendorCreditsContactAccountingPeriod: - "payments,purchase_orders,applied_vendor_credits,contact,accounting_period", - PaymentsPurchaseOrdersAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedVendorCreditsContactCompany: - "payments,purchase_orders,applied_vendor_credits,contact,company", - PaymentsPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - PaymentsPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployee: - "payments,purchase_orders,applied_vendor_credits,contact,company,employee", - PaymentsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsPurchaseOrdersAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,purchase_orders,applied_vendor_credits,contact,company,payment_term", - PaymentsPurchaseOrdersAppliedVendorCreditsContactEmployee: - "payments,purchase_orders,applied_vendor_credits,contact,employee", - PaymentsPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - PaymentsPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - PaymentsPurchaseOrdersAppliedVendorCreditsContactPaymentTerm: - "payments,purchase_orders,applied_vendor_credits,contact,payment_term", - PaymentsPurchaseOrdersAppliedVendorCreditsEmployee: "payments,purchase_orders,applied_vendor_credits,employee", - PaymentsPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,purchase_orders,applied_vendor_credits,employee,accounting_period", - PaymentsPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedVendorCreditsEmployeePaymentTerm: - "payments,purchase_orders,applied_vendor_credits,employee,payment_term", - PaymentsPurchaseOrdersAppliedVendorCreditsPaymentTerm: - "payments,purchase_orders,applied_vendor_credits,payment_term", - PaymentsPurchaseOrdersCompany: "payments,purchase_orders,company", - PaymentsPurchaseOrdersCompanyAccountingPeriod: "payments,purchase_orders,company,accounting_period", - PaymentsPurchaseOrdersCompanyAccountingPeriodPaymentTerm: - "payments,purchase_orders,company,accounting_period,payment_term", - PaymentsPurchaseOrdersCompanyEmployee: "payments,purchase_orders,company,employee", - PaymentsPurchaseOrdersCompanyEmployeeAccountingPeriod: - "payments,purchase_orders,company,employee,accounting_period", - PaymentsPurchaseOrdersCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,purchase_orders,company,employee,accounting_period,payment_term", - PaymentsPurchaseOrdersCompanyEmployeePaymentTerm: "payments,purchase_orders,company,employee,payment_term", - PaymentsPurchaseOrdersCompanyPaymentTerm: "payments,purchase_orders,company,payment_term", - PaymentsPurchaseOrdersContact: "payments,purchase_orders,contact", - PaymentsPurchaseOrdersContactAccountingPeriod: "payments,purchase_orders,contact,accounting_period", - PaymentsPurchaseOrdersContactAccountingPeriodPaymentTerm: - "payments,purchase_orders,contact,accounting_period,payment_term", - PaymentsPurchaseOrdersContactCompany: "payments,purchase_orders,contact,company", - PaymentsPurchaseOrdersContactCompanyAccountingPeriod: "payments,purchase_orders,contact,company,accounting_period", - PaymentsPurchaseOrdersContactCompanyAccountingPeriodPaymentTerm: - "payments,purchase_orders,contact,company,accounting_period,payment_term", - PaymentsPurchaseOrdersContactCompanyEmployee: "payments,purchase_orders,contact,company,employee", - PaymentsPurchaseOrdersContactCompanyEmployeeAccountingPeriod: - "payments,purchase_orders,contact,company,employee,accounting_period", - PaymentsPurchaseOrdersContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,purchase_orders,contact,company,employee,accounting_period,payment_term", - PaymentsPurchaseOrdersContactCompanyEmployeePaymentTerm: - "payments,purchase_orders,contact,company,employee,payment_term", - PaymentsPurchaseOrdersContactCompanyPaymentTerm: "payments,purchase_orders,contact,company,payment_term", - PaymentsPurchaseOrdersContactEmployee: "payments,purchase_orders,contact,employee", - PaymentsPurchaseOrdersContactEmployeeAccountingPeriod: - "payments,purchase_orders,contact,employee,accounting_period", - PaymentsPurchaseOrdersContactEmployeeAccountingPeriodPaymentTerm: - "payments,purchase_orders,contact,employee,accounting_period,payment_term", - PaymentsPurchaseOrdersContactEmployeePaymentTerm: "payments,purchase_orders,contact,employee,payment_term", - PaymentsPurchaseOrdersContactPaymentTerm: "payments,purchase_orders,contact,payment_term", - PaymentsPurchaseOrdersEmployee: "payments,purchase_orders,employee", - PaymentsPurchaseOrdersEmployeeAccountingPeriod: "payments,purchase_orders,employee,accounting_period", - PaymentsPurchaseOrdersEmployeeAccountingPeriodPaymentTerm: - "payments,purchase_orders,employee,accounting_period,payment_term", - PaymentsPurchaseOrdersEmployeePaymentTerm: "payments,purchase_orders,employee,payment_term", - PaymentsPurchaseOrdersPaymentTerm: "payments,purchase_orders,payment_term", - PaymentsTrackingCategories: "payments,tracking_categories", - PaymentsTrackingCategoriesAccountingPeriod: "payments,tracking_categories,accounting_period", - PaymentsTrackingCategoriesAccountingPeriodPaymentTerm: - "payments,tracking_categories,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotes: "payments,tracking_categories,applied_credit_notes", - PaymentsTrackingCategoriesAppliedCreditNotesAccountingPeriod: - "payments,tracking_categories,applied_credit_notes,accounting_period", - PaymentsTrackingCategoriesAppliedCreditNotesAccountingPeriodPaymentTerm: - "payments,tracking_categories,applied_credit_notes,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCredits: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompany: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContact: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompany: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployee: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesCompany: "payments,tracking_categories,applied_credit_notes,company", - PaymentsTrackingCategoriesAppliedCreditNotesCompanyAccountingPeriod: - "payments,tracking_categories,applied_credit_notes,company,accounting_period", - PaymentsTrackingCategoriesAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "payments,tracking_categories,applied_credit_notes,company,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesCompanyEmployee: - "payments,tracking_categories,applied_credit_notes,company,employee", - PaymentsTrackingCategoriesAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "payments,tracking_categories,applied_credit_notes,company,employee,accounting_period", - PaymentsTrackingCategoriesAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,applied_credit_notes,company,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesCompanyEmployeePaymentTerm: - "payments,tracking_categories,applied_credit_notes,company,employee,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesCompanyPaymentTerm: - "payments,tracking_categories,applied_credit_notes,company,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesContact: "payments,tracking_categories,applied_credit_notes,contact", - PaymentsTrackingCategoriesAppliedCreditNotesContactAccountingPeriod: - "payments,tracking_categories,applied_credit_notes,contact,accounting_period", - PaymentsTrackingCategoriesAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "payments,tracking_categories,applied_credit_notes,contact,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesContactCompany: - "payments,tracking_categories,applied_credit_notes,contact,company", - PaymentsTrackingCategoriesAppliedCreditNotesContactCompanyAccountingPeriod: - "payments,tracking_categories,applied_credit_notes,contact,company,accounting_period", - PaymentsTrackingCategoriesAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "payments,tracking_categories,applied_credit_notes,contact,company,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesContactCompanyEmployee: - "payments,tracking_categories,applied_credit_notes,contact,company,employee", - PaymentsTrackingCategoriesAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "payments,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period", - PaymentsTrackingCategoriesAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "payments,tracking_categories,applied_credit_notes,contact,company,employee,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesContactCompanyPaymentTerm: - "payments,tracking_categories,applied_credit_notes,contact,company,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesContactEmployee: - "payments,tracking_categories,applied_credit_notes,contact,employee", - PaymentsTrackingCategoriesAppliedCreditNotesContactEmployeeAccountingPeriod: - "payments,tracking_categories,applied_credit_notes,contact,employee,accounting_period", - PaymentsTrackingCategoriesAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,applied_credit_notes,contact,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesContactEmployeePaymentTerm: - "payments,tracking_categories,applied_credit_notes,contact,employee,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesContactPaymentTerm: - "payments,tracking_categories,applied_credit_notes,contact,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesEmployee: "payments,tracking_categories,applied_credit_notes,employee", - PaymentsTrackingCategoriesAppliedCreditNotesEmployeeAccountingPeriod: - "payments,tracking_categories,applied_credit_notes,employee,accounting_period", - PaymentsTrackingCategoriesAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,applied_credit_notes,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesEmployeePaymentTerm: - "payments,tracking_categories,applied_credit_notes,employee,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesPaymentTerm: - "payments,tracking_categories,applied_credit_notes,payment_term", - PaymentsTrackingCategoriesAppliedVendorCredits: "payments,tracking_categories,applied_vendor_credits", - PaymentsTrackingCategoriesAppliedVendorCreditsAccountingPeriod: - "payments,tracking_categories,applied_vendor_credits,accounting_period", - PaymentsTrackingCategoriesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,tracking_categories,applied_vendor_credits,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedVendorCreditsCompany: - "payments,tracking_categories,applied_vendor_credits,company", - PaymentsTrackingCategoriesAppliedVendorCreditsCompanyAccountingPeriod: - "payments,tracking_categories,applied_vendor_credits,company,accounting_period", - PaymentsTrackingCategoriesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,tracking_categories,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedVendorCreditsCompanyEmployee: - "payments,tracking_categories,applied_vendor_credits,company,employee", - PaymentsTrackingCategoriesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,tracking_categories,applied_vendor_credits,company,employee,accounting_period", - PaymentsTrackingCategoriesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,tracking_categories,applied_vendor_credits,company,employee,payment_term", - PaymentsTrackingCategoriesAppliedVendorCreditsCompanyPaymentTerm: - "payments,tracking_categories,applied_vendor_credits,company,payment_term", - PaymentsTrackingCategoriesAppliedVendorCreditsContact: - "payments,tracking_categories,applied_vendor_credits,contact", - PaymentsTrackingCategoriesAppliedVendorCreditsContactAccountingPeriod: - "payments,tracking_categories,applied_vendor_credits,contact,accounting_period", - PaymentsTrackingCategoriesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,tracking_categories,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedVendorCreditsContactCompany: - "payments,tracking_categories,applied_vendor_credits,contact,company", - PaymentsTrackingCategoriesAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,tracking_categories,applied_vendor_credits,contact,company,accounting_period", - PaymentsTrackingCategoriesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,tracking_categories,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployee: - "payments,tracking_categories,applied_vendor_credits,contact,company,employee", - PaymentsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,tracking_categories,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsTrackingCategoriesAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,tracking_categories,applied_vendor_credits,contact,company,payment_term", - PaymentsTrackingCategoriesAppliedVendorCreditsContactEmployee: - "payments,tracking_categories,applied_vendor_credits,contact,employee", - PaymentsTrackingCategoriesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,tracking_categories,applied_vendor_credits,contact,employee,accounting_period", - PaymentsTrackingCategoriesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,tracking_categories,applied_vendor_credits,contact,employee,payment_term", - PaymentsTrackingCategoriesAppliedVendorCreditsContactPaymentTerm: - "payments,tracking_categories,applied_vendor_credits,contact,payment_term", - PaymentsTrackingCategoriesAppliedVendorCreditsEmployee: - "payments,tracking_categories,applied_vendor_credits,employee", - PaymentsTrackingCategoriesAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,tracking_categories,applied_vendor_credits,employee,accounting_period", - PaymentsTrackingCategoriesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedVendorCreditsEmployeePaymentTerm: - "payments,tracking_categories,applied_vendor_credits,employee,payment_term", - PaymentsTrackingCategoriesAppliedVendorCreditsPaymentTerm: - "payments,tracking_categories,applied_vendor_credits,payment_term", - PaymentsTrackingCategoriesCompany: "payments,tracking_categories,company", - PaymentsTrackingCategoriesCompanyAccountingPeriod: "payments,tracking_categories,company,accounting_period", - PaymentsTrackingCategoriesCompanyAccountingPeriodPaymentTerm: - "payments,tracking_categories,company,accounting_period,payment_term", - PaymentsTrackingCategoriesCompanyEmployee: "payments,tracking_categories,company,employee", - PaymentsTrackingCategoriesCompanyEmployeeAccountingPeriod: - "payments,tracking_categories,company,employee,accounting_period", - PaymentsTrackingCategoriesCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,company,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesCompanyEmployeePaymentTerm: "payments,tracking_categories,company,employee,payment_term", - PaymentsTrackingCategoriesCompanyPaymentTerm: "payments,tracking_categories,company,payment_term", - PaymentsTrackingCategoriesContact: "payments,tracking_categories,contact", - PaymentsTrackingCategoriesContactAccountingPeriod: "payments,tracking_categories,contact,accounting_period", - PaymentsTrackingCategoriesContactAccountingPeriodPaymentTerm: - "payments,tracking_categories,contact,accounting_period,payment_term", - PaymentsTrackingCategoriesContactCompany: "payments,tracking_categories,contact,company", - PaymentsTrackingCategoriesContactCompanyAccountingPeriod: - "payments,tracking_categories,contact,company,accounting_period", - PaymentsTrackingCategoriesContactCompanyAccountingPeriodPaymentTerm: - "payments,tracking_categories,contact,company,accounting_period,payment_term", - PaymentsTrackingCategoriesContactCompanyEmployee: "payments,tracking_categories,contact,company,employee", - PaymentsTrackingCategoriesContactCompanyEmployeeAccountingPeriod: - "payments,tracking_categories,contact,company,employee,accounting_period", - PaymentsTrackingCategoriesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,contact,company,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesContactCompanyEmployeePaymentTerm: - "payments,tracking_categories,contact,company,employee,payment_term", - PaymentsTrackingCategoriesContactCompanyPaymentTerm: "payments,tracking_categories,contact,company,payment_term", - PaymentsTrackingCategoriesContactEmployee: "payments,tracking_categories,contact,employee", - PaymentsTrackingCategoriesContactEmployeeAccountingPeriod: - "payments,tracking_categories,contact,employee,accounting_period", - PaymentsTrackingCategoriesContactEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,contact,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesContactEmployeePaymentTerm: "payments,tracking_categories,contact,employee,payment_term", - PaymentsTrackingCategoriesContactPaymentTerm: "payments,tracking_categories,contact,payment_term", - PaymentsTrackingCategoriesEmployee: "payments,tracking_categories,employee", - PaymentsTrackingCategoriesEmployeeAccountingPeriod: "payments,tracking_categories,employee,accounting_period", - PaymentsTrackingCategoriesEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesEmployeePaymentTerm: "payments,tracking_categories,employee,payment_term", - PaymentsTrackingCategoriesPaymentTerm: "payments,tracking_categories,payment_term", - PaymentsTrackingCategoriesPurchaseOrders: "payments,tracking_categories,purchase_orders", - PaymentsTrackingCategoriesPurchaseOrdersAccountingPeriod: - "payments,tracking_categories,purchase_orders,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotes: - "payments,tracking_categories,purchase_orders,applied_credit_notes", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAccountingPeriod: - "payments,tracking_categories,purchase_orders,applied_credit_notes,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCredits: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompany: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContact: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompany: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployee: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompany: - "payments,tracking_categories,purchase_orders,applied_credit_notes,company", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriod: - "payments,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployee: - "payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployeePaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,company,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContact: - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactAccountingPeriod: - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompany: - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriod: - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployee: - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployee: - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriod: - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployeePaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployee: - "payments,tracking_categories,purchase_orders,applied_credit_notes,employee", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriod: - "payments,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployeePaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,employee,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCredits: - "payments,tracking_categories,purchase_orders,applied_vendor_credits", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsAccountingPeriod: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompany: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,company", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriod: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployee: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,company,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContact: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactAccountingPeriod: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompany: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployee: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployee: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployee: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,employee", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployeePaymentTerm: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersCompany: "payments,tracking_categories,purchase_orders,company", - PaymentsTrackingCategoriesPurchaseOrdersCompanyAccountingPeriod: - "payments,tracking_categories,purchase_orders,company,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersCompanyAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,company,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersCompanyEmployee: - "payments,tracking_categories,purchase_orders,company,employee", - PaymentsTrackingCategoriesPurchaseOrdersCompanyEmployeeAccountingPeriod: - "payments,tracking_categories,purchase_orders,company,employee,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,company,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersCompanyEmployeePaymentTerm: - "payments,tracking_categories,purchase_orders,company,employee,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersCompanyPaymentTerm: - "payments,tracking_categories,purchase_orders,company,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersContact: "payments,tracking_categories,purchase_orders,contact", - PaymentsTrackingCategoriesPurchaseOrdersContactAccountingPeriod: - "payments,tracking_categories,purchase_orders,contact,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersContactAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,contact,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersContactCompany: - "payments,tracking_categories,purchase_orders,contact,company", - PaymentsTrackingCategoriesPurchaseOrdersContactCompanyAccountingPeriod: - "payments,tracking_categories,purchase_orders,contact,company,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersContactCompanyAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,contact,company,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersContactCompanyEmployee: - "payments,tracking_categories,purchase_orders,contact,company,employee", - PaymentsTrackingCategoriesPurchaseOrdersContactCompanyEmployeeAccountingPeriod: - "payments,tracking_categories,purchase_orders,contact,company,employee,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,contact,company,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersContactCompanyEmployeePaymentTerm: - "payments,tracking_categories,purchase_orders,contact,company,employee,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersContactCompanyPaymentTerm: - "payments,tracking_categories,purchase_orders,contact,company,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersContactEmployee: - "payments,tracking_categories,purchase_orders,contact,employee", - PaymentsTrackingCategoriesPurchaseOrdersContactEmployeeAccountingPeriod: - "payments,tracking_categories,purchase_orders,contact,employee,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersContactEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,contact,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersContactEmployeePaymentTerm: - "payments,tracking_categories,purchase_orders,contact,employee,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersContactPaymentTerm: - "payments,tracking_categories,purchase_orders,contact,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersEmployee: "payments,tracking_categories,purchase_orders,employee", - PaymentsTrackingCategoriesPurchaseOrdersEmployeeAccountingPeriod: - "payments,tracking_categories,purchase_orders,employee,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersEmployeePaymentTerm: - "payments,tracking_categories,purchase_orders,employee,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersPaymentTerm: "payments,tracking_categories,purchase_orders,payment_term", - PurchaseOrders: "purchase_orders", - PurchaseOrdersAccountingPeriod: "purchase_orders,accounting_period", - PurchaseOrdersAccountingPeriodPaymentTerm: "purchase_orders,accounting_period,payment_term", - PurchaseOrdersAppliedCreditNotes: "purchase_orders,applied_credit_notes", - PurchaseOrdersAppliedCreditNotesAccountingPeriod: "purchase_orders,applied_credit_notes,accounting_period", - PurchaseOrdersAppliedCreditNotesAccountingPeriodPaymentTerm: - "purchase_orders,applied_credit_notes,accounting_period,payment_term", - PurchaseOrdersAppliedCreditNotesAppliedVendorCredits: "purchase_orders,applied_credit_notes,applied_vendor_credits", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompany: - "purchase_orders,applied_credit_notes,applied_vendor_credits,company", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContact: - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompany: - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployee: - "purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - PurchaseOrdersAppliedCreditNotesCompany: "purchase_orders,applied_credit_notes,company", - PurchaseOrdersAppliedCreditNotesCompanyAccountingPeriod: - "purchase_orders,applied_credit_notes,company,accounting_period", - PurchaseOrdersAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - PurchaseOrdersAppliedCreditNotesCompanyEmployee: "purchase_orders,applied_credit_notes,company,employee", - PurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "purchase_orders,applied_credit_notes,company,employee,accounting_period", - PurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - PurchaseOrdersAppliedCreditNotesCompanyEmployeePaymentTerm: - "purchase_orders,applied_credit_notes,company,employee,payment_term", - PurchaseOrdersAppliedCreditNotesCompanyPaymentTerm: "purchase_orders,applied_credit_notes,company,payment_term", - PurchaseOrdersAppliedCreditNotesContact: "purchase_orders,applied_credit_notes,contact", - PurchaseOrdersAppliedCreditNotesContactAccountingPeriod: - "purchase_orders,applied_credit_notes,contact,accounting_period", - PurchaseOrdersAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - PurchaseOrdersAppliedCreditNotesContactCompany: "purchase_orders,applied_credit_notes,contact,company", - PurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriod: - "purchase_orders,applied_credit_notes,contact,company,accounting_period", - PurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - PurchaseOrdersAppliedCreditNotesContactCompanyEmployee: - "purchase_orders,applied_credit_notes,contact,company,employee", - PurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - PurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - PurchaseOrdersAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - PurchaseOrdersAppliedCreditNotesContactCompanyPaymentTerm: - "purchase_orders,applied_credit_notes,contact,company,payment_term", - PurchaseOrdersAppliedCreditNotesContactEmployee: "purchase_orders,applied_credit_notes,contact,employee", - PurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriod: - "purchase_orders,applied_credit_notes,contact,employee,accounting_period", - PurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - PurchaseOrdersAppliedCreditNotesContactEmployeePaymentTerm: - "purchase_orders,applied_credit_notes,contact,employee,payment_term", - PurchaseOrdersAppliedCreditNotesContactPaymentTerm: "purchase_orders,applied_credit_notes,contact,payment_term", - PurchaseOrdersAppliedCreditNotesEmployee: "purchase_orders,applied_credit_notes,employee", - PurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriod: - "purchase_orders,applied_credit_notes,employee,accounting_period", - PurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - PurchaseOrdersAppliedCreditNotesEmployeePaymentTerm: "purchase_orders,applied_credit_notes,employee,payment_term", - PurchaseOrdersAppliedCreditNotesPaymentTerm: "purchase_orders,applied_credit_notes,payment_term", - PurchaseOrdersAppliedVendorCredits: "purchase_orders,applied_vendor_credits", - PurchaseOrdersAppliedVendorCreditsAccountingPeriod: "purchase_orders,applied_vendor_credits,accounting_period", - PurchaseOrdersAppliedVendorCreditsAccountingPeriodPaymentTerm: - "purchase_orders,applied_vendor_credits,accounting_period,payment_term", - PurchaseOrdersAppliedVendorCreditsCompany: "purchase_orders,applied_vendor_credits,company", - PurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriod: - "purchase_orders,applied_vendor_credits,company,accounting_period", - PurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - PurchaseOrdersAppliedVendorCreditsCompanyEmployee: "purchase_orders,applied_vendor_credits,company,employee", - PurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "purchase_orders,applied_vendor_credits,company,employee,accounting_period", - PurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - PurchaseOrdersAppliedVendorCreditsCompanyEmployeePaymentTerm: - "purchase_orders,applied_vendor_credits,company,employee,payment_term", - PurchaseOrdersAppliedVendorCreditsCompanyPaymentTerm: "purchase_orders,applied_vendor_credits,company,payment_term", - PurchaseOrdersAppliedVendorCreditsContact: "purchase_orders,applied_vendor_credits,contact", - PurchaseOrdersAppliedVendorCreditsContactAccountingPeriod: - "purchase_orders,applied_vendor_credits,contact,accounting_period", - PurchaseOrdersAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - PurchaseOrdersAppliedVendorCreditsContactCompany: "purchase_orders,applied_vendor_credits,contact,company", - PurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriod: - "purchase_orders,applied_vendor_credits,contact,company,accounting_period", - PurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - PurchaseOrdersAppliedVendorCreditsContactCompanyEmployee: - "purchase_orders,applied_vendor_credits,contact,company,employee", - PurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - PurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PurchaseOrdersAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - PurchaseOrdersAppliedVendorCreditsContactCompanyPaymentTerm: - "purchase_orders,applied_vendor_credits,contact,company,payment_term", - PurchaseOrdersAppliedVendorCreditsContactEmployee: "purchase_orders,applied_vendor_credits,contact,employee", - PurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriod: - "purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - PurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PurchaseOrdersAppliedVendorCreditsContactEmployeePaymentTerm: - "purchase_orders,applied_vendor_credits,contact,employee,payment_term", - PurchaseOrdersAppliedVendorCreditsContactPaymentTerm: "purchase_orders,applied_vendor_credits,contact,payment_term", - PurchaseOrdersAppliedVendorCreditsEmployee: "purchase_orders,applied_vendor_credits,employee", - PurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriod: - "purchase_orders,applied_vendor_credits,employee,accounting_period", - PurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - PurchaseOrdersAppliedVendorCreditsEmployeePaymentTerm: - "purchase_orders,applied_vendor_credits,employee,payment_term", - PurchaseOrdersAppliedVendorCreditsPaymentTerm: "purchase_orders,applied_vendor_credits,payment_term", - PurchaseOrdersCompany: "purchase_orders,company", - PurchaseOrdersCompanyAccountingPeriod: "purchase_orders,company,accounting_period", - PurchaseOrdersCompanyAccountingPeriodPaymentTerm: "purchase_orders,company,accounting_period,payment_term", - PurchaseOrdersCompanyEmployee: "purchase_orders,company,employee", - PurchaseOrdersCompanyEmployeeAccountingPeriod: "purchase_orders,company,employee,accounting_period", - PurchaseOrdersCompanyEmployeeAccountingPeriodPaymentTerm: - "purchase_orders,company,employee,accounting_period,payment_term", - PurchaseOrdersCompanyEmployeePaymentTerm: "purchase_orders,company,employee,payment_term", - PurchaseOrdersCompanyPaymentTerm: "purchase_orders,company,payment_term", - PurchaseOrdersContact: "purchase_orders,contact", - PurchaseOrdersContactAccountingPeriod: "purchase_orders,contact,accounting_period", - PurchaseOrdersContactAccountingPeriodPaymentTerm: "purchase_orders,contact,accounting_period,payment_term", - PurchaseOrdersContactCompany: "purchase_orders,contact,company", - PurchaseOrdersContactCompanyAccountingPeriod: "purchase_orders,contact,company,accounting_period", - PurchaseOrdersContactCompanyAccountingPeriodPaymentTerm: - "purchase_orders,contact,company,accounting_period,payment_term", - PurchaseOrdersContactCompanyEmployee: "purchase_orders,contact,company,employee", - PurchaseOrdersContactCompanyEmployeeAccountingPeriod: "purchase_orders,contact,company,employee,accounting_period", - PurchaseOrdersContactCompanyEmployeeAccountingPeriodPaymentTerm: - "purchase_orders,contact,company,employee,accounting_period,payment_term", - PurchaseOrdersContactCompanyEmployeePaymentTerm: "purchase_orders,contact,company,employee,payment_term", - PurchaseOrdersContactCompanyPaymentTerm: "purchase_orders,contact,company,payment_term", - PurchaseOrdersContactEmployee: "purchase_orders,contact,employee", - PurchaseOrdersContactEmployeeAccountingPeriod: "purchase_orders,contact,employee,accounting_period", - PurchaseOrdersContactEmployeeAccountingPeriodPaymentTerm: - "purchase_orders,contact,employee,accounting_period,payment_term", - PurchaseOrdersContactEmployeePaymentTerm: "purchase_orders,contact,employee,payment_term", - PurchaseOrdersContactPaymentTerm: "purchase_orders,contact,payment_term", - PurchaseOrdersEmployee: "purchase_orders,employee", - PurchaseOrdersEmployeeAccountingPeriod: "purchase_orders,employee,accounting_period", - PurchaseOrdersEmployeeAccountingPeriodPaymentTerm: "purchase_orders,employee,accounting_period,payment_term", - PurchaseOrdersEmployeePaymentTerm: "purchase_orders,employee,payment_term", - PurchaseOrdersPaymentTerm: "purchase_orders,payment_term", - TrackingCategories: "tracking_categories", - TrackingCategoriesAccountingPeriod: "tracking_categories,accounting_period", - TrackingCategoriesAccountingPeriodPaymentTerm: "tracking_categories,accounting_period,payment_term", - TrackingCategoriesAppliedCreditNotes: "tracking_categories,applied_credit_notes", - TrackingCategoriesAppliedCreditNotesAccountingPeriod: "tracking_categories,applied_credit_notes,accounting_period", - TrackingCategoriesAppliedCreditNotesAccountingPeriodPaymentTerm: - "tracking_categories,applied_credit_notes,accounting_period,payment_term", - TrackingCategoriesAppliedCreditNotesAppliedVendorCredits: - "tracking_categories,applied_credit_notes,applied_vendor_credits", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompany: - "tracking_categories,applied_credit_notes,applied_vendor_credits,company", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "tracking_categories,applied_credit_notes,applied_vendor_credits,company,payment_term", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContact: - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompany: - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,payment_term", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployee: - "tracking_categories,applied_credit_notes,applied_vendor_credits,employee", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "tracking_categories,applied_credit_notes,applied_vendor_credits,employee,payment_term", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "tracking_categories,applied_credit_notes,applied_vendor_credits,payment_term", - TrackingCategoriesAppliedCreditNotesCompany: "tracking_categories,applied_credit_notes,company", - TrackingCategoriesAppliedCreditNotesCompanyAccountingPeriod: - "tracking_categories,applied_credit_notes,company,accounting_period", - TrackingCategoriesAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "tracking_categories,applied_credit_notes,company,accounting_period,payment_term", - TrackingCategoriesAppliedCreditNotesCompanyEmployee: "tracking_categories,applied_credit_notes,company,employee", - TrackingCategoriesAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "tracking_categories,applied_credit_notes,company,employee,accounting_period", - TrackingCategoriesAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,applied_credit_notes,company,employee,accounting_period,payment_term", - TrackingCategoriesAppliedCreditNotesCompanyEmployeePaymentTerm: - "tracking_categories,applied_credit_notes,company,employee,payment_term", - TrackingCategoriesAppliedCreditNotesCompanyPaymentTerm: - "tracking_categories,applied_credit_notes,company,payment_term", - TrackingCategoriesAppliedCreditNotesContact: "tracking_categories,applied_credit_notes,contact", - TrackingCategoriesAppliedCreditNotesContactAccountingPeriod: - "tracking_categories,applied_credit_notes,contact,accounting_period", - TrackingCategoriesAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "tracking_categories,applied_credit_notes,contact,accounting_period,payment_term", - TrackingCategoriesAppliedCreditNotesContactCompany: "tracking_categories,applied_credit_notes,contact,company", - TrackingCategoriesAppliedCreditNotesContactCompanyAccountingPeriod: - "tracking_categories,applied_credit_notes,contact,company,accounting_period", - TrackingCategoriesAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "tracking_categories,applied_credit_notes,contact,company,accounting_period,payment_term", - TrackingCategoriesAppliedCreditNotesContactCompanyEmployee: - "tracking_categories,applied_credit_notes,contact,company,employee", - TrackingCategoriesAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "tracking_categories,applied_credit_notes,contact,company,employee,accounting_period", - TrackingCategoriesAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - TrackingCategoriesAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "tracking_categories,applied_credit_notes,contact,company,employee,payment_term", - TrackingCategoriesAppliedCreditNotesContactCompanyPaymentTerm: - "tracking_categories,applied_credit_notes,contact,company,payment_term", - TrackingCategoriesAppliedCreditNotesContactEmployee: "tracking_categories,applied_credit_notes,contact,employee", - TrackingCategoriesAppliedCreditNotesContactEmployeeAccountingPeriod: - "tracking_categories,applied_credit_notes,contact,employee,accounting_period", - TrackingCategoriesAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,applied_credit_notes,contact,employee,accounting_period,payment_term", - TrackingCategoriesAppliedCreditNotesContactEmployeePaymentTerm: - "tracking_categories,applied_credit_notes,contact,employee,payment_term", - TrackingCategoriesAppliedCreditNotesContactPaymentTerm: - "tracking_categories,applied_credit_notes,contact,payment_term", - TrackingCategoriesAppliedCreditNotesEmployee: "tracking_categories,applied_credit_notes,employee", - TrackingCategoriesAppliedCreditNotesEmployeeAccountingPeriod: - "tracking_categories,applied_credit_notes,employee,accounting_period", - TrackingCategoriesAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,applied_credit_notes,employee,accounting_period,payment_term", - TrackingCategoriesAppliedCreditNotesEmployeePaymentTerm: - "tracking_categories,applied_credit_notes,employee,payment_term", - TrackingCategoriesAppliedCreditNotesPaymentTerm: "tracking_categories,applied_credit_notes,payment_term", - TrackingCategoriesAppliedVendorCredits: "tracking_categories,applied_vendor_credits", - TrackingCategoriesAppliedVendorCreditsAccountingPeriod: - "tracking_categories,applied_vendor_credits,accounting_period", - TrackingCategoriesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "tracking_categories,applied_vendor_credits,accounting_period,payment_term", - TrackingCategoriesAppliedVendorCreditsCompany: "tracking_categories,applied_vendor_credits,company", - TrackingCategoriesAppliedVendorCreditsCompanyAccountingPeriod: - "tracking_categories,applied_vendor_credits,company,accounting_period", - TrackingCategoriesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "tracking_categories,applied_vendor_credits,company,accounting_period,payment_term", - TrackingCategoriesAppliedVendorCreditsCompanyEmployee: - "tracking_categories,applied_vendor_credits,company,employee", - TrackingCategoriesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "tracking_categories,applied_vendor_credits,company,employee,accounting_period", - TrackingCategoriesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,applied_vendor_credits,company,employee,accounting_period,payment_term", - TrackingCategoriesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "tracking_categories,applied_vendor_credits,company,employee,payment_term", - TrackingCategoriesAppliedVendorCreditsCompanyPaymentTerm: - "tracking_categories,applied_vendor_credits,company,payment_term", - TrackingCategoriesAppliedVendorCreditsContact: "tracking_categories,applied_vendor_credits,contact", - TrackingCategoriesAppliedVendorCreditsContactAccountingPeriod: - "tracking_categories,applied_vendor_credits,contact,accounting_period", - TrackingCategoriesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "tracking_categories,applied_vendor_credits,contact,accounting_period,payment_term", - TrackingCategoriesAppliedVendorCreditsContactCompany: "tracking_categories,applied_vendor_credits,contact,company", - TrackingCategoriesAppliedVendorCreditsContactCompanyAccountingPeriod: - "tracking_categories,applied_vendor_credits,contact,company,accounting_period", - TrackingCategoriesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "tracking_categories,applied_vendor_credits,contact,company,accounting_period,payment_term", - TrackingCategoriesAppliedVendorCreditsContactCompanyEmployee: - "tracking_categories,applied_vendor_credits,contact,company,employee", - TrackingCategoriesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period", - TrackingCategoriesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - TrackingCategoriesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "tracking_categories,applied_vendor_credits,contact,company,employee,payment_term", - TrackingCategoriesAppliedVendorCreditsContactCompanyPaymentTerm: - "tracking_categories,applied_vendor_credits,contact,company,payment_term", - TrackingCategoriesAppliedVendorCreditsContactEmployee: - "tracking_categories,applied_vendor_credits,contact,employee", - TrackingCategoriesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "tracking_categories,applied_vendor_credits,contact,employee,accounting_period", - TrackingCategoriesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,applied_vendor_credits,contact,employee,accounting_period,payment_term", - TrackingCategoriesAppliedVendorCreditsContactEmployeePaymentTerm: - "tracking_categories,applied_vendor_credits,contact,employee,payment_term", - TrackingCategoriesAppliedVendorCreditsContactPaymentTerm: - "tracking_categories,applied_vendor_credits,contact,payment_term", - TrackingCategoriesAppliedVendorCreditsEmployee: "tracking_categories,applied_vendor_credits,employee", - TrackingCategoriesAppliedVendorCreditsEmployeeAccountingPeriod: - "tracking_categories,applied_vendor_credits,employee,accounting_period", - TrackingCategoriesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,applied_vendor_credits,employee,accounting_period,payment_term", - TrackingCategoriesAppliedVendorCreditsEmployeePaymentTerm: - "tracking_categories,applied_vendor_credits,employee,payment_term", - TrackingCategoriesAppliedVendorCreditsPaymentTerm: "tracking_categories,applied_vendor_credits,payment_term", - TrackingCategoriesCompany: "tracking_categories,company", - TrackingCategoriesCompanyAccountingPeriod: "tracking_categories,company,accounting_period", - TrackingCategoriesCompanyAccountingPeriodPaymentTerm: "tracking_categories,company,accounting_period,payment_term", - TrackingCategoriesCompanyEmployee: "tracking_categories,company,employee", - TrackingCategoriesCompanyEmployeeAccountingPeriod: "tracking_categories,company,employee,accounting_period", - TrackingCategoriesCompanyEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,company,employee,accounting_period,payment_term", - TrackingCategoriesCompanyEmployeePaymentTerm: "tracking_categories,company,employee,payment_term", - TrackingCategoriesCompanyPaymentTerm: "tracking_categories,company,payment_term", - TrackingCategoriesContact: "tracking_categories,contact", - TrackingCategoriesContactAccountingPeriod: "tracking_categories,contact,accounting_period", - TrackingCategoriesContactAccountingPeriodPaymentTerm: "tracking_categories,contact,accounting_period,payment_term", - TrackingCategoriesContactCompany: "tracking_categories,contact,company", - TrackingCategoriesContactCompanyAccountingPeriod: "tracking_categories,contact,company,accounting_period", - TrackingCategoriesContactCompanyAccountingPeriodPaymentTerm: - "tracking_categories,contact,company,accounting_period,payment_term", - TrackingCategoriesContactCompanyEmployee: "tracking_categories,contact,company,employee", - TrackingCategoriesContactCompanyEmployeeAccountingPeriod: - "tracking_categories,contact,company,employee,accounting_period", - TrackingCategoriesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,contact,company,employee,accounting_period,payment_term", - TrackingCategoriesContactCompanyEmployeePaymentTerm: "tracking_categories,contact,company,employee,payment_term", - TrackingCategoriesContactCompanyPaymentTerm: "tracking_categories,contact,company,payment_term", - TrackingCategoriesContactEmployee: "tracking_categories,contact,employee", - TrackingCategoriesContactEmployeeAccountingPeriod: "tracking_categories,contact,employee,accounting_period", - TrackingCategoriesContactEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,contact,employee,accounting_period,payment_term", - TrackingCategoriesContactEmployeePaymentTerm: "tracking_categories,contact,employee,payment_term", - TrackingCategoriesContactPaymentTerm: "tracking_categories,contact,payment_term", - TrackingCategoriesEmployee: "tracking_categories,employee", - TrackingCategoriesEmployeeAccountingPeriod: "tracking_categories,employee,accounting_period", - TrackingCategoriesEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,employee,accounting_period,payment_term", - TrackingCategoriesEmployeePaymentTerm: "tracking_categories,employee,payment_term", - TrackingCategoriesPaymentTerm: "tracking_categories,payment_term", - TrackingCategoriesPurchaseOrders: "tracking_categories,purchase_orders", - TrackingCategoriesPurchaseOrdersAccountingPeriod: "tracking_categories,purchase_orders,accounting_period", - TrackingCategoriesPurchaseOrdersAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotes: "tracking_categories,purchase_orders,applied_credit_notes", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAccountingPeriod: - "tracking_categories,purchase_orders,applied_credit_notes,accounting_period", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCredits: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompany: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContact: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompany: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployee: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesCompany: - "tracking_categories,purchase_orders,applied_credit_notes,company", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriod: - "tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployee: - "tracking_categories,purchase_orders,applied_credit_notes,company,employee", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployeePaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,company,employee,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyPaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,company,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesContact: - "tracking_categories,purchase_orders,applied_credit_notes,contact", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesContactAccountingPeriod: - "tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompany: - "tracking_categories,purchase_orders,applied_credit_notes,contact,company", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriod: - "tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployee: - "tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyPaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,contact,company,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployee: - "tracking_categories,purchase_orders,applied_credit_notes,contact,employee", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriod: - "tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployeePaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,contact,employee,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesContactPaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,contact,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployee: - "tracking_categories,purchase_orders,applied_credit_notes,employee", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriod: - "tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployeePaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,employee,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesPaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,payment_term", - TrackingCategoriesPurchaseOrdersAppliedVendorCredits: "tracking_categories,purchase_orders,applied_vendor_credits", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsAccountingPeriod: - "tracking_categories,purchase_orders,applied_vendor_credits,accounting_period", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompany: - "tracking_categories,purchase_orders,applied_vendor_credits,company", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriod: - "tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployee: - "tracking_categories,purchase_orders,applied_vendor_credits,company,employee", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployeePaymentTerm: - "tracking_categories,purchase_orders,applied_vendor_credits,company,employee,payment_term", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyPaymentTerm: - "tracking_categories,purchase_orders,applied_vendor_credits,company,payment_term", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsContact: - "tracking_categories,purchase_orders,applied_vendor_credits,contact", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactAccountingPeriod: - "tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompany: - "tracking_categories,purchase_orders,applied_vendor_credits,contact,company", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriod: - "tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployee: - "tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyPaymentTerm: - "tracking_categories,purchase_orders,applied_vendor_credits,contact,company,payment_term", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployee: - "tracking_categories,purchase_orders,applied_vendor_credits,contact,employee", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriod: - "tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployeePaymentTerm: - "tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactPaymentTerm: - "tracking_categories,purchase_orders,applied_vendor_credits,contact,payment_term", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployee: - "tracking_categories,purchase_orders,applied_vendor_credits,employee", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriod: - "tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployeePaymentTerm: - "tracking_categories,purchase_orders,applied_vendor_credits,employee,payment_term", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsPaymentTerm: - "tracking_categories,purchase_orders,applied_vendor_credits,payment_term", - TrackingCategoriesPurchaseOrdersCompany: "tracking_categories,purchase_orders,company", - TrackingCategoriesPurchaseOrdersCompanyAccountingPeriod: - "tracking_categories,purchase_orders,company,accounting_period", - TrackingCategoriesPurchaseOrdersCompanyAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,company,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersCompanyEmployee: "tracking_categories,purchase_orders,company,employee", - TrackingCategoriesPurchaseOrdersCompanyEmployeeAccountingPeriod: - "tracking_categories,purchase_orders,company,employee,accounting_period", - TrackingCategoriesPurchaseOrdersCompanyEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,company,employee,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersCompanyEmployeePaymentTerm: - "tracking_categories,purchase_orders,company,employee,payment_term", - TrackingCategoriesPurchaseOrdersCompanyPaymentTerm: "tracking_categories,purchase_orders,company,payment_term", - TrackingCategoriesPurchaseOrdersContact: "tracking_categories,purchase_orders,contact", - TrackingCategoriesPurchaseOrdersContactAccountingPeriod: - "tracking_categories,purchase_orders,contact,accounting_period", - TrackingCategoriesPurchaseOrdersContactAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,contact,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersContactCompany: "tracking_categories,purchase_orders,contact,company", - TrackingCategoriesPurchaseOrdersContactCompanyAccountingPeriod: - "tracking_categories,purchase_orders,contact,company,accounting_period", - TrackingCategoriesPurchaseOrdersContactCompanyAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,contact,company,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersContactCompanyEmployee: - "tracking_categories,purchase_orders,contact,company,employee", - TrackingCategoriesPurchaseOrdersContactCompanyEmployeeAccountingPeriod: - "tracking_categories,purchase_orders,contact,company,employee,accounting_period", - TrackingCategoriesPurchaseOrdersContactCompanyEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,contact,company,employee,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersContactCompanyEmployeePaymentTerm: - "tracking_categories,purchase_orders,contact,company,employee,payment_term", - TrackingCategoriesPurchaseOrdersContactCompanyPaymentTerm: - "tracking_categories,purchase_orders,contact,company,payment_term", - TrackingCategoriesPurchaseOrdersContactEmployee: "tracking_categories,purchase_orders,contact,employee", - TrackingCategoriesPurchaseOrdersContactEmployeeAccountingPeriod: - "tracking_categories,purchase_orders,contact,employee,accounting_period", - TrackingCategoriesPurchaseOrdersContactEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,contact,employee,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersContactEmployeePaymentTerm: - "tracking_categories,purchase_orders,contact,employee,payment_term", - TrackingCategoriesPurchaseOrdersContactPaymentTerm: "tracking_categories,purchase_orders,contact,payment_term", - TrackingCategoriesPurchaseOrdersEmployee: "tracking_categories,purchase_orders,employee", - TrackingCategoriesPurchaseOrdersEmployeeAccountingPeriod: - "tracking_categories,purchase_orders,employee,accounting_period", - TrackingCategoriesPurchaseOrdersEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,employee,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersEmployeePaymentTerm: "tracking_categories,purchase_orders,employee,payment_term", - TrackingCategoriesPurchaseOrdersPaymentTerm: "tracking_categories,purchase_orders,payment_term", -} as const; -export type InvoicesListRequestExpand = (typeof InvoicesListRequestExpand)[keyof typeof InvoicesListRequestExpand]; diff --git a/src/api/resources/accounting/resources/invoices/types/InvoicesListRequestStatus.ts b/src/api/resources/accounting/resources/invoices/types/InvoicesListRequestStatus.ts deleted file mode 100644 index ce5bf4f71..000000000 --- a/src/api/resources/accounting/resources/invoices/types/InvoicesListRequestStatus.ts +++ /dev/null @@ -1,11 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export const InvoicesListRequestStatus = { - Draft: "DRAFT", - Open: "OPEN", - Paid: "PAID", - PartiallyPaid: "PARTIALLY_PAID", - Submitted: "SUBMITTED", - Void: "VOID", -} as const; -export type InvoicesListRequestStatus = (typeof InvoicesListRequestStatus)[keyof typeof InvoicesListRequestStatus]; diff --git a/src/api/resources/accounting/resources/invoices/types/InvoicesListRequestType.ts b/src/api/resources/accounting/resources/invoices/types/InvoicesListRequestType.ts deleted file mode 100644 index 325d4dd7a..000000000 --- a/src/api/resources/accounting/resources/invoices/types/InvoicesListRequestType.ts +++ /dev/null @@ -1,7 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export const InvoicesListRequestType = { - AccountsPayable: "ACCOUNTS_PAYABLE", - AccountsReceivable: "ACCOUNTS_RECEIVABLE", -} as const; -export type InvoicesListRequestType = (typeof InvoicesListRequestType)[keyof typeof InvoicesListRequestType]; diff --git a/src/api/resources/accounting/resources/invoices/types/InvoicesRetrieveRequestExpand.ts b/src/api/resources/accounting/resources/invoices/types/InvoicesRetrieveRequestExpand.ts deleted file mode 100644 index 508627ee7..000000000 --- a/src/api/resources/accounting/resources/invoices/types/InvoicesRetrieveRequestExpand.ts +++ /dev/null @@ -1,7517 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export const InvoicesRetrieveRequestExpand = { - AccountingPeriod: "accounting_period", - AccountingPeriodPaymentTerm: "accounting_period,payment_term", - AppliedCreditNotes: "applied_credit_notes", - AppliedCreditNotesAccountingPeriod: "applied_credit_notes,accounting_period", - AppliedCreditNotesAccountingPeriodPaymentTerm: "applied_credit_notes,accounting_period,payment_term", - AppliedCreditNotesAppliedVendorCredits: "applied_credit_notes,applied_vendor_credits", - AppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "applied_credit_notes,applied_vendor_credits,accounting_period", - AppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - AppliedCreditNotesAppliedVendorCreditsCompany: "applied_credit_notes,applied_vendor_credits,company", - AppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "applied_credit_notes,applied_vendor_credits,company,accounting_period", - AppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - AppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "applied_credit_notes,applied_vendor_credits,company,employee", - AppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - AppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - AppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - AppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "applied_credit_notes,applied_vendor_credits,company,payment_term", - AppliedCreditNotesAppliedVendorCreditsContact: "applied_credit_notes,applied_vendor_credits,contact", - AppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "applied_credit_notes,applied_vendor_credits,contact,accounting_period", - AppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - AppliedCreditNotesAppliedVendorCreditsContactCompany: "applied_credit_notes,applied_vendor_credits,contact,company", - AppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - AppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - AppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "applied_credit_notes,applied_vendor_credits,contact,company,employee", - AppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - AppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - AppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - AppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - AppliedCreditNotesAppliedVendorCreditsContactEmployee: - "applied_credit_notes,applied_vendor_credits,contact,employee", - AppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - AppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - AppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - AppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "applied_credit_notes,applied_vendor_credits,contact,payment_term", - AppliedCreditNotesAppliedVendorCreditsEmployee: "applied_credit_notes,applied_vendor_credits,employee", - AppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "applied_credit_notes,applied_vendor_credits,employee,accounting_period", - AppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - AppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "applied_credit_notes,applied_vendor_credits,employee,payment_term", - AppliedCreditNotesAppliedVendorCreditsPaymentTerm: "applied_credit_notes,applied_vendor_credits,payment_term", - AppliedCreditNotesCompany: "applied_credit_notes,company", - AppliedCreditNotesCompanyAccountingPeriod: "applied_credit_notes,company,accounting_period", - AppliedCreditNotesCompanyAccountingPeriodPaymentTerm: "applied_credit_notes,company,accounting_period,payment_term", - AppliedCreditNotesCompanyEmployee: "applied_credit_notes,company,employee", - AppliedCreditNotesCompanyEmployeeAccountingPeriod: "applied_credit_notes,company,employee,accounting_period", - AppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_credit_notes,company,employee,accounting_period,payment_term", - AppliedCreditNotesCompanyEmployeePaymentTerm: "applied_credit_notes,company,employee,payment_term", - AppliedCreditNotesCompanyPaymentTerm: "applied_credit_notes,company,payment_term", - AppliedCreditNotesContact: "applied_credit_notes,contact", - AppliedCreditNotesContactAccountingPeriod: "applied_credit_notes,contact,accounting_period", - AppliedCreditNotesContactAccountingPeriodPaymentTerm: "applied_credit_notes,contact,accounting_period,payment_term", - AppliedCreditNotesContactCompany: "applied_credit_notes,contact,company", - AppliedCreditNotesContactCompanyAccountingPeriod: "applied_credit_notes,contact,company,accounting_period", - AppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "applied_credit_notes,contact,company,accounting_period,payment_term", - AppliedCreditNotesContactCompanyEmployee: "applied_credit_notes,contact,company,employee", - AppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "applied_credit_notes,contact,company,employee,accounting_period", - AppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_credit_notes,contact,company,employee,accounting_period,payment_term", - AppliedCreditNotesContactCompanyEmployeePaymentTerm: "applied_credit_notes,contact,company,employee,payment_term", - AppliedCreditNotesContactCompanyPaymentTerm: "applied_credit_notes,contact,company,payment_term", - AppliedCreditNotesContactEmployee: "applied_credit_notes,contact,employee", - AppliedCreditNotesContactEmployeeAccountingPeriod: "applied_credit_notes,contact,employee,accounting_period", - AppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "applied_credit_notes,contact,employee,accounting_period,payment_term", - AppliedCreditNotesContactEmployeePaymentTerm: "applied_credit_notes,contact,employee,payment_term", - AppliedCreditNotesContactPaymentTerm: "applied_credit_notes,contact,payment_term", - AppliedCreditNotesEmployee: "applied_credit_notes,employee", - AppliedCreditNotesEmployeeAccountingPeriod: "applied_credit_notes,employee,accounting_period", - AppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "applied_credit_notes,employee,accounting_period,payment_term", - AppliedCreditNotesEmployeePaymentTerm: "applied_credit_notes,employee,payment_term", - AppliedCreditNotesPaymentTerm: "applied_credit_notes,payment_term", - AppliedPayments: "applied_payments", - AppliedPaymentsAccountingPeriod: "applied_payments,accounting_period", - AppliedPaymentsAccountingPeriodPaymentTerm: "applied_payments,accounting_period,payment_term", - AppliedPaymentsAppliedCreditNotes: "applied_payments,applied_credit_notes", - AppliedPaymentsAppliedCreditNotesAccountingPeriod: "applied_payments,applied_credit_notes,accounting_period", - AppliedPaymentsAppliedCreditNotesAccountingPeriodPaymentTerm: - "applied_payments,applied_credit_notes,accounting_period,payment_term", - AppliedPaymentsAppliedCreditNotesAppliedVendorCredits: - "applied_payments,applied_credit_notes,applied_vendor_credits", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "applied_payments,applied_credit_notes,applied_vendor_credits,accounting_period", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "applied_payments,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsCompany: - "applied_payments,applied_credit_notes,applied_vendor_credits,company", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "applied_payments,applied_credit_notes,applied_vendor_credits,company,accounting_period", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "applied_payments,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "applied_payments,applied_credit_notes,applied_vendor_credits,company,employee", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "applied_payments,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "applied_payments,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "applied_payments,applied_credit_notes,applied_vendor_credits,company,payment_term", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContact: - "applied_payments,applied_credit_notes,applied_vendor_credits,contact", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactCompany: - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,company", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,employee", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,employee", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,payment_term", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsEmployee: - "applied_payments,applied_credit_notes,applied_vendor_credits,employee", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "applied_payments,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "applied_payments,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "applied_payments,applied_credit_notes,applied_vendor_credits,employee,payment_term", - AppliedPaymentsAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "applied_payments,applied_credit_notes,applied_vendor_credits,payment_term", - AppliedPaymentsAppliedCreditNotesCompany: "applied_payments,applied_credit_notes,company", - AppliedPaymentsAppliedCreditNotesCompanyAccountingPeriod: - "applied_payments,applied_credit_notes,company,accounting_period", - AppliedPaymentsAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "applied_payments,applied_credit_notes,company,accounting_period,payment_term", - AppliedPaymentsAppliedCreditNotesCompanyEmployee: "applied_payments,applied_credit_notes,company,employee", - AppliedPaymentsAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "applied_payments,applied_credit_notes,company,employee,accounting_period", - AppliedPaymentsAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,applied_credit_notes,company,employee,accounting_period,payment_term", - AppliedPaymentsAppliedCreditNotesCompanyEmployeePaymentTerm: - "applied_payments,applied_credit_notes,company,employee,payment_term", - AppliedPaymentsAppliedCreditNotesCompanyPaymentTerm: "applied_payments,applied_credit_notes,company,payment_term", - AppliedPaymentsAppliedCreditNotesContact: "applied_payments,applied_credit_notes,contact", - AppliedPaymentsAppliedCreditNotesContactAccountingPeriod: - "applied_payments,applied_credit_notes,contact,accounting_period", - AppliedPaymentsAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "applied_payments,applied_credit_notes,contact,accounting_period,payment_term", - AppliedPaymentsAppliedCreditNotesContactCompany: "applied_payments,applied_credit_notes,contact,company", - AppliedPaymentsAppliedCreditNotesContactCompanyAccountingPeriod: - "applied_payments,applied_credit_notes,contact,company,accounting_period", - AppliedPaymentsAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,applied_credit_notes,contact,company,accounting_period,payment_term", - AppliedPaymentsAppliedCreditNotesContactCompanyEmployee: - "applied_payments,applied_credit_notes,contact,company,employee", - AppliedPaymentsAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "applied_payments,applied_credit_notes,contact,company,employee,accounting_period", - AppliedPaymentsAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "applied_payments,applied_credit_notes,contact,company,employee,payment_term", - AppliedPaymentsAppliedCreditNotesContactCompanyPaymentTerm: - "applied_payments,applied_credit_notes,contact,company,payment_term", - AppliedPaymentsAppliedCreditNotesContactEmployee: "applied_payments,applied_credit_notes,contact,employee", - AppliedPaymentsAppliedCreditNotesContactEmployeeAccountingPeriod: - "applied_payments,applied_credit_notes,contact,employee,accounting_period", - AppliedPaymentsAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,applied_credit_notes,contact,employee,accounting_period,payment_term", - AppliedPaymentsAppliedCreditNotesContactEmployeePaymentTerm: - "applied_payments,applied_credit_notes,contact,employee,payment_term", - AppliedPaymentsAppliedCreditNotesContactPaymentTerm: "applied_payments,applied_credit_notes,contact,payment_term", - AppliedPaymentsAppliedCreditNotesEmployee: "applied_payments,applied_credit_notes,employee", - AppliedPaymentsAppliedCreditNotesEmployeeAccountingPeriod: - "applied_payments,applied_credit_notes,employee,accounting_period", - AppliedPaymentsAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "applied_payments,applied_credit_notes,employee,accounting_period,payment_term", - AppliedPaymentsAppliedCreditNotesEmployeePaymentTerm: "applied_payments,applied_credit_notes,employee,payment_term", - AppliedPaymentsAppliedCreditNotesPaymentTerm: "applied_payments,applied_credit_notes,payment_term", - AppliedPaymentsAppliedVendorCredits: "applied_payments,applied_vendor_credits", - AppliedPaymentsAppliedVendorCreditsAccountingPeriod: "applied_payments,applied_vendor_credits,accounting_period", - AppliedPaymentsAppliedVendorCreditsAccountingPeriodPaymentTerm: - "applied_payments,applied_vendor_credits,accounting_period,payment_term", - AppliedPaymentsAppliedVendorCreditsCompany: "applied_payments,applied_vendor_credits,company", - AppliedPaymentsAppliedVendorCreditsCompanyAccountingPeriod: - "applied_payments,applied_vendor_credits,company,accounting_period", - AppliedPaymentsAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "applied_payments,applied_vendor_credits,company,accounting_period,payment_term", - AppliedPaymentsAppliedVendorCreditsCompanyEmployee: "applied_payments,applied_vendor_credits,company,employee", - AppliedPaymentsAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "applied_payments,applied_vendor_credits,company,employee,accounting_period", - AppliedPaymentsAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,applied_vendor_credits,company,employee,accounting_period,payment_term", - AppliedPaymentsAppliedVendorCreditsCompanyEmployeePaymentTerm: - "applied_payments,applied_vendor_credits,company,employee,payment_term", - AppliedPaymentsAppliedVendorCreditsCompanyPaymentTerm: - "applied_payments,applied_vendor_credits,company,payment_term", - AppliedPaymentsAppliedVendorCreditsContact: "applied_payments,applied_vendor_credits,contact", - AppliedPaymentsAppliedVendorCreditsContactAccountingPeriod: - "applied_payments,applied_vendor_credits,contact,accounting_period", - AppliedPaymentsAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "applied_payments,applied_vendor_credits,contact,accounting_period,payment_term", - AppliedPaymentsAppliedVendorCreditsContactCompany: "applied_payments,applied_vendor_credits,contact,company", - AppliedPaymentsAppliedVendorCreditsContactCompanyAccountingPeriod: - "applied_payments,applied_vendor_credits,contact,company,accounting_period", - AppliedPaymentsAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,applied_vendor_credits,contact,company,accounting_period,payment_term", - AppliedPaymentsAppliedVendorCreditsContactCompanyEmployee: - "applied_payments,applied_vendor_credits,contact,company,employee", - AppliedPaymentsAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "applied_payments,applied_vendor_credits,contact,company,employee,accounting_period", - AppliedPaymentsAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "applied_payments,applied_vendor_credits,contact,company,employee,payment_term", - AppliedPaymentsAppliedVendorCreditsContactCompanyPaymentTerm: - "applied_payments,applied_vendor_credits,contact,company,payment_term", - AppliedPaymentsAppliedVendorCreditsContactEmployee: "applied_payments,applied_vendor_credits,contact,employee", - AppliedPaymentsAppliedVendorCreditsContactEmployeeAccountingPeriod: - "applied_payments,applied_vendor_credits,contact,employee,accounting_period", - AppliedPaymentsAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,applied_vendor_credits,contact,employee,accounting_period,payment_term", - AppliedPaymentsAppliedVendorCreditsContactEmployeePaymentTerm: - "applied_payments,applied_vendor_credits,contact,employee,payment_term", - AppliedPaymentsAppliedVendorCreditsContactPaymentTerm: - "applied_payments,applied_vendor_credits,contact,payment_term", - AppliedPaymentsAppliedVendorCreditsEmployee: "applied_payments,applied_vendor_credits,employee", - AppliedPaymentsAppliedVendorCreditsEmployeeAccountingPeriod: - "applied_payments,applied_vendor_credits,employee,accounting_period", - AppliedPaymentsAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "applied_payments,applied_vendor_credits,employee,accounting_period,payment_term", - AppliedPaymentsAppliedVendorCreditsEmployeePaymentTerm: - "applied_payments,applied_vendor_credits,employee,payment_term", - AppliedPaymentsAppliedVendorCreditsPaymentTerm: "applied_payments,applied_vendor_credits,payment_term", - AppliedPaymentsCompany: "applied_payments,company", - AppliedPaymentsCompanyAccountingPeriod: "applied_payments,company,accounting_period", - AppliedPaymentsCompanyAccountingPeriodPaymentTerm: "applied_payments,company,accounting_period,payment_term", - AppliedPaymentsCompanyEmployee: "applied_payments,company,employee", - AppliedPaymentsCompanyEmployeeAccountingPeriod: "applied_payments,company,employee,accounting_period", - AppliedPaymentsCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,company,employee,accounting_period,payment_term", - AppliedPaymentsCompanyEmployeePaymentTerm: "applied_payments,company,employee,payment_term", - AppliedPaymentsCompanyPaymentTerm: "applied_payments,company,payment_term", - AppliedPaymentsContact: "applied_payments,contact", - AppliedPaymentsContactAccountingPeriod: "applied_payments,contact,accounting_period", - AppliedPaymentsContactAccountingPeriodPaymentTerm: "applied_payments,contact,accounting_period,payment_term", - AppliedPaymentsContactCompany: "applied_payments,contact,company", - AppliedPaymentsContactCompanyAccountingPeriod: "applied_payments,contact,company,accounting_period", - AppliedPaymentsContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,contact,company,accounting_period,payment_term", - AppliedPaymentsContactCompanyEmployee: "applied_payments,contact,company,employee", - AppliedPaymentsContactCompanyEmployeeAccountingPeriod: - "applied_payments,contact,company,employee,accounting_period", - AppliedPaymentsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsContactCompanyEmployeePaymentTerm: "applied_payments,contact,company,employee,payment_term", - AppliedPaymentsContactCompanyPaymentTerm: "applied_payments,contact,company,payment_term", - AppliedPaymentsContactEmployee: "applied_payments,contact,employee", - AppliedPaymentsContactEmployeeAccountingPeriod: "applied_payments,contact,employee,accounting_period", - AppliedPaymentsContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,contact,employee,accounting_period,payment_term", - AppliedPaymentsContactEmployeePaymentTerm: "applied_payments,contact,employee,payment_term", - AppliedPaymentsContactPaymentTerm: "applied_payments,contact,payment_term", - AppliedPaymentsEmployee: "applied_payments,employee", - AppliedPaymentsEmployeeAccountingPeriod: "applied_payments,employee,accounting_period", - AppliedPaymentsEmployeeAccountingPeriodPaymentTerm: "applied_payments,employee,accounting_period,payment_term", - AppliedPaymentsEmployeePaymentTerm: "applied_payments,employee,payment_term", - AppliedPaymentsLineItems: "applied_payments,line_items", - AppliedPaymentsLineItemsAccountingPeriod: "applied_payments,line_items,accounting_period", - AppliedPaymentsLineItemsAccountingPeriodPaymentTerm: "applied_payments,line_items,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotes: "applied_payments,line_items,applied_credit_notes", - AppliedPaymentsLineItemsAppliedCreditNotesAccountingPeriod: - "applied_payments,line_items,applied_credit_notes,accounting_period", - AppliedPaymentsLineItemsAppliedCreditNotesAccountingPeriodPaymentTerm: - "applied_payments,line_items,applied_credit_notes,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCredits: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,accounting_period", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsCompany: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,accounting_period", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContact: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactCompany: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsEmployee: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,employee", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,employee,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesCompany: "applied_payments,line_items,applied_credit_notes,company", - AppliedPaymentsLineItemsAppliedCreditNotesCompanyAccountingPeriod: - "applied_payments,line_items,applied_credit_notes,company,accounting_period", - AppliedPaymentsLineItemsAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,applied_credit_notes,company,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesCompanyEmployee: - "applied_payments,line_items,applied_credit_notes,company,employee", - AppliedPaymentsLineItemsAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,applied_credit_notes,company,employee,accounting_period", - AppliedPaymentsLineItemsAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,applied_credit_notes,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesCompanyEmployeePaymentTerm: - "applied_payments,line_items,applied_credit_notes,company,employee,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesCompanyPaymentTerm: - "applied_payments,line_items,applied_credit_notes,company,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesContact: "applied_payments,line_items,applied_credit_notes,contact", - AppliedPaymentsLineItemsAppliedCreditNotesContactAccountingPeriod: - "applied_payments,line_items,applied_credit_notes,contact,accounting_period", - AppliedPaymentsLineItemsAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "applied_payments,line_items,applied_credit_notes,contact,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesContactCompany: - "applied_payments,line_items,applied_credit_notes,contact,company", - AppliedPaymentsLineItemsAppliedCreditNotesContactCompanyAccountingPeriod: - "applied_payments,line_items,applied_credit_notes,contact,company,accounting_period", - AppliedPaymentsLineItemsAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,applied_credit_notes,contact,company,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesContactCompanyEmployee: - "applied_payments,line_items,applied_credit_notes,contact,company,employee", - AppliedPaymentsLineItemsAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,applied_credit_notes,contact,company,employee,accounting_period", - AppliedPaymentsLineItemsAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "applied_payments,line_items,applied_credit_notes,contact,company,employee,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesContactCompanyPaymentTerm: - "applied_payments,line_items,applied_credit_notes,contact,company,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesContactEmployee: - "applied_payments,line_items,applied_credit_notes,contact,employee", - AppliedPaymentsLineItemsAppliedCreditNotesContactEmployeeAccountingPeriod: - "applied_payments,line_items,applied_credit_notes,contact,employee,accounting_period", - AppliedPaymentsLineItemsAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,applied_credit_notes,contact,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesContactEmployeePaymentTerm: - "applied_payments,line_items,applied_credit_notes,contact,employee,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesContactPaymentTerm: - "applied_payments,line_items,applied_credit_notes,contact,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesEmployee: "applied_payments,line_items,applied_credit_notes,employee", - AppliedPaymentsLineItemsAppliedCreditNotesEmployeeAccountingPeriod: - "applied_payments,line_items,applied_credit_notes,employee,accounting_period", - AppliedPaymentsLineItemsAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,applied_credit_notes,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesEmployeePaymentTerm: - "applied_payments,line_items,applied_credit_notes,employee,payment_term", - AppliedPaymentsLineItemsAppliedCreditNotesPaymentTerm: - "applied_payments,line_items,applied_credit_notes,payment_term", - AppliedPaymentsLineItemsAppliedVendorCredits: "applied_payments,line_items,applied_vendor_credits", - AppliedPaymentsLineItemsAppliedVendorCreditsAccountingPeriod: - "applied_payments,line_items,applied_vendor_credits,accounting_period", - AppliedPaymentsLineItemsAppliedVendorCreditsAccountingPeriodPaymentTerm: - "applied_payments,line_items,applied_vendor_credits,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedVendorCreditsCompany: "applied_payments,line_items,applied_vendor_credits,company", - AppliedPaymentsLineItemsAppliedVendorCreditsCompanyAccountingPeriod: - "applied_payments,line_items,applied_vendor_credits,company,accounting_period", - AppliedPaymentsLineItemsAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,applied_vendor_credits,company,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedVendorCreditsCompanyEmployee: - "applied_payments,line_items,applied_vendor_credits,company,employee", - AppliedPaymentsLineItemsAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,applied_vendor_credits,company,employee,accounting_period", - AppliedPaymentsLineItemsAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,applied_vendor_credits,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedVendorCreditsCompanyEmployeePaymentTerm: - "applied_payments,line_items,applied_vendor_credits,company,employee,payment_term", - AppliedPaymentsLineItemsAppliedVendorCreditsCompanyPaymentTerm: - "applied_payments,line_items,applied_vendor_credits,company,payment_term", - AppliedPaymentsLineItemsAppliedVendorCreditsContact: "applied_payments,line_items,applied_vendor_credits,contact", - AppliedPaymentsLineItemsAppliedVendorCreditsContactAccountingPeriod: - "applied_payments,line_items,applied_vendor_credits,contact,accounting_period", - AppliedPaymentsLineItemsAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "applied_payments,line_items,applied_vendor_credits,contact,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedVendorCreditsContactCompany: - "applied_payments,line_items,applied_vendor_credits,contact,company", - AppliedPaymentsLineItemsAppliedVendorCreditsContactCompanyAccountingPeriod: - "applied_payments,line_items,applied_vendor_credits,contact,company,accounting_period", - AppliedPaymentsLineItemsAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,applied_vendor_credits,contact,company,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedVendorCreditsContactCompanyEmployee: - "applied_payments,line_items,applied_vendor_credits,contact,company,employee", - AppliedPaymentsLineItemsAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,applied_vendor_credits,contact,company,employee,accounting_period", - AppliedPaymentsLineItemsAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "applied_payments,line_items,applied_vendor_credits,contact,company,employee,payment_term", - AppliedPaymentsLineItemsAppliedVendorCreditsContactCompanyPaymentTerm: - "applied_payments,line_items,applied_vendor_credits,contact,company,payment_term", - AppliedPaymentsLineItemsAppliedVendorCreditsContactEmployee: - "applied_payments,line_items,applied_vendor_credits,contact,employee", - AppliedPaymentsLineItemsAppliedVendorCreditsContactEmployeeAccountingPeriod: - "applied_payments,line_items,applied_vendor_credits,contact,employee,accounting_period", - AppliedPaymentsLineItemsAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,applied_vendor_credits,contact,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedVendorCreditsContactEmployeePaymentTerm: - "applied_payments,line_items,applied_vendor_credits,contact,employee,payment_term", - AppliedPaymentsLineItemsAppliedVendorCreditsContactPaymentTerm: - "applied_payments,line_items,applied_vendor_credits,contact,payment_term", - AppliedPaymentsLineItemsAppliedVendorCreditsEmployee: "applied_payments,line_items,applied_vendor_credits,employee", - AppliedPaymentsLineItemsAppliedVendorCreditsEmployeeAccountingPeriod: - "applied_payments,line_items,applied_vendor_credits,employee,accounting_period", - AppliedPaymentsLineItemsAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,applied_vendor_credits,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsAppliedVendorCreditsEmployeePaymentTerm: - "applied_payments,line_items,applied_vendor_credits,employee,payment_term", - AppliedPaymentsLineItemsAppliedVendorCreditsPaymentTerm: - "applied_payments,line_items,applied_vendor_credits,payment_term", - AppliedPaymentsLineItemsCompany: "applied_payments,line_items,company", - AppliedPaymentsLineItemsCompanyAccountingPeriod: "applied_payments,line_items,company,accounting_period", - AppliedPaymentsLineItemsCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,company,accounting_period,payment_term", - AppliedPaymentsLineItemsCompanyEmployee: "applied_payments,line_items,company,employee", - AppliedPaymentsLineItemsCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,company,employee,accounting_period", - AppliedPaymentsLineItemsCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsCompanyEmployeePaymentTerm: "applied_payments,line_items,company,employee,payment_term", - AppliedPaymentsLineItemsCompanyPaymentTerm: "applied_payments,line_items,company,payment_term", - AppliedPaymentsLineItemsContact: "applied_payments,line_items,contact", - AppliedPaymentsLineItemsContactAccountingPeriod: "applied_payments,line_items,contact,accounting_period", - AppliedPaymentsLineItemsContactAccountingPeriodPaymentTerm: - "applied_payments,line_items,contact,accounting_period,payment_term", - AppliedPaymentsLineItemsContactCompany: "applied_payments,line_items,contact,company", - AppliedPaymentsLineItemsContactCompanyAccountingPeriod: - "applied_payments,line_items,contact,company,accounting_period", - AppliedPaymentsLineItemsContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,contact,company,accounting_period,payment_term", - AppliedPaymentsLineItemsContactCompanyEmployee: "applied_payments,line_items,contact,company,employee", - AppliedPaymentsLineItemsContactCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,contact,company,employee,accounting_period", - AppliedPaymentsLineItemsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsContactCompanyEmployeePaymentTerm: - "applied_payments,line_items,contact,company,employee,payment_term", - AppliedPaymentsLineItemsContactCompanyPaymentTerm: "applied_payments,line_items,contact,company,payment_term", - AppliedPaymentsLineItemsContactEmployee: "applied_payments,line_items,contact,employee", - AppliedPaymentsLineItemsContactEmployeeAccountingPeriod: - "applied_payments,line_items,contact,employee,accounting_period", - AppliedPaymentsLineItemsContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,contact,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsContactEmployeePaymentTerm: "applied_payments,line_items,contact,employee,payment_term", - AppliedPaymentsLineItemsContactPaymentTerm: "applied_payments,line_items,contact,payment_term", - AppliedPaymentsLineItemsEmployee: "applied_payments,line_items,employee", - AppliedPaymentsLineItemsEmployeeAccountingPeriod: "applied_payments,line_items,employee,accounting_period", - AppliedPaymentsLineItemsEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsEmployeePaymentTerm: "applied_payments,line_items,employee,payment_term", - AppliedPaymentsLineItemsPaymentTerm: "applied_payments,line_items,payment_term", - AppliedPaymentsLineItemsPurchaseOrders: "applied_payments,line_items,purchase_orders", - AppliedPaymentsLineItemsPurchaseOrdersAccountingPeriod: - "applied_payments,line_items,purchase_orders,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotes: - "applied_payments,line_items,purchase_orders,applied_credit_notes", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAccountingPeriod: - "applied_payments,line_items,purchase_orders,applied_credit_notes,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCredits: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompany: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContact: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompany: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployee: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesCompany: - "applied_payments,line_items,purchase_orders,applied_credit_notes,company", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriod: - "applied_payments,line_items,purchase_orders,applied_credit_notes,company,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesCompanyEmployee: - "applied_payments,line_items,purchase_orders,applied_credit_notes,company,employee", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,purchase_orders,applied_credit_notes,company,employee,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesCompanyEmployeePaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,company,employee,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesCompanyPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,company,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContact: - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactAccountingPeriod: - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactCompany: - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriod: - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactCompanyEmployee: - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactCompanyPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactEmployee: - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,employee", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriod: - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactEmployeePaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,employee,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesEmployee: - "applied_payments,line_items,purchase_orders,applied_credit_notes,employee", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriod: - "applied_payments,line_items,purchase_orders,applied_credit_notes,employee,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesEmployeePaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,employee,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_credit_notes,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCredits: - "applied_payments,line_items,purchase_orders,applied_vendor_credits", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsAccountingPeriod: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsCompany: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,company", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriod: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,company,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsCompanyEmployee: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,company,employee", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsCompanyEmployeePaymentTerm: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,company,employee,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsCompanyPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,company,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContact: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactAccountingPeriod: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactCompany: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriod: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployee: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactEmployee: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,employee", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriod: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactEmployeePaymentTerm: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsEmployee: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,employee", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriod: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,employee,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsEmployeePaymentTerm: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,employee,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsPaymentTerm: - "applied_payments,line_items,purchase_orders,applied_vendor_credits,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersCompany: "applied_payments,line_items,purchase_orders,company", - AppliedPaymentsLineItemsPurchaseOrdersCompanyAccountingPeriod: - "applied_payments,line_items,purchase_orders,company,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,company,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersCompanyEmployee: - "applied_payments,line_items,purchase_orders,company,employee", - AppliedPaymentsLineItemsPurchaseOrdersCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,purchase_orders,company,employee,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersCompanyEmployeePaymentTerm: - "applied_payments,line_items,purchase_orders,company,employee,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersCompanyPaymentTerm: - "applied_payments,line_items,purchase_orders,company,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersContact: "applied_payments,line_items,purchase_orders,contact", - AppliedPaymentsLineItemsPurchaseOrdersContactAccountingPeriod: - "applied_payments,line_items,purchase_orders,contact,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersContactAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,contact,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersContactCompany: "applied_payments,line_items,purchase_orders,contact,company", - AppliedPaymentsLineItemsPurchaseOrdersContactCompanyAccountingPeriod: - "applied_payments,line_items,purchase_orders,contact,company,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,contact,company,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersContactCompanyEmployee: - "applied_payments,line_items,purchase_orders,contact,company,employee", - AppliedPaymentsLineItemsPurchaseOrdersContactCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,purchase_orders,contact,company,employee,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersContactCompanyEmployeePaymentTerm: - "applied_payments,line_items,purchase_orders,contact,company,employee,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersContactCompanyPaymentTerm: - "applied_payments,line_items,purchase_orders,contact,company,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersContactEmployee: - "applied_payments,line_items,purchase_orders,contact,employee", - AppliedPaymentsLineItemsPurchaseOrdersContactEmployeeAccountingPeriod: - "applied_payments,line_items,purchase_orders,contact,employee,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,contact,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersContactEmployeePaymentTerm: - "applied_payments,line_items,purchase_orders,contact,employee,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersContactPaymentTerm: - "applied_payments,line_items,purchase_orders,contact,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersEmployee: "applied_payments,line_items,purchase_orders,employee", - AppliedPaymentsLineItemsPurchaseOrdersEmployeeAccountingPeriod: - "applied_payments,line_items,purchase_orders,employee,accounting_period", - AppliedPaymentsLineItemsPurchaseOrdersEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,purchase_orders,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersEmployeePaymentTerm: - "applied_payments,line_items,purchase_orders,employee,payment_term", - AppliedPaymentsLineItemsPurchaseOrdersPaymentTerm: "applied_payments,line_items,purchase_orders,payment_term", - AppliedPaymentsLineItemsTrackingCategories: "applied_payments,line_items,tracking_categories", - AppliedPaymentsLineItemsTrackingCategoriesAccountingPeriod: - "applied_payments,line_items,tracking_categories,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotes: - "applied_payments,line_items,tracking_categories,applied_credit_notes", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAccountingPeriod: - "applied_payments,line_items,tracking_categories,applied_credit_notes,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCredits: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompany: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContact: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompany: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployee: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesCompany: - "applied_payments,line_items,tracking_categories,applied_credit_notes,company", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesCompanyAccountingPeriod: - "applied_payments,line_items,tracking_categories,applied_credit_notes,company,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,company,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesCompanyEmployee: - "applied_payments,line_items,tracking_categories,applied_credit_notes,company,employee", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,applied_credit_notes,company,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesCompanyEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,company,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesCompanyPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,company,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContact: - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactAccountingPeriod: - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactCompany: - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactCompanyAccountingPeriod: - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactCompanyEmployee: - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactCompanyPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactEmployee: - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,employee", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesEmployee: - "applied_payments,line_items,tracking_categories,applied_credit_notes,employee", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,applied_credit_notes,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_credit_notes,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCredits: - "applied_payments,line_items,tracking_categories,applied_vendor_credits", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsAccountingPeriod: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsCompany: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,company", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsCompanyAccountingPeriod: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,company,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,company,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsCompanyEmployee: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,company,employee", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,company,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,company,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsCompanyPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,company,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContact: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactAccountingPeriod: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactCompany: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyAccountingPeriod: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployee: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactEmployee: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,employee", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsEmployee: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,employee", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsPaymentTerm: - "applied_payments,line_items,tracking_categories,applied_vendor_credits,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesCompany: "applied_payments,line_items,tracking_categories,company", - AppliedPaymentsLineItemsTrackingCategoriesCompanyAccountingPeriod: - "applied_payments,line_items,tracking_categories,company,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,company,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesCompanyEmployee: - "applied_payments,line_items,tracking_categories,company,employee", - AppliedPaymentsLineItemsTrackingCategoriesCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,company,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesCompanyEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,company,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesCompanyPaymentTerm: - "applied_payments,line_items,tracking_categories,company,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesContact: "applied_payments,line_items,tracking_categories,contact", - AppliedPaymentsLineItemsTrackingCategoriesContactAccountingPeriod: - "applied_payments,line_items,tracking_categories,contact,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesContactAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,contact,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesContactCompany: - "applied_payments,line_items,tracking_categories,contact,company", - AppliedPaymentsLineItemsTrackingCategoriesContactCompanyAccountingPeriod: - "applied_payments,line_items,tracking_categories,contact,company,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,contact,company,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesContactCompanyEmployee: - "applied_payments,line_items,tracking_categories,contact,company,employee", - AppliedPaymentsLineItemsTrackingCategoriesContactCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,contact,company,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesContactCompanyEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,contact,company,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesContactCompanyPaymentTerm: - "applied_payments,line_items,tracking_categories,contact,company,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesContactEmployee: - "applied_payments,line_items,tracking_categories,contact,employee", - AppliedPaymentsLineItemsTrackingCategoriesContactEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,contact,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,contact,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesContactEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,contact,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesContactPaymentTerm: - "applied_payments,line_items,tracking_categories,contact,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesEmployee: "applied_payments,line_items,tracking_categories,employee", - AppliedPaymentsLineItemsTrackingCategoriesEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPaymentTerm: - "applied_payments,line_items,tracking_categories,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrders: - "applied_payments,line_items,tracking_categories,purchase_orders", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotes: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCredits: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompany: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContact: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompany: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployee: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompany: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployee: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContact: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompany: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployee: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployee: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployee: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCredits: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompany: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployee: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContact: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompany: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployee: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployee: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployee: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersCompany: - "applied_payments,line_items,tracking_categories,purchase_orders,company", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersCompanyAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,company,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,company,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersCompanyEmployee: - "applied_payments,line_items,tracking_categories,purchase_orders,company,employee", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,company,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersCompanyEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,company,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersCompanyPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,company,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContact: - "applied_payments,line_items,tracking_categories,purchase_orders,contact", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,contact,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,contact,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactCompany: - "applied_payments,line_items,tracking_categories,purchase_orders,contact,company", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactCompanyAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,contact,company,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,contact,company,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactCompanyEmployee: - "applied_payments,line_items,tracking_categories,purchase_orders,contact,company,employee", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactCompanyEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,contact,company,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactCompanyEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,contact,company,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactCompanyPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,contact,company,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactEmployee: - "applied_payments,line_items,tracking_categories,purchase_orders,contact,employee", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,contact,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,contact,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,contact,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,contact,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersEmployee: - "applied_payments,line_items,tracking_categories,purchase_orders,employee", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersEmployeeAccountingPeriod: - "applied_payments,line_items,tracking_categories,purchase_orders,employee,accounting_period", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersEmployeeAccountingPeriodPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,employee,accounting_period,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersEmployeePaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,employee,payment_term", - AppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersPaymentTerm: - "applied_payments,line_items,tracking_categories,purchase_orders,payment_term", - AppliedPaymentsPaymentTerm: "applied_payments,payment_term", - AppliedPaymentsPurchaseOrders: "applied_payments,purchase_orders", - AppliedPaymentsPurchaseOrdersAccountingPeriod: "applied_payments,purchase_orders,accounting_period", - AppliedPaymentsPurchaseOrdersAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotes: "applied_payments,purchase_orders,applied_credit_notes", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAccountingPeriod: - "applied_payments,purchase_orders,applied_credit_notes,accounting_period", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCredits: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompany: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContact: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompany: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployee: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesCompany: - "applied_payments,purchase_orders,applied_credit_notes,company", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriod: - "applied_payments,purchase_orders,applied_credit_notes,company,accounting_period", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesCompanyEmployee: - "applied_payments,purchase_orders,applied_credit_notes,company,employee", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "applied_payments,purchase_orders,applied_credit_notes,company,employee,accounting_period", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesCompanyEmployeePaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,company,employee,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesCompanyPaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,company,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesContact: - "applied_payments,purchase_orders,applied_credit_notes,contact", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesContactAccountingPeriod: - "applied_payments,purchase_orders,applied_credit_notes,contact,accounting_period", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesContactCompany: - "applied_payments,purchase_orders,applied_credit_notes,contact,company", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriod: - "applied_payments,purchase_orders,applied_credit_notes,contact,company,accounting_period", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesContactCompanyEmployee: - "applied_payments,purchase_orders,applied_credit_notes,contact,company,employee", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "applied_payments,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesContactCompanyPaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,contact,company,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesContactEmployee: - "applied_payments,purchase_orders,applied_credit_notes,contact,employee", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriod: - "applied_payments,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesContactEmployeePaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,contact,employee,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesContactPaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,contact,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesEmployee: - "applied_payments,purchase_orders,applied_credit_notes,employee", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriod: - "applied_payments,purchase_orders,applied_credit_notes,employee,accounting_period", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesEmployeePaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,employee,payment_term", - AppliedPaymentsPurchaseOrdersAppliedCreditNotesPaymentTerm: - "applied_payments,purchase_orders,applied_credit_notes,payment_term", - AppliedPaymentsPurchaseOrdersAppliedVendorCredits: "applied_payments,purchase_orders,applied_vendor_credits", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsAccountingPeriod: - "applied_payments,purchase_orders,applied_vendor_credits,accounting_period", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsCompany: - "applied_payments,purchase_orders,applied_vendor_credits,company", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriod: - "applied_payments,purchase_orders,applied_vendor_credits,company,accounting_period", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsCompanyEmployee: - "applied_payments,purchase_orders,applied_vendor_credits,company,employee", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "applied_payments,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsCompanyEmployeePaymentTerm: - "applied_payments,purchase_orders,applied_vendor_credits,company,employee,payment_term", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsCompanyPaymentTerm: - "applied_payments,purchase_orders,applied_vendor_credits,company,payment_term", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsContact: - "applied_payments,purchase_orders,applied_vendor_credits,contact", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactAccountingPeriod: - "applied_payments,purchase_orders,applied_vendor_credits,contact,accounting_period", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactCompany: - "applied_payments,purchase_orders,applied_vendor_credits,contact,company", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriod: - "applied_payments,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployee: - "applied_payments,purchase_orders,applied_vendor_credits,contact,company,employee", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "applied_payments,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "applied_payments,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactCompanyPaymentTerm: - "applied_payments,purchase_orders,applied_vendor_credits,contact,company,payment_term", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactEmployee: - "applied_payments,purchase_orders,applied_vendor_credits,contact,employee", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriod: - "applied_payments,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactEmployeePaymentTerm: - "applied_payments,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactPaymentTerm: - "applied_payments,purchase_orders,applied_vendor_credits,contact,payment_term", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsEmployee: - "applied_payments,purchase_orders,applied_vendor_credits,employee", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriod: - "applied_payments,purchase_orders,applied_vendor_credits,employee,accounting_period", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsEmployeePaymentTerm: - "applied_payments,purchase_orders,applied_vendor_credits,employee,payment_term", - AppliedPaymentsPurchaseOrdersAppliedVendorCreditsPaymentTerm: - "applied_payments,purchase_orders,applied_vendor_credits,payment_term", - AppliedPaymentsPurchaseOrdersCompany: "applied_payments,purchase_orders,company", - AppliedPaymentsPurchaseOrdersCompanyAccountingPeriod: "applied_payments,purchase_orders,company,accounting_period", - AppliedPaymentsPurchaseOrdersCompanyAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,company,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersCompanyEmployee: "applied_payments,purchase_orders,company,employee", - AppliedPaymentsPurchaseOrdersCompanyEmployeeAccountingPeriod: - "applied_payments,purchase_orders,company,employee,accounting_period", - AppliedPaymentsPurchaseOrdersCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,company,employee,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersCompanyEmployeePaymentTerm: - "applied_payments,purchase_orders,company,employee,payment_term", - AppliedPaymentsPurchaseOrdersCompanyPaymentTerm: "applied_payments,purchase_orders,company,payment_term", - AppliedPaymentsPurchaseOrdersContact: "applied_payments,purchase_orders,contact", - AppliedPaymentsPurchaseOrdersContactAccountingPeriod: "applied_payments,purchase_orders,contact,accounting_period", - AppliedPaymentsPurchaseOrdersContactAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,contact,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersContactCompany: "applied_payments,purchase_orders,contact,company", - AppliedPaymentsPurchaseOrdersContactCompanyAccountingPeriod: - "applied_payments,purchase_orders,contact,company,accounting_period", - AppliedPaymentsPurchaseOrdersContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,contact,company,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersContactCompanyEmployee: "applied_payments,purchase_orders,contact,company,employee", - AppliedPaymentsPurchaseOrdersContactCompanyEmployeeAccountingPeriod: - "applied_payments,purchase_orders,contact,company,employee,accounting_period", - AppliedPaymentsPurchaseOrdersContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersContactCompanyEmployeePaymentTerm: - "applied_payments,purchase_orders,contact,company,employee,payment_term", - AppliedPaymentsPurchaseOrdersContactCompanyPaymentTerm: - "applied_payments,purchase_orders,contact,company,payment_term", - AppliedPaymentsPurchaseOrdersContactEmployee: "applied_payments,purchase_orders,contact,employee", - AppliedPaymentsPurchaseOrdersContactEmployeeAccountingPeriod: - "applied_payments,purchase_orders,contact,employee,accounting_period", - AppliedPaymentsPurchaseOrdersContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,contact,employee,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersContactEmployeePaymentTerm: - "applied_payments,purchase_orders,contact,employee,payment_term", - AppliedPaymentsPurchaseOrdersContactPaymentTerm: "applied_payments,purchase_orders,contact,payment_term", - AppliedPaymentsPurchaseOrdersEmployee: "applied_payments,purchase_orders,employee", - AppliedPaymentsPurchaseOrdersEmployeeAccountingPeriod: - "applied_payments,purchase_orders,employee,accounting_period", - AppliedPaymentsPurchaseOrdersEmployeeAccountingPeriodPaymentTerm: - "applied_payments,purchase_orders,employee,accounting_period,payment_term", - AppliedPaymentsPurchaseOrdersEmployeePaymentTerm: "applied_payments,purchase_orders,employee,payment_term", - AppliedPaymentsPurchaseOrdersPaymentTerm: "applied_payments,purchase_orders,payment_term", - AppliedPaymentsTrackingCategories: "applied_payments,tracking_categories", - AppliedPaymentsTrackingCategoriesAccountingPeriod: "applied_payments,tracking_categories,accounting_period", - AppliedPaymentsTrackingCategoriesAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotes: "applied_payments,tracking_categories,applied_credit_notes", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAccountingPeriod: - "applied_payments,tracking_categories,applied_credit_notes,accounting_period", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCredits: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompany: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContact: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompany: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployee: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesCompany: - "applied_payments,tracking_categories,applied_credit_notes,company", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesCompanyAccountingPeriod: - "applied_payments,tracking_categories,applied_credit_notes,company,accounting_period", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,company,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesCompanyEmployee: - "applied_payments,tracking_categories,applied_credit_notes,company,employee", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "applied_payments,tracking_categories,applied_credit_notes,company,employee,accounting_period", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,company,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesCompanyEmployeePaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,company,employee,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesCompanyPaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,company,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesContact: - "applied_payments,tracking_categories,applied_credit_notes,contact", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesContactAccountingPeriod: - "applied_payments,tracking_categories,applied_credit_notes,contact,accounting_period", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,contact,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesContactCompany: - "applied_payments,tracking_categories,applied_credit_notes,contact,company", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesContactCompanyAccountingPeriod: - "applied_payments,tracking_categories,applied_credit_notes,contact,company,accounting_period", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,contact,company,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesContactCompanyEmployee: - "applied_payments,tracking_categories,applied_credit_notes,contact,company,employee", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "applied_payments,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,contact,company,employee,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesContactCompanyPaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,contact,company,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesContactEmployee: - "applied_payments,tracking_categories,applied_credit_notes,contact,employee", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesContactEmployeeAccountingPeriod: - "applied_payments,tracking_categories,applied_credit_notes,contact,employee,accounting_period", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,contact,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesContactEmployeePaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,contact,employee,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesContactPaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,contact,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesEmployee: - "applied_payments,tracking_categories,applied_credit_notes,employee", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesEmployeeAccountingPeriod: - "applied_payments,tracking_categories,applied_credit_notes,employee,accounting_period", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesEmployeePaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,employee,payment_term", - AppliedPaymentsTrackingCategoriesAppliedCreditNotesPaymentTerm: - "applied_payments,tracking_categories,applied_credit_notes,payment_term", - AppliedPaymentsTrackingCategoriesAppliedVendorCredits: - "applied_payments,tracking_categories,applied_vendor_credits", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsAccountingPeriod: - "applied_payments,tracking_categories,applied_vendor_credits,accounting_period", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,applied_vendor_credits,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsCompany: - "applied_payments,tracking_categories,applied_vendor_credits,company", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsCompanyAccountingPeriod: - "applied_payments,tracking_categories,applied_vendor_credits,company,accounting_period", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,applied_vendor_credits,company,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsCompanyEmployee: - "applied_payments,tracking_categories,applied_vendor_credits,company,employee", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "applied_payments,tracking_categories,applied_vendor_credits,company,employee,accounting_period", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,applied_vendor_credits,company,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "applied_payments,tracking_categories,applied_vendor_credits,company,employee,payment_term", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsCompanyPaymentTerm: - "applied_payments,tracking_categories,applied_vendor_credits,company,payment_term", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsContact: - "applied_payments,tracking_categories,applied_vendor_credits,contact", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactAccountingPeriod: - "applied_payments,tracking_categories,applied_vendor_credits,contact,accounting_period", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,applied_vendor_credits,contact,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactCompany: - "applied_payments,tracking_categories,applied_vendor_credits,contact,company", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactCompanyAccountingPeriod: - "applied_payments,tracking_categories,applied_vendor_credits,contact,company,accounting_period", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,applied_vendor_credits,contact,company,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployee: - "applied_payments,tracking_categories,applied_vendor_credits,contact,company,employee", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "applied_payments,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "applied_payments,tracking_categories,applied_vendor_credits,contact,company,employee,payment_term", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactCompanyPaymentTerm: - "applied_payments,tracking_categories,applied_vendor_credits,contact,company,payment_term", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactEmployee: - "applied_payments,tracking_categories,applied_vendor_credits,contact,employee", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "applied_payments,tracking_categories,applied_vendor_credits,contact,employee,accounting_period", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,applied_vendor_credits,contact,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactEmployeePaymentTerm: - "applied_payments,tracking_categories,applied_vendor_credits,contact,employee,payment_term", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactPaymentTerm: - "applied_payments,tracking_categories,applied_vendor_credits,contact,payment_term", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsEmployee: - "applied_payments,tracking_categories,applied_vendor_credits,employee", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsEmployeeAccountingPeriod: - "applied_payments,tracking_categories,applied_vendor_credits,employee,accounting_period", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,applied_vendor_credits,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsEmployeePaymentTerm: - "applied_payments,tracking_categories,applied_vendor_credits,employee,payment_term", - AppliedPaymentsTrackingCategoriesAppliedVendorCreditsPaymentTerm: - "applied_payments,tracking_categories,applied_vendor_credits,payment_term", - AppliedPaymentsTrackingCategoriesCompany: "applied_payments,tracking_categories,company", - AppliedPaymentsTrackingCategoriesCompanyAccountingPeriod: - "applied_payments,tracking_categories,company,accounting_period", - AppliedPaymentsTrackingCategoriesCompanyAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,company,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesCompanyEmployee: "applied_payments,tracking_categories,company,employee", - AppliedPaymentsTrackingCategoriesCompanyEmployeeAccountingPeriod: - "applied_payments,tracking_categories,company,employee,accounting_period", - AppliedPaymentsTrackingCategoriesCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,company,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesCompanyEmployeePaymentTerm: - "applied_payments,tracking_categories,company,employee,payment_term", - AppliedPaymentsTrackingCategoriesCompanyPaymentTerm: "applied_payments,tracking_categories,company,payment_term", - AppliedPaymentsTrackingCategoriesContact: "applied_payments,tracking_categories,contact", - AppliedPaymentsTrackingCategoriesContactAccountingPeriod: - "applied_payments,tracking_categories,contact,accounting_period", - AppliedPaymentsTrackingCategoriesContactAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,contact,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesContactCompany: "applied_payments,tracking_categories,contact,company", - AppliedPaymentsTrackingCategoriesContactCompanyAccountingPeriod: - "applied_payments,tracking_categories,contact,company,accounting_period", - AppliedPaymentsTrackingCategoriesContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,contact,company,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesContactCompanyEmployee: - "applied_payments,tracking_categories,contact,company,employee", - AppliedPaymentsTrackingCategoriesContactCompanyEmployeeAccountingPeriod: - "applied_payments,tracking_categories,contact,company,employee,accounting_period", - AppliedPaymentsTrackingCategoriesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesContactCompanyEmployeePaymentTerm: - "applied_payments,tracking_categories,contact,company,employee,payment_term", - AppliedPaymentsTrackingCategoriesContactCompanyPaymentTerm: - "applied_payments,tracking_categories,contact,company,payment_term", - AppliedPaymentsTrackingCategoriesContactEmployee: "applied_payments,tracking_categories,contact,employee", - AppliedPaymentsTrackingCategoriesContactEmployeeAccountingPeriod: - "applied_payments,tracking_categories,contact,employee,accounting_period", - AppliedPaymentsTrackingCategoriesContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,contact,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesContactEmployeePaymentTerm: - "applied_payments,tracking_categories,contact,employee,payment_term", - AppliedPaymentsTrackingCategoriesContactPaymentTerm: "applied_payments,tracking_categories,contact,payment_term", - AppliedPaymentsTrackingCategoriesEmployee: "applied_payments,tracking_categories,employee", - AppliedPaymentsTrackingCategoriesEmployeeAccountingPeriod: - "applied_payments,tracking_categories,employee,accounting_period", - AppliedPaymentsTrackingCategoriesEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesEmployeePaymentTerm: "applied_payments,tracking_categories,employee,payment_term", - AppliedPaymentsTrackingCategoriesPaymentTerm: "applied_payments,tracking_categories,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrders: "applied_payments,tracking_categories,purchase_orders", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotes: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCredits: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompany: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContact: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompany: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployee: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompany: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployee: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployeePaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContact: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompany: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployee: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployee: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployeePaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployee: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,employee", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployeePaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,employee,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCredits: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompany: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployee: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployeePaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContact: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompany: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployee: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployee: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployeePaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployee: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,employee", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployeePaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersCompany: - "applied_payments,tracking_categories,purchase_orders,company", - AppliedPaymentsTrackingCategoriesPurchaseOrdersCompanyAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,company,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersCompanyAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,company,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersCompanyEmployee: - "applied_payments,tracking_categories,purchase_orders,company,employee", - AppliedPaymentsTrackingCategoriesPurchaseOrdersCompanyEmployeeAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,company,employee,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,company,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersCompanyEmployeePaymentTerm: - "applied_payments,tracking_categories,purchase_orders,company,employee,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersCompanyPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,company,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersContact: - "applied_payments,tracking_categories,purchase_orders,contact", - AppliedPaymentsTrackingCategoriesPurchaseOrdersContactAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,contact,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersContactAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,contact,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersContactCompany: - "applied_payments,tracking_categories,purchase_orders,contact,company", - AppliedPaymentsTrackingCategoriesPurchaseOrdersContactCompanyAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,contact,company,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersContactCompanyAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,contact,company,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersContactCompanyEmployee: - "applied_payments,tracking_categories,purchase_orders,contact,company,employee", - AppliedPaymentsTrackingCategoriesPurchaseOrdersContactCompanyEmployeeAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,contact,company,employee,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,contact,company,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersContactCompanyEmployeePaymentTerm: - "applied_payments,tracking_categories,purchase_orders,contact,company,employee,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersContactCompanyPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,contact,company,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersContactEmployee: - "applied_payments,tracking_categories,purchase_orders,contact,employee", - AppliedPaymentsTrackingCategoriesPurchaseOrdersContactEmployeeAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,contact,employee,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersContactEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,contact,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersContactEmployeePaymentTerm: - "applied_payments,tracking_categories,purchase_orders,contact,employee,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersContactPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,contact,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersEmployee: - "applied_payments,tracking_categories,purchase_orders,employee", - AppliedPaymentsTrackingCategoriesPurchaseOrdersEmployeeAccountingPeriod: - "applied_payments,tracking_categories,purchase_orders,employee,accounting_period", - AppliedPaymentsTrackingCategoriesPurchaseOrdersEmployeeAccountingPeriodPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,employee,accounting_period,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersEmployeePaymentTerm: - "applied_payments,tracking_categories,purchase_orders,employee,payment_term", - AppliedPaymentsTrackingCategoriesPurchaseOrdersPaymentTerm: - "applied_payments,tracking_categories,purchase_orders,payment_term", - AppliedVendorCredits: "applied_vendor_credits", - AppliedVendorCreditsAccountingPeriod: "applied_vendor_credits,accounting_period", - AppliedVendorCreditsAccountingPeriodPaymentTerm: "applied_vendor_credits,accounting_period,payment_term", - AppliedVendorCreditsCompany: "applied_vendor_credits,company", - AppliedVendorCreditsCompanyAccountingPeriod: "applied_vendor_credits,company,accounting_period", - AppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "applied_vendor_credits,company,accounting_period,payment_term", - AppliedVendorCreditsCompanyEmployee: "applied_vendor_credits,company,employee", - AppliedVendorCreditsCompanyEmployeeAccountingPeriod: "applied_vendor_credits,company,employee,accounting_period", - AppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_vendor_credits,company,employee,accounting_period,payment_term", - AppliedVendorCreditsCompanyEmployeePaymentTerm: "applied_vendor_credits,company,employee,payment_term", - AppliedVendorCreditsCompanyPaymentTerm: "applied_vendor_credits,company,payment_term", - AppliedVendorCreditsContact: "applied_vendor_credits,contact", - AppliedVendorCreditsContactAccountingPeriod: "applied_vendor_credits,contact,accounting_period", - AppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "applied_vendor_credits,contact,accounting_period,payment_term", - AppliedVendorCreditsContactCompany: "applied_vendor_credits,contact,company", - AppliedVendorCreditsContactCompanyAccountingPeriod: "applied_vendor_credits,contact,company,accounting_period", - AppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "applied_vendor_credits,contact,company,accounting_period,payment_term", - AppliedVendorCreditsContactCompanyEmployee: "applied_vendor_credits,contact,company,employee", - AppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "applied_vendor_credits,contact,company,employee,accounting_period", - AppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - AppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "applied_vendor_credits,contact,company,employee,payment_term", - AppliedVendorCreditsContactCompanyPaymentTerm: "applied_vendor_credits,contact,company,payment_term", - AppliedVendorCreditsContactEmployee: "applied_vendor_credits,contact,employee", - AppliedVendorCreditsContactEmployeeAccountingPeriod: "applied_vendor_credits,contact,employee,accounting_period", - AppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "applied_vendor_credits,contact,employee,accounting_period,payment_term", - AppliedVendorCreditsContactEmployeePaymentTerm: "applied_vendor_credits,contact,employee,payment_term", - AppliedVendorCreditsContactPaymentTerm: "applied_vendor_credits,contact,payment_term", - AppliedVendorCreditsEmployee: "applied_vendor_credits,employee", - AppliedVendorCreditsEmployeeAccountingPeriod: "applied_vendor_credits,employee,accounting_period", - AppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "applied_vendor_credits,employee,accounting_period,payment_term", - AppliedVendorCreditsEmployeePaymentTerm: "applied_vendor_credits,employee,payment_term", - AppliedVendorCreditsPaymentTerm: "applied_vendor_credits,payment_term", - Company: "company", - CompanyAccountingPeriod: "company,accounting_period", - CompanyAccountingPeriodPaymentTerm: "company,accounting_period,payment_term", - CompanyEmployee: "company,employee", - CompanyEmployeeAccountingPeriod: "company,employee,accounting_period", - CompanyEmployeeAccountingPeriodPaymentTerm: "company,employee,accounting_period,payment_term", - CompanyEmployeePaymentTerm: "company,employee,payment_term", - CompanyPaymentTerm: "company,payment_term", - Contact: "contact", - ContactAccountingPeriod: "contact,accounting_period", - ContactAccountingPeriodPaymentTerm: "contact,accounting_period,payment_term", - ContactCompany: "contact,company", - ContactCompanyAccountingPeriod: "contact,company,accounting_period", - ContactCompanyAccountingPeriodPaymentTerm: "contact,company,accounting_period,payment_term", - ContactCompanyEmployee: "contact,company,employee", - ContactCompanyEmployeeAccountingPeriod: "contact,company,employee,accounting_period", - ContactCompanyEmployeeAccountingPeriodPaymentTerm: "contact,company,employee,accounting_period,payment_term", - ContactCompanyEmployeePaymentTerm: "contact,company,employee,payment_term", - ContactCompanyPaymentTerm: "contact,company,payment_term", - ContactEmployee: "contact,employee", - ContactEmployeeAccountingPeriod: "contact,employee,accounting_period", - ContactEmployeeAccountingPeriodPaymentTerm: "contact,employee,accounting_period,payment_term", - ContactEmployeePaymentTerm: "contact,employee,payment_term", - ContactPaymentTerm: "contact,payment_term", - Employee: "employee", - EmployeeAccountingPeriod: "employee,accounting_period", - EmployeeAccountingPeriodPaymentTerm: "employee,accounting_period,payment_term", - EmployeePaymentTerm: "employee,payment_term", - LineItems: "line_items", - LineItemsAccountingPeriod: "line_items,accounting_period", - LineItemsAccountingPeriodPaymentTerm: "line_items,accounting_period,payment_term", - LineItemsAppliedCreditNotes: "line_items,applied_credit_notes", - LineItemsAppliedCreditNotesAccountingPeriod: "line_items,applied_credit_notes,accounting_period", - LineItemsAppliedCreditNotesAccountingPeriodPaymentTerm: - "line_items,applied_credit_notes,accounting_period,payment_term", - LineItemsAppliedCreditNotesAppliedVendorCredits: "line_items,applied_credit_notes,applied_vendor_credits", - LineItemsAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "line_items,applied_credit_notes,applied_vendor_credits,accounting_period", - LineItemsAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "line_items,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - LineItemsAppliedCreditNotesAppliedVendorCreditsCompany: - "line_items,applied_credit_notes,applied_vendor_credits,company", - LineItemsAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "line_items,applied_credit_notes,applied_vendor_credits,company,accounting_period", - LineItemsAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "line_items,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - LineItemsAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "line_items,applied_credit_notes,applied_vendor_credits,company,employee", - LineItemsAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "line_items,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - LineItemsAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - LineItemsAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "line_items,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - LineItemsAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "line_items,applied_credit_notes,applied_vendor_credits,company,payment_term", - LineItemsAppliedCreditNotesAppliedVendorCreditsContact: - "line_items,applied_credit_notes,applied_vendor_credits,contact", - LineItemsAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "line_items,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - LineItemsAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "line_items,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - LineItemsAppliedCreditNotesAppliedVendorCreditsContactCompany: - "line_items,applied_credit_notes,applied_vendor_credits,contact,company", - LineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "line_items,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - LineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "line_items,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - LineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee", - LineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - LineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - LineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - LineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "line_items,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - LineItemsAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "line_items,applied_credit_notes,applied_vendor_credits,contact,employee", - LineItemsAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "line_items,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - LineItemsAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "line_items,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - LineItemsAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "line_items,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - LineItemsAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "line_items,applied_credit_notes,applied_vendor_credits,contact,payment_term", - LineItemsAppliedCreditNotesAppliedVendorCreditsEmployee: - "line_items,applied_credit_notes,applied_vendor_credits,employee", - LineItemsAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "line_items,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - LineItemsAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "line_items,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - LineItemsAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "line_items,applied_credit_notes,applied_vendor_credits,employee,payment_term", - LineItemsAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "line_items,applied_credit_notes,applied_vendor_credits,payment_term", - LineItemsAppliedCreditNotesCompany: "line_items,applied_credit_notes,company", - LineItemsAppliedCreditNotesCompanyAccountingPeriod: "line_items,applied_credit_notes,company,accounting_period", - LineItemsAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "line_items,applied_credit_notes,company,accounting_period,payment_term", - LineItemsAppliedCreditNotesCompanyEmployee: "line_items,applied_credit_notes,company,employee", - LineItemsAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "line_items,applied_credit_notes,company,employee,accounting_period", - LineItemsAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,applied_credit_notes,company,employee,accounting_period,payment_term", - LineItemsAppliedCreditNotesCompanyEmployeePaymentTerm: - "line_items,applied_credit_notes,company,employee,payment_term", - LineItemsAppliedCreditNotesCompanyPaymentTerm: "line_items,applied_credit_notes,company,payment_term", - LineItemsAppliedCreditNotesContact: "line_items,applied_credit_notes,contact", - LineItemsAppliedCreditNotesContactAccountingPeriod: "line_items,applied_credit_notes,contact,accounting_period", - LineItemsAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "line_items,applied_credit_notes,contact,accounting_period,payment_term", - LineItemsAppliedCreditNotesContactCompany: "line_items,applied_credit_notes,contact,company", - LineItemsAppliedCreditNotesContactCompanyAccountingPeriod: - "line_items,applied_credit_notes,contact,company,accounting_period", - LineItemsAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "line_items,applied_credit_notes,contact,company,accounting_period,payment_term", - LineItemsAppliedCreditNotesContactCompanyEmployee: "line_items,applied_credit_notes,contact,company,employee", - LineItemsAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "line_items,applied_credit_notes,contact,company,employee,accounting_period", - LineItemsAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - LineItemsAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "line_items,applied_credit_notes,contact,company,employee,payment_term", - LineItemsAppliedCreditNotesContactCompanyPaymentTerm: - "line_items,applied_credit_notes,contact,company,payment_term", - LineItemsAppliedCreditNotesContactEmployee: "line_items,applied_credit_notes,contact,employee", - LineItemsAppliedCreditNotesContactEmployeeAccountingPeriod: - "line_items,applied_credit_notes,contact,employee,accounting_period", - LineItemsAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "line_items,applied_credit_notes,contact,employee,accounting_period,payment_term", - LineItemsAppliedCreditNotesContactEmployeePaymentTerm: - "line_items,applied_credit_notes,contact,employee,payment_term", - LineItemsAppliedCreditNotesContactPaymentTerm: "line_items,applied_credit_notes,contact,payment_term", - LineItemsAppliedCreditNotesEmployee: "line_items,applied_credit_notes,employee", - LineItemsAppliedCreditNotesEmployeeAccountingPeriod: "line_items,applied_credit_notes,employee,accounting_period", - LineItemsAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "line_items,applied_credit_notes,employee,accounting_period,payment_term", - LineItemsAppliedCreditNotesEmployeePaymentTerm: "line_items,applied_credit_notes,employee,payment_term", - LineItemsAppliedCreditNotesPaymentTerm: "line_items,applied_credit_notes,payment_term", - LineItemsAppliedVendorCredits: "line_items,applied_vendor_credits", - LineItemsAppliedVendorCreditsAccountingPeriod: "line_items,applied_vendor_credits,accounting_period", - LineItemsAppliedVendorCreditsAccountingPeriodPaymentTerm: - "line_items,applied_vendor_credits,accounting_period,payment_term", - LineItemsAppliedVendorCreditsCompany: "line_items,applied_vendor_credits,company", - LineItemsAppliedVendorCreditsCompanyAccountingPeriod: "line_items,applied_vendor_credits,company,accounting_period", - LineItemsAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "line_items,applied_vendor_credits,company,accounting_period,payment_term", - LineItemsAppliedVendorCreditsCompanyEmployee: "line_items,applied_vendor_credits,company,employee", - LineItemsAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "line_items,applied_vendor_credits,company,employee,accounting_period", - LineItemsAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,applied_vendor_credits,company,employee,accounting_period,payment_term", - LineItemsAppliedVendorCreditsCompanyEmployeePaymentTerm: - "line_items,applied_vendor_credits,company,employee,payment_term", - LineItemsAppliedVendorCreditsCompanyPaymentTerm: "line_items,applied_vendor_credits,company,payment_term", - LineItemsAppliedVendorCreditsContact: "line_items,applied_vendor_credits,contact", - LineItemsAppliedVendorCreditsContactAccountingPeriod: "line_items,applied_vendor_credits,contact,accounting_period", - LineItemsAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "line_items,applied_vendor_credits,contact,accounting_period,payment_term", - LineItemsAppliedVendorCreditsContactCompany: "line_items,applied_vendor_credits,contact,company", - LineItemsAppliedVendorCreditsContactCompanyAccountingPeriod: - "line_items,applied_vendor_credits,contact,company,accounting_period", - LineItemsAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "line_items,applied_vendor_credits,contact,company,accounting_period,payment_term", - LineItemsAppliedVendorCreditsContactCompanyEmployee: "line_items,applied_vendor_credits,contact,company,employee", - LineItemsAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "line_items,applied_vendor_credits,contact,company,employee,accounting_period", - LineItemsAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - LineItemsAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "line_items,applied_vendor_credits,contact,company,employee,payment_term", - LineItemsAppliedVendorCreditsContactCompanyPaymentTerm: - "line_items,applied_vendor_credits,contact,company,payment_term", - LineItemsAppliedVendorCreditsContactEmployee: "line_items,applied_vendor_credits,contact,employee", - LineItemsAppliedVendorCreditsContactEmployeeAccountingPeriod: - "line_items,applied_vendor_credits,contact,employee,accounting_period", - LineItemsAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "line_items,applied_vendor_credits,contact,employee,accounting_period,payment_term", - LineItemsAppliedVendorCreditsContactEmployeePaymentTerm: - "line_items,applied_vendor_credits,contact,employee,payment_term", - LineItemsAppliedVendorCreditsContactPaymentTerm: "line_items,applied_vendor_credits,contact,payment_term", - LineItemsAppliedVendorCreditsEmployee: "line_items,applied_vendor_credits,employee", - LineItemsAppliedVendorCreditsEmployeeAccountingPeriod: - "line_items,applied_vendor_credits,employee,accounting_period", - LineItemsAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "line_items,applied_vendor_credits,employee,accounting_period,payment_term", - LineItemsAppliedVendorCreditsEmployeePaymentTerm: "line_items,applied_vendor_credits,employee,payment_term", - LineItemsAppliedVendorCreditsPaymentTerm: "line_items,applied_vendor_credits,payment_term", - LineItemsCompany: "line_items,company", - LineItemsCompanyAccountingPeriod: "line_items,company,accounting_period", - LineItemsCompanyAccountingPeriodPaymentTerm: "line_items,company,accounting_period,payment_term", - LineItemsCompanyEmployee: "line_items,company,employee", - LineItemsCompanyEmployeeAccountingPeriod: "line_items,company,employee,accounting_period", - LineItemsCompanyEmployeeAccountingPeriodPaymentTerm: "line_items,company,employee,accounting_period,payment_term", - LineItemsCompanyEmployeePaymentTerm: "line_items,company,employee,payment_term", - LineItemsCompanyPaymentTerm: "line_items,company,payment_term", - LineItemsContact: "line_items,contact", - LineItemsContactAccountingPeriod: "line_items,contact,accounting_period", - LineItemsContactAccountingPeriodPaymentTerm: "line_items,contact,accounting_period,payment_term", - LineItemsContactCompany: "line_items,contact,company", - LineItemsContactCompanyAccountingPeriod: "line_items,contact,company,accounting_period", - LineItemsContactCompanyAccountingPeriodPaymentTerm: "line_items,contact,company,accounting_period,payment_term", - LineItemsContactCompanyEmployee: "line_items,contact,company,employee", - LineItemsContactCompanyEmployeeAccountingPeriod: "line_items,contact,company,employee,accounting_period", - LineItemsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,contact,company,employee,accounting_period,payment_term", - LineItemsContactCompanyEmployeePaymentTerm: "line_items,contact,company,employee,payment_term", - LineItemsContactCompanyPaymentTerm: "line_items,contact,company,payment_term", - LineItemsContactEmployee: "line_items,contact,employee", - LineItemsContactEmployeeAccountingPeriod: "line_items,contact,employee,accounting_period", - LineItemsContactEmployeeAccountingPeriodPaymentTerm: "line_items,contact,employee,accounting_period,payment_term", - LineItemsContactEmployeePaymentTerm: "line_items,contact,employee,payment_term", - LineItemsContactPaymentTerm: "line_items,contact,payment_term", - LineItemsEmployee: "line_items,employee", - LineItemsEmployeeAccountingPeriod: "line_items,employee,accounting_period", - LineItemsEmployeeAccountingPeriodPaymentTerm: "line_items,employee,accounting_period,payment_term", - LineItemsEmployeePaymentTerm: "line_items,employee,payment_term", - LineItemsPaymentTerm: "line_items,payment_term", - LineItemsPurchaseOrders: "line_items,purchase_orders", - LineItemsPurchaseOrdersAccountingPeriod: "line_items,purchase_orders,accounting_period", - LineItemsPurchaseOrdersAccountingPeriodPaymentTerm: "line_items,purchase_orders,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotes: "line_items,purchase_orders,applied_credit_notes", - LineItemsPurchaseOrdersAppliedCreditNotesAccountingPeriod: - "line_items,purchase_orders,applied_credit_notes,accounting_period", - LineItemsPurchaseOrdersAppliedCreditNotesAccountingPeriodPaymentTerm: - "line_items,purchase_orders,applied_credit_notes,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCredits: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompany: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContact: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompany: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployee: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesCompany: "line_items,purchase_orders,applied_credit_notes,company", - LineItemsPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriod: - "line_items,purchase_orders,applied_credit_notes,company,accounting_period", - LineItemsPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "line_items,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesCompanyEmployee: - "line_items,purchase_orders,applied_credit_notes,company,employee", - LineItemsPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "line_items,purchase_orders,applied_credit_notes,company,employee,accounting_period", - LineItemsPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesCompanyEmployeePaymentTerm: - "line_items,purchase_orders,applied_credit_notes,company,employee,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesCompanyPaymentTerm: - "line_items,purchase_orders,applied_credit_notes,company,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesContact: "line_items,purchase_orders,applied_credit_notes,contact", - LineItemsPurchaseOrdersAppliedCreditNotesContactAccountingPeriod: - "line_items,purchase_orders,applied_credit_notes,contact,accounting_period", - LineItemsPurchaseOrdersAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "line_items,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesContactCompany: - "line_items,purchase_orders,applied_credit_notes,contact,company", - LineItemsPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriod: - "line_items,purchase_orders,applied_credit_notes,contact,company,accounting_period", - LineItemsPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "line_items,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesContactCompanyEmployee: - "line_items,purchase_orders,applied_credit_notes,contact,company,employee", - LineItemsPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "line_items,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - LineItemsPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "line_items,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesContactCompanyPaymentTerm: - "line_items,purchase_orders,applied_credit_notes,contact,company,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesContactEmployee: - "line_items,purchase_orders,applied_credit_notes,contact,employee", - LineItemsPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriod: - "line_items,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - LineItemsPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "line_items,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesContactEmployeePaymentTerm: - "line_items,purchase_orders,applied_credit_notes,contact,employee,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesContactPaymentTerm: - "line_items,purchase_orders,applied_credit_notes,contact,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesEmployee: "line_items,purchase_orders,applied_credit_notes,employee", - LineItemsPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriod: - "line_items,purchase_orders,applied_credit_notes,employee,accounting_period", - LineItemsPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "line_items,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesEmployeePaymentTerm: - "line_items,purchase_orders,applied_credit_notes,employee,payment_term", - LineItemsPurchaseOrdersAppliedCreditNotesPaymentTerm: - "line_items,purchase_orders,applied_credit_notes,payment_term", - LineItemsPurchaseOrdersAppliedVendorCredits: "line_items,purchase_orders,applied_vendor_credits", - LineItemsPurchaseOrdersAppliedVendorCreditsAccountingPeriod: - "line_items,purchase_orders,applied_vendor_credits,accounting_period", - LineItemsPurchaseOrdersAppliedVendorCreditsAccountingPeriodPaymentTerm: - "line_items,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedVendorCreditsCompany: "line_items,purchase_orders,applied_vendor_credits,company", - LineItemsPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriod: - "line_items,purchase_orders,applied_vendor_credits,company,accounting_period", - LineItemsPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "line_items,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedVendorCreditsCompanyEmployee: - "line_items,purchase_orders,applied_vendor_credits,company,employee", - LineItemsPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "line_items,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - LineItemsPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedVendorCreditsCompanyEmployeePaymentTerm: - "line_items,purchase_orders,applied_vendor_credits,company,employee,payment_term", - LineItemsPurchaseOrdersAppliedVendorCreditsCompanyPaymentTerm: - "line_items,purchase_orders,applied_vendor_credits,company,payment_term", - LineItemsPurchaseOrdersAppliedVendorCreditsContact: "line_items,purchase_orders,applied_vendor_credits,contact", - LineItemsPurchaseOrdersAppliedVendorCreditsContactAccountingPeriod: - "line_items,purchase_orders,applied_vendor_credits,contact,accounting_period", - LineItemsPurchaseOrdersAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "line_items,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedVendorCreditsContactCompany: - "line_items,purchase_orders,applied_vendor_credits,contact,company", - LineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriod: - "line_items,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - LineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "line_items,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployee: - "line_items,purchase_orders,applied_vendor_credits,contact,company,employee", - LineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "line_items,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - LineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "line_items,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - LineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyPaymentTerm: - "line_items,purchase_orders,applied_vendor_credits,contact,company,payment_term", - LineItemsPurchaseOrdersAppliedVendorCreditsContactEmployee: - "line_items,purchase_orders,applied_vendor_credits,contact,employee", - LineItemsPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriod: - "line_items,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - LineItemsPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "line_items,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedVendorCreditsContactEmployeePaymentTerm: - "line_items,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - LineItemsPurchaseOrdersAppliedVendorCreditsContactPaymentTerm: - "line_items,purchase_orders,applied_vendor_credits,contact,payment_term", - LineItemsPurchaseOrdersAppliedVendorCreditsEmployee: "line_items,purchase_orders,applied_vendor_credits,employee", - LineItemsPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriod: - "line_items,purchase_orders,applied_vendor_credits,employee,accounting_period", - LineItemsPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "line_items,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - LineItemsPurchaseOrdersAppliedVendorCreditsEmployeePaymentTerm: - "line_items,purchase_orders,applied_vendor_credits,employee,payment_term", - LineItemsPurchaseOrdersAppliedVendorCreditsPaymentTerm: - "line_items,purchase_orders,applied_vendor_credits,payment_term", - LineItemsPurchaseOrdersCompany: "line_items,purchase_orders,company", - LineItemsPurchaseOrdersCompanyAccountingPeriod: "line_items,purchase_orders,company,accounting_period", - LineItemsPurchaseOrdersCompanyAccountingPeriodPaymentTerm: - "line_items,purchase_orders,company,accounting_period,payment_term", - LineItemsPurchaseOrdersCompanyEmployee: "line_items,purchase_orders,company,employee", - LineItemsPurchaseOrdersCompanyEmployeeAccountingPeriod: - "line_items,purchase_orders,company,employee,accounting_period", - LineItemsPurchaseOrdersCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,purchase_orders,company,employee,accounting_period,payment_term", - LineItemsPurchaseOrdersCompanyEmployeePaymentTerm: "line_items,purchase_orders,company,employee,payment_term", - LineItemsPurchaseOrdersCompanyPaymentTerm: "line_items,purchase_orders,company,payment_term", - LineItemsPurchaseOrdersContact: "line_items,purchase_orders,contact", - LineItemsPurchaseOrdersContactAccountingPeriod: "line_items,purchase_orders,contact,accounting_period", - LineItemsPurchaseOrdersContactAccountingPeriodPaymentTerm: - "line_items,purchase_orders,contact,accounting_period,payment_term", - LineItemsPurchaseOrdersContactCompany: "line_items,purchase_orders,contact,company", - LineItemsPurchaseOrdersContactCompanyAccountingPeriod: - "line_items,purchase_orders,contact,company,accounting_period", - LineItemsPurchaseOrdersContactCompanyAccountingPeriodPaymentTerm: - "line_items,purchase_orders,contact,company,accounting_period,payment_term", - LineItemsPurchaseOrdersContactCompanyEmployee: "line_items,purchase_orders,contact,company,employee", - LineItemsPurchaseOrdersContactCompanyEmployeeAccountingPeriod: - "line_items,purchase_orders,contact,company,employee,accounting_period", - LineItemsPurchaseOrdersContactCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,purchase_orders,contact,company,employee,accounting_period,payment_term", - LineItemsPurchaseOrdersContactCompanyEmployeePaymentTerm: - "line_items,purchase_orders,contact,company,employee,payment_term", - LineItemsPurchaseOrdersContactCompanyPaymentTerm: "line_items,purchase_orders,contact,company,payment_term", - LineItemsPurchaseOrdersContactEmployee: "line_items,purchase_orders,contact,employee", - LineItemsPurchaseOrdersContactEmployeeAccountingPeriod: - "line_items,purchase_orders,contact,employee,accounting_period", - LineItemsPurchaseOrdersContactEmployeeAccountingPeriodPaymentTerm: - "line_items,purchase_orders,contact,employee,accounting_period,payment_term", - LineItemsPurchaseOrdersContactEmployeePaymentTerm: "line_items,purchase_orders,contact,employee,payment_term", - LineItemsPurchaseOrdersContactPaymentTerm: "line_items,purchase_orders,contact,payment_term", - LineItemsPurchaseOrdersEmployee: "line_items,purchase_orders,employee", - LineItemsPurchaseOrdersEmployeeAccountingPeriod: "line_items,purchase_orders,employee,accounting_period", - LineItemsPurchaseOrdersEmployeeAccountingPeriodPaymentTerm: - "line_items,purchase_orders,employee,accounting_period,payment_term", - LineItemsPurchaseOrdersEmployeePaymentTerm: "line_items,purchase_orders,employee,payment_term", - LineItemsPurchaseOrdersPaymentTerm: "line_items,purchase_orders,payment_term", - LineItemsTrackingCategories: "line_items,tracking_categories", - LineItemsTrackingCategoriesAccountingPeriod: "line_items,tracking_categories,accounting_period", - LineItemsTrackingCategoriesAccountingPeriodPaymentTerm: - "line_items,tracking_categories,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotes: "line_items,tracking_categories,applied_credit_notes", - LineItemsTrackingCategoriesAppliedCreditNotesAccountingPeriod: - "line_items,tracking_categories,applied_credit_notes,accounting_period", - LineItemsTrackingCategoriesAppliedCreditNotesAccountingPeriodPaymentTerm: - "line_items,tracking_categories,applied_credit_notes,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCredits: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompany: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContact: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompany: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployee: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesCompany: "line_items,tracking_categories,applied_credit_notes,company", - LineItemsTrackingCategoriesAppliedCreditNotesCompanyAccountingPeriod: - "line_items,tracking_categories,applied_credit_notes,company,accounting_period", - LineItemsTrackingCategoriesAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "line_items,tracking_categories,applied_credit_notes,company,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesCompanyEmployee: - "line_items,tracking_categories,applied_credit_notes,company,employee", - LineItemsTrackingCategoriesAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "line_items,tracking_categories,applied_credit_notes,company,employee,accounting_period", - LineItemsTrackingCategoriesAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,applied_credit_notes,company,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesCompanyEmployeePaymentTerm: - "line_items,tracking_categories,applied_credit_notes,company,employee,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesCompanyPaymentTerm: - "line_items,tracking_categories,applied_credit_notes,company,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesContact: "line_items,tracking_categories,applied_credit_notes,contact", - LineItemsTrackingCategoriesAppliedCreditNotesContactAccountingPeriod: - "line_items,tracking_categories,applied_credit_notes,contact,accounting_period", - LineItemsTrackingCategoriesAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "line_items,tracking_categories,applied_credit_notes,contact,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesContactCompany: - "line_items,tracking_categories,applied_credit_notes,contact,company", - LineItemsTrackingCategoriesAppliedCreditNotesContactCompanyAccountingPeriod: - "line_items,tracking_categories,applied_credit_notes,contact,company,accounting_period", - LineItemsTrackingCategoriesAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "line_items,tracking_categories,applied_credit_notes,contact,company,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesContactCompanyEmployee: - "line_items,tracking_categories,applied_credit_notes,contact,company,employee", - LineItemsTrackingCategoriesAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "line_items,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period", - LineItemsTrackingCategoriesAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "line_items,tracking_categories,applied_credit_notes,contact,company,employee,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesContactCompanyPaymentTerm: - "line_items,tracking_categories,applied_credit_notes,contact,company,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesContactEmployee: - "line_items,tracking_categories,applied_credit_notes,contact,employee", - LineItemsTrackingCategoriesAppliedCreditNotesContactEmployeeAccountingPeriod: - "line_items,tracking_categories,applied_credit_notes,contact,employee,accounting_period", - LineItemsTrackingCategoriesAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,applied_credit_notes,contact,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesContactEmployeePaymentTerm: - "line_items,tracking_categories,applied_credit_notes,contact,employee,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesContactPaymentTerm: - "line_items,tracking_categories,applied_credit_notes,contact,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesEmployee: - "line_items,tracking_categories,applied_credit_notes,employee", - LineItemsTrackingCategoriesAppliedCreditNotesEmployeeAccountingPeriod: - "line_items,tracking_categories,applied_credit_notes,employee,accounting_period", - LineItemsTrackingCategoriesAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,applied_credit_notes,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesEmployeePaymentTerm: - "line_items,tracking_categories,applied_credit_notes,employee,payment_term", - LineItemsTrackingCategoriesAppliedCreditNotesPaymentTerm: - "line_items,tracking_categories,applied_credit_notes,payment_term", - LineItemsTrackingCategoriesAppliedVendorCredits: "line_items,tracking_categories,applied_vendor_credits", - LineItemsTrackingCategoriesAppliedVendorCreditsAccountingPeriod: - "line_items,tracking_categories,applied_vendor_credits,accounting_period", - LineItemsTrackingCategoriesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "line_items,tracking_categories,applied_vendor_credits,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedVendorCreditsCompany: - "line_items,tracking_categories,applied_vendor_credits,company", - LineItemsTrackingCategoriesAppliedVendorCreditsCompanyAccountingPeriod: - "line_items,tracking_categories,applied_vendor_credits,company,accounting_period", - LineItemsTrackingCategoriesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "line_items,tracking_categories,applied_vendor_credits,company,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedVendorCreditsCompanyEmployee: - "line_items,tracking_categories,applied_vendor_credits,company,employee", - LineItemsTrackingCategoriesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "line_items,tracking_categories,applied_vendor_credits,company,employee,accounting_period", - LineItemsTrackingCategoriesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,applied_vendor_credits,company,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "line_items,tracking_categories,applied_vendor_credits,company,employee,payment_term", - LineItemsTrackingCategoriesAppliedVendorCreditsCompanyPaymentTerm: - "line_items,tracking_categories,applied_vendor_credits,company,payment_term", - LineItemsTrackingCategoriesAppliedVendorCreditsContact: - "line_items,tracking_categories,applied_vendor_credits,contact", - LineItemsTrackingCategoriesAppliedVendorCreditsContactAccountingPeriod: - "line_items,tracking_categories,applied_vendor_credits,contact,accounting_period", - LineItemsTrackingCategoriesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "line_items,tracking_categories,applied_vendor_credits,contact,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedVendorCreditsContactCompany: - "line_items,tracking_categories,applied_vendor_credits,contact,company", - LineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyAccountingPeriod: - "line_items,tracking_categories,applied_vendor_credits,contact,company,accounting_period", - LineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "line_items,tracking_categories,applied_vendor_credits,contact,company,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployee: - "line_items,tracking_categories,applied_vendor_credits,contact,company,employee", - LineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "line_items,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period", - LineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "line_items,tracking_categories,applied_vendor_credits,contact,company,employee,payment_term", - LineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyPaymentTerm: - "line_items,tracking_categories,applied_vendor_credits,contact,company,payment_term", - LineItemsTrackingCategoriesAppliedVendorCreditsContactEmployee: - "line_items,tracking_categories,applied_vendor_credits,contact,employee", - LineItemsTrackingCategoriesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "line_items,tracking_categories,applied_vendor_credits,contact,employee,accounting_period", - LineItemsTrackingCategoriesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,applied_vendor_credits,contact,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedVendorCreditsContactEmployeePaymentTerm: - "line_items,tracking_categories,applied_vendor_credits,contact,employee,payment_term", - LineItemsTrackingCategoriesAppliedVendorCreditsContactPaymentTerm: - "line_items,tracking_categories,applied_vendor_credits,contact,payment_term", - LineItemsTrackingCategoriesAppliedVendorCreditsEmployee: - "line_items,tracking_categories,applied_vendor_credits,employee", - LineItemsTrackingCategoriesAppliedVendorCreditsEmployeeAccountingPeriod: - "line_items,tracking_categories,applied_vendor_credits,employee,accounting_period", - LineItemsTrackingCategoriesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,applied_vendor_credits,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesAppliedVendorCreditsEmployeePaymentTerm: - "line_items,tracking_categories,applied_vendor_credits,employee,payment_term", - LineItemsTrackingCategoriesAppliedVendorCreditsPaymentTerm: - "line_items,tracking_categories,applied_vendor_credits,payment_term", - LineItemsTrackingCategoriesCompany: "line_items,tracking_categories,company", - LineItemsTrackingCategoriesCompanyAccountingPeriod: "line_items,tracking_categories,company,accounting_period", - LineItemsTrackingCategoriesCompanyAccountingPeriodPaymentTerm: - "line_items,tracking_categories,company,accounting_period,payment_term", - LineItemsTrackingCategoriesCompanyEmployee: "line_items,tracking_categories,company,employee", - LineItemsTrackingCategoriesCompanyEmployeeAccountingPeriod: - "line_items,tracking_categories,company,employee,accounting_period", - LineItemsTrackingCategoriesCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,company,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesCompanyEmployeePaymentTerm: - "line_items,tracking_categories,company,employee,payment_term", - LineItemsTrackingCategoriesCompanyPaymentTerm: "line_items,tracking_categories,company,payment_term", - LineItemsTrackingCategoriesContact: "line_items,tracking_categories,contact", - LineItemsTrackingCategoriesContactAccountingPeriod: "line_items,tracking_categories,contact,accounting_period", - LineItemsTrackingCategoriesContactAccountingPeriodPaymentTerm: - "line_items,tracking_categories,contact,accounting_period,payment_term", - LineItemsTrackingCategoriesContactCompany: "line_items,tracking_categories,contact,company", - LineItemsTrackingCategoriesContactCompanyAccountingPeriod: - "line_items,tracking_categories,contact,company,accounting_period", - LineItemsTrackingCategoriesContactCompanyAccountingPeriodPaymentTerm: - "line_items,tracking_categories,contact,company,accounting_period,payment_term", - LineItemsTrackingCategoriesContactCompanyEmployee: "line_items,tracking_categories,contact,company,employee", - LineItemsTrackingCategoriesContactCompanyEmployeeAccountingPeriod: - "line_items,tracking_categories,contact,company,employee,accounting_period", - LineItemsTrackingCategoriesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,contact,company,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesContactCompanyEmployeePaymentTerm: - "line_items,tracking_categories,contact,company,employee,payment_term", - LineItemsTrackingCategoriesContactCompanyPaymentTerm: "line_items,tracking_categories,contact,company,payment_term", - LineItemsTrackingCategoriesContactEmployee: "line_items,tracking_categories,contact,employee", - LineItemsTrackingCategoriesContactEmployeeAccountingPeriod: - "line_items,tracking_categories,contact,employee,accounting_period", - LineItemsTrackingCategoriesContactEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,contact,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesContactEmployeePaymentTerm: - "line_items,tracking_categories,contact,employee,payment_term", - LineItemsTrackingCategoriesContactPaymentTerm: "line_items,tracking_categories,contact,payment_term", - LineItemsTrackingCategoriesEmployee: "line_items,tracking_categories,employee", - LineItemsTrackingCategoriesEmployeeAccountingPeriod: "line_items,tracking_categories,employee,accounting_period", - LineItemsTrackingCategoriesEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesEmployeePaymentTerm: "line_items,tracking_categories,employee,payment_term", - LineItemsTrackingCategoriesPaymentTerm: "line_items,tracking_categories,payment_term", - LineItemsTrackingCategoriesPurchaseOrders: "line_items,tracking_categories,purchase_orders", - LineItemsTrackingCategoriesPurchaseOrdersAccountingPeriod: - "line_items,tracking_categories,purchase_orders,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotes: - "line_items,tracking_categories,purchase_orders,applied_credit_notes", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAccountingPeriod: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCredits: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompany: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContact: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompany: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployee: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompany: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,company", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriod: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployee: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployeePaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,company,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContact: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactAccountingPeriod: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompany: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriod: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployee: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployee: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriod: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployeePaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployee: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,employee", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriod: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployeePaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_credit_notes,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCredits: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsAccountingPeriod: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompany: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,company", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriod: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployee: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployeePaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContact: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactAccountingPeriod: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompany: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriod: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployee: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployee: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriod: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployeePaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployee: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriod: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployeePaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsPaymentTerm: - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersCompany: "line_items,tracking_categories,purchase_orders,company", - LineItemsTrackingCategoriesPurchaseOrdersCompanyAccountingPeriod: - "line_items,tracking_categories,purchase_orders,company,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersCompanyAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,company,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersCompanyEmployee: - "line_items,tracking_categories,purchase_orders,company,employee", - LineItemsTrackingCategoriesPurchaseOrdersCompanyEmployeeAccountingPeriod: - "line_items,tracking_categories,purchase_orders,company,employee,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,company,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersCompanyEmployeePaymentTerm: - "line_items,tracking_categories,purchase_orders,company,employee,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersCompanyPaymentTerm: - "line_items,tracking_categories,purchase_orders,company,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersContact: "line_items,tracking_categories,purchase_orders,contact", - LineItemsTrackingCategoriesPurchaseOrdersContactAccountingPeriod: - "line_items,tracking_categories,purchase_orders,contact,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersContactAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,contact,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersContactCompany: - "line_items,tracking_categories,purchase_orders,contact,company", - LineItemsTrackingCategoriesPurchaseOrdersContactCompanyAccountingPeriod: - "line_items,tracking_categories,purchase_orders,contact,company,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersContactCompanyAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,contact,company,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersContactCompanyEmployee: - "line_items,tracking_categories,purchase_orders,contact,company,employee", - LineItemsTrackingCategoriesPurchaseOrdersContactCompanyEmployeeAccountingPeriod: - "line_items,tracking_categories,purchase_orders,contact,company,employee,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersContactCompanyEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,contact,company,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersContactCompanyEmployeePaymentTerm: - "line_items,tracking_categories,purchase_orders,contact,company,employee,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersContactCompanyPaymentTerm: - "line_items,tracking_categories,purchase_orders,contact,company,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersContactEmployee: - "line_items,tracking_categories,purchase_orders,contact,employee", - LineItemsTrackingCategoriesPurchaseOrdersContactEmployeeAccountingPeriod: - "line_items,tracking_categories,purchase_orders,contact,employee,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersContactEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,contact,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersContactEmployeePaymentTerm: - "line_items,tracking_categories,purchase_orders,contact,employee,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersContactPaymentTerm: - "line_items,tracking_categories,purchase_orders,contact,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersEmployee: "line_items,tracking_categories,purchase_orders,employee", - LineItemsTrackingCategoriesPurchaseOrdersEmployeeAccountingPeriod: - "line_items,tracking_categories,purchase_orders,employee,accounting_period", - LineItemsTrackingCategoriesPurchaseOrdersEmployeeAccountingPeriodPaymentTerm: - "line_items,tracking_categories,purchase_orders,employee,accounting_period,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersEmployeePaymentTerm: - "line_items,tracking_categories,purchase_orders,employee,payment_term", - LineItemsTrackingCategoriesPurchaseOrdersPaymentTerm: "line_items,tracking_categories,purchase_orders,payment_term", - PaymentTerm: "payment_term", - Payments: "payments", - PaymentsAccountingPeriod: "payments,accounting_period", - PaymentsAccountingPeriodPaymentTerm: "payments,accounting_period,payment_term", - PaymentsAppliedCreditNotes: "payments,applied_credit_notes", - PaymentsAppliedCreditNotesAccountingPeriod: "payments,applied_credit_notes,accounting_period", - PaymentsAppliedCreditNotesAccountingPeriodPaymentTerm: - "payments,applied_credit_notes,accounting_period,payment_term", - PaymentsAppliedCreditNotesAppliedVendorCredits: "payments,applied_credit_notes,applied_vendor_credits", - PaymentsAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "payments,applied_credit_notes,applied_vendor_credits,accounting_period", - PaymentsAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - PaymentsAppliedCreditNotesAppliedVendorCreditsCompany: - "payments,applied_credit_notes,applied_vendor_credits,company", - PaymentsAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "payments,applied_credit_notes,applied_vendor_credits,company,accounting_period", - PaymentsAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "payments,applied_credit_notes,applied_vendor_credits,company,employee", - PaymentsAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - PaymentsAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - PaymentsAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "payments,applied_credit_notes,applied_vendor_credits,company,payment_term", - PaymentsAppliedCreditNotesAppliedVendorCreditsContact: - "payments,applied_credit_notes,applied_vendor_credits,contact", - PaymentsAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "payments,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - PaymentsAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsAppliedCreditNotesAppliedVendorCreditsContactCompany: - "payments,applied_credit_notes,applied_vendor_credits,contact,company", - PaymentsAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - PaymentsAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "payments,applied_credit_notes,applied_vendor_credits,contact,company,employee", - PaymentsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - PaymentsAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "payments,applied_credit_notes,applied_vendor_credits,contact,employee", - PaymentsAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - PaymentsAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - PaymentsAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "payments,applied_credit_notes,applied_vendor_credits,contact,payment_term", - PaymentsAppliedCreditNotesAppliedVendorCreditsEmployee: - "payments,applied_credit_notes,applied_vendor_credits,employee", - PaymentsAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - PaymentsAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "payments,applied_credit_notes,applied_vendor_credits,employee,payment_term", - PaymentsAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "payments,applied_credit_notes,applied_vendor_credits,payment_term", - PaymentsAppliedCreditNotesCompany: "payments,applied_credit_notes,company", - PaymentsAppliedCreditNotesCompanyAccountingPeriod: "payments,applied_credit_notes,company,accounting_period", - PaymentsAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "payments,applied_credit_notes,company,accounting_period,payment_term", - PaymentsAppliedCreditNotesCompanyEmployee: "payments,applied_credit_notes,company,employee", - PaymentsAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "payments,applied_credit_notes,company,employee,accounting_period", - PaymentsAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_credit_notes,company,employee,accounting_period,payment_term", - PaymentsAppliedCreditNotesCompanyEmployeePaymentTerm: "payments,applied_credit_notes,company,employee,payment_term", - PaymentsAppliedCreditNotesCompanyPaymentTerm: "payments,applied_credit_notes,company,payment_term", - PaymentsAppliedCreditNotesContact: "payments,applied_credit_notes,contact", - PaymentsAppliedCreditNotesContactAccountingPeriod: "payments,applied_credit_notes,contact,accounting_period", - PaymentsAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "payments,applied_credit_notes,contact,accounting_period,payment_term", - PaymentsAppliedCreditNotesContactCompany: "payments,applied_credit_notes,contact,company", - PaymentsAppliedCreditNotesContactCompanyAccountingPeriod: - "payments,applied_credit_notes,contact,company,accounting_period", - PaymentsAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_credit_notes,contact,company,accounting_period,payment_term", - PaymentsAppliedCreditNotesContactCompanyEmployee: "payments,applied_credit_notes,contact,company,employee", - PaymentsAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "payments,applied_credit_notes,contact,company,employee,accounting_period", - PaymentsAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "payments,applied_credit_notes,contact,company,employee,payment_term", - PaymentsAppliedCreditNotesContactCompanyPaymentTerm: "payments,applied_credit_notes,contact,company,payment_term", - PaymentsAppliedCreditNotesContactEmployee: "payments,applied_credit_notes,contact,employee", - PaymentsAppliedCreditNotesContactEmployeeAccountingPeriod: - "payments,applied_credit_notes,contact,employee,accounting_period", - PaymentsAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_credit_notes,contact,employee,accounting_period,payment_term", - PaymentsAppliedCreditNotesContactEmployeePaymentTerm: "payments,applied_credit_notes,contact,employee,payment_term", - PaymentsAppliedCreditNotesContactPaymentTerm: "payments,applied_credit_notes,contact,payment_term", - PaymentsAppliedCreditNotesEmployee: "payments,applied_credit_notes,employee", - PaymentsAppliedCreditNotesEmployeeAccountingPeriod: "payments,applied_credit_notes,employee,accounting_period", - PaymentsAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "payments,applied_credit_notes,employee,accounting_period,payment_term", - PaymentsAppliedCreditNotesEmployeePaymentTerm: "payments,applied_credit_notes,employee,payment_term", - PaymentsAppliedCreditNotesPaymentTerm: "payments,applied_credit_notes,payment_term", - PaymentsAppliedPayments: "payments,applied_payments", - PaymentsAppliedPaymentsAccountingPeriod: "payments,applied_payments,accounting_period", - PaymentsAppliedPaymentsAccountingPeriodPaymentTerm: "payments,applied_payments,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotes: "payments,applied_payments,applied_credit_notes", - PaymentsAppliedPaymentsAppliedCreditNotesAccountingPeriod: - "payments,applied_payments,applied_credit_notes,accounting_period", - PaymentsAppliedPaymentsAppliedCreditNotesAccountingPeriodPaymentTerm: - "payments,applied_payments,applied_credit_notes,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCredits: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,accounting_period", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsCompany: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,company", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,company,accounting_period", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,company,employee", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,company,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContact: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactCompany: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,company", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,employee", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,employee", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsEmployee: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,employee", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,employee,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesCompany: "payments,applied_payments,applied_credit_notes,company", - PaymentsAppliedPaymentsAppliedCreditNotesCompanyAccountingPeriod: - "payments,applied_payments,applied_credit_notes,company,accounting_period", - PaymentsAppliedPaymentsAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,applied_credit_notes,company,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesCompanyEmployee: - "payments,applied_payments,applied_credit_notes,company,employee", - PaymentsAppliedPaymentsAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "payments,applied_payments,applied_credit_notes,company,employee,accounting_period", - PaymentsAppliedPaymentsAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,applied_credit_notes,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesCompanyEmployeePaymentTerm: - "payments,applied_payments,applied_credit_notes,company,employee,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesCompanyPaymentTerm: - "payments,applied_payments,applied_credit_notes,company,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesContact: "payments,applied_payments,applied_credit_notes,contact", - PaymentsAppliedPaymentsAppliedCreditNotesContactAccountingPeriod: - "payments,applied_payments,applied_credit_notes,contact,accounting_period", - PaymentsAppliedPaymentsAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "payments,applied_payments,applied_credit_notes,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesContactCompany: - "payments,applied_payments,applied_credit_notes,contact,company", - PaymentsAppliedPaymentsAppliedCreditNotesContactCompanyAccountingPeriod: - "payments,applied_payments,applied_credit_notes,contact,company,accounting_period", - PaymentsAppliedPaymentsAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,applied_credit_notes,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesContactCompanyEmployee: - "payments,applied_payments,applied_credit_notes,contact,company,employee", - PaymentsAppliedPaymentsAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,applied_credit_notes,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "payments,applied_payments,applied_credit_notes,contact,company,employee,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesContactCompanyPaymentTerm: - "payments,applied_payments,applied_credit_notes,contact,company,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesContactEmployee: - "payments,applied_payments,applied_credit_notes,contact,employee", - PaymentsAppliedPaymentsAppliedCreditNotesContactEmployeeAccountingPeriod: - "payments,applied_payments,applied_credit_notes,contact,employee,accounting_period", - PaymentsAppliedPaymentsAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,applied_credit_notes,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesContactEmployeePaymentTerm: - "payments,applied_payments,applied_credit_notes,contact,employee,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesContactPaymentTerm: - "payments,applied_payments,applied_credit_notes,contact,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesEmployee: "payments,applied_payments,applied_credit_notes,employee", - PaymentsAppliedPaymentsAppliedCreditNotesEmployeeAccountingPeriod: - "payments,applied_payments,applied_credit_notes,employee,accounting_period", - PaymentsAppliedPaymentsAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,applied_credit_notes,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesEmployeePaymentTerm: - "payments,applied_payments,applied_credit_notes,employee,payment_term", - PaymentsAppliedPaymentsAppliedCreditNotesPaymentTerm: "payments,applied_payments,applied_credit_notes,payment_term", - PaymentsAppliedPaymentsAppliedVendorCredits: "payments,applied_payments,applied_vendor_credits", - PaymentsAppliedPaymentsAppliedVendorCreditsAccountingPeriod: - "payments,applied_payments,applied_vendor_credits,accounting_period", - PaymentsAppliedPaymentsAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,applied_payments,applied_vendor_credits,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedVendorCreditsCompany: "payments,applied_payments,applied_vendor_credits,company", - PaymentsAppliedPaymentsAppliedVendorCreditsCompanyAccountingPeriod: - "payments,applied_payments,applied_vendor_credits,company,accounting_period", - PaymentsAppliedPaymentsAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedVendorCreditsCompanyEmployee: - "payments,applied_payments,applied_vendor_credits,company,employee", - PaymentsAppliedPaymentsAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,applied_payments,applied_vendor_credits,company,employee,accounting_period", - PaymentsAppliedPaymentsAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,applied_payments,applied_vendor_credits,company,employee,payment_term", - PaymentsAppliedPaymentsAppliedVendorCreditsCompanyPaymentTerm: - "payments,applied_payments,applied_vendor_credits,company,payment_term", - PaymentsAppliedPaymentsAppliedVendorCreditsContact: "payments,applied_payments,applied_vendor_credits,contact", - PaymentsAppliedPaymentsAppliedVendorCreditsContactAccountingPeriod: - "payments,applied_payments,applied_vendor_credits,contact,accounting_period", - PaymentsAppliedPaymentsAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,applied_payments,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedVendorCreditsContactCompany: - "payments,applied_payments,applied_vendor_credits,contact,company", - PaymentsAppliedPaymentsAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,applied_payments,applied_vendor_credits,contact,company,accounting_period", - PaymentsAppliedPaymentsAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedVendorCreditsContactCompanyEmployee: - "payments,applied_payments,applied_vendor_credits,contact,company,employee", - PaymentsAppliedPaymentsAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,applied_payments,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsAppliedPaymentsAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,applied_payments,applied_vendor_credits,contact,company,payment_term", - PaymentsAppliedPaymentsAppliedVendorCreditsContactEmployee: - "payments,applied_payments,applied_vendor_credits,contact,employee", - PaymentsAppliedPaymentsAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,applied_payments,applied_vendor_credits,contact,employee,accounting_period", - PaymentsAppliedPaymentsAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,applied_payments,applied_vendor_credits,contact,employee,payment_term", - PaymentsAppliedPaymentsAppliedVendorCreditsContactPaymentTerm: - "payments,applied_payments,applied_vendor_credits,contact,payment_term", - PaymentsAppliedPaymentsAppliedVendorCreditsEmployee: "payments,applied_payments,applied_vendor_credits,employee", - PaymentsAppliedPaymentsAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,applied_payments,applied_vendor_credits,employee,accounting_period", - PaymentsAppliedPaymentsAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsAppliedVendorCreditsEmployeePaymentTerm: - "payments,applied_payments,applied_vendor_credits,employee,payment_term", - PaymentsAppliedPaymentsAppliedVendorCreditsPaymentTerm: - "payments,applied_payments,applied_vendor_credits,payment_term", - PaymentsAppliedPaymentsCompany: "payments,applied_payments,company", - PaymentsAppliedPaymentsCompanyAccountingPeriod: "payments,applied_payments,company,accounting_period", - PaymentsAppliedPaymentsCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,company,accounting_period,payment_term", - PaymentsAppliedPaymentsCompanyEmployee: "payments,applied_payments,company,employee", - PaymentsAppliedPaymentsCompanyEmployeeAccountingPeriod: - "payments,applied_payments,company,employee,accounting_period", - PaymentsAppliedPaymentsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsCompanyEmployeePaymentTerm: "payments,applied_payments,company,employee,payment_term", - PaymentsAppliedPaymentsCompanyPaymentTerm: "payments,applied_payments,company,payment_term", - PaymentsAppliedPaymentsContact: "payments,applied_payments,contact", - PaymentsAppliedPaymentsContactAccountingPeriod: "payments,applied_payments,contact,accounting_period", - PaymentsAppliedPaymentsContactAccountingPeriodPaymentTerm: - "payments,applied_payments,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsContactCompany: "payments,applied_payments,contact,company", - PaymentsAppliedPaymentsContactCompanyAccountingPeriod: - "payments,applied_payments,contact,company,accounting_period", - PaymentsAppliedPaymentsContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsContactCompanyEmployee: "payments,applied_payments,contact,company,employee", - PaymentsAppliedPaymentsContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsContactCompanyEmployeePaymentTerm: - "payments,applied_payments,contact,company,employee,payment_term", - PaymentsAppliedPaymentsContactCompanyPaymentTerm: "payments,applied_payments,contact,company,payment_term", - PaymentsAppliedPaymentsContactEmployee: "payments,applied_payments,contact,employee", - PaymentsAppliedPaymentsContactEmployeeAccountingPeriod: - "payments,applied_payments,contact,employee,accounting_period", - PaymentsAppliedPaymentsContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsContactEmployeePaymentTerm: "payments,applied_payments,contact,employee,payment_term", - PaymentsAppliedPaymentsContactPaymentTerm: "payments,applied_payments,contact,payment_term", - PaymentsAppliedPaymentsEmployee: "payments,applied_payments,employee", - PaymentsAppliedPaymentsEmployeeAccountingPeriod: "payments,applied_payments,employee,accounting_period", - PaymentsAppliedPaymentsEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsEmployeePaymentTerm: "payments,applied_payments,employee,payment_term", - PaymentsAppliedPaymentsLineItems: "payments,applied_payments,line_items", - PaymentsAppliedPaymentsLineItemsAccountingPeriod: "payments,applied_payments,line_items,accounting_period", - PaymentsAppliedPaymentsLineItemsAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotes: "payments,applied_payments,line_items,applied_credit_notes", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAccountingPeriod: - "payments,applied_payments,line_items,applied_credit_notes,accounting_period", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCredits: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,accounting_period", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsCompany: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,accounting_period", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContact: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactCompany: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsEmployee: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,employee", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,employee,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesCompany: - "payments,applied_payments,line_items,applied_credit_notes,company", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesCompanyAccountingPeriod: - "payments,applied_payments,line_items,applied_credit_notes,company,accounting_period", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesCompanyEmployee: - "payments,applied_payments,line_items,applied_credit_notes,company,employee", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,applied_credit_notes,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesCompanyPaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,company,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesContact: - "payments,applied_payments,line_items,applied_credit_notes,contact", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesContactAccountingPeriod: - "payments,applied_payments,line_items,applied_credit_notes,contact,accounting_period", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesContactCompany: - "payments,applied_payments,line_items,applied_credit_notes,contact,company", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesContactCompanyAccountingPeriod: - "payments,applied_payments,line_items,applied_credit_notes,contact,company,accounting_period", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesContactCompanyEmployee: - "payments,applied_payments,line_items,applied_credit_notes,contact,company,employee", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,applied_credit_notes,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,contact,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesContactCompanyPaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,contact,company,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesContactEmployee: - "payments,applied_payments,line_items,applied_credit_notes,contact,employee", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesContactEmployeeAccountingPeriod: - "payments,applied_payments,line_items,applied_credit_notes,contact,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesContactEmployeePaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,contact,employee,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesContactPaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,contact,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesEmployee: - "payments,applied_payments,line_items,applied_credit_notes,employee", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesEmployeeAccountingPeriod: - "payments,applied_payments,line_items,applied_credit_notes,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesEmployeePaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,employee,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedCreditNotesPaymentTerm: - "payments,applied_payments,line_items,applied_credit_notes,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedVendorCredits: "payments,applied_payments,line_items,applied_vendor_credits", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsAccountingPeriod: - "payments,applied_payments,line_items,applied_vendor_credits,accounting_period", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,applied_vendor_credits,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsCompany: - "payments,applied_payments,line_items,applied_vendor_credits,company", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsCompanyAccountingPeriod: - "payments,applied_payments,line_items,applied_vendor_credits,company,accounting_period", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsCompanyEmployee: - "payments,applied_payments,line_items,applied_vendor_credits,company,employee", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,applied_vendor_credits,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,applied_vendor_credits,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsCompanyPaymentTerm: - "payments,applied_payments,line_items,applied_vendor_credits,company,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsContact: - "payments,applied_payments,line_items,applied_vendor_credits,contact", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsContactAccountingPeriod: - "payments,applied_payments,line_items,applied_vendor_credits,contact,accounting_period", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsContactCompany: - "payments,applied_payments,line_items,applied_vendor_credits,contact,company", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,applied_payments,line_items,applied_vendor_credits,contact,company,accounting_period", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsContactCompanyEmployee: - "payments,applied_payments,line_items,applied_vendor_credits,contact,company,employee", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,applied_payments,line_items,applied_vendor_credits,contact,company,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsContactEmployee: - "payments,applied_payments,line_items,applied_vendor_credits,contact,employee", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,applied_payments,line_items,applied_vendor_credits,contact,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,applied_payments,line_items,applied_vendor_credits,contact,employee,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsContactPaymentTerm: - "payments,applied_payments,line_items,applied_vendor_credits,contact,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsEmployee: - "payments,applied_payments,line_items,applied_vendor_credits,employee", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,applied_payments,line_items,applied_vendor_credits,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsEmployeePaymentTerm: - "payments,applied_payments,line_items,applied_vendor_credits,employee,payment_term", - PaymentsAppliedPaymentsLineItemsAppliedVendorCreditsPaymentTerm: - "payments,applied_payments,line_items,applied_vendor_credits,payment_term", - PaymentsAppliedPaymentsLineItemsCompany: "payments,applied_payments,line_items,company", - PaymentsAppliedPaymentsLineItemsCompanyAccountingPeriod: - "payments,applied_payments,line_items,company,accounting_period", - PaymentsAppliedPaymentsLineItemsCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsCompanyEmployee: "payments,applied_payments,line_items,company,employee", - PaymentsAppliedPaymentsLineItemsCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsCompanyPaymentTerm: "payments,applied_payments,line_items,company,payment_term", - PaymentsAppliedPaymentsLineItemsContact: "payments,applied_payments,line_items,contact", - PaymentsAppliedPaymentsLineItemsContactAccountingPeriod: - "payments,applied_payments,line_items,contact,accounting_period", - PaymentsAppliedPaymentsLineItemsContactAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsContactCompany: "payments,applied_payments,line_items,contact,company", - PaymentsAppliedPaymentsLineItemsContactCompanyAccountingPeriod: - "payments,applied_payments,line_items,contact,company,accounting_period", - PaymentsAppliedPaymentsLineItemsContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsContactCompanyEmployee: - "payments,applied_payments,line_items,contact,company,employee", - PaymentsAppliedPaymentsLineItemsContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsContactCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,contact,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsContactCompanyPaymentTerm: - "payments,applied_payments,line_items,contact,company,payment_term", - PaymentsAppliedPaymentsLineItemsContactEmployee: "payments,applied_payments,line_items,contact,employee", - PaymentsAppliedPaymentsLineItemsContactEmployeeAccountingPeriod: - "payments,applied_payments,line_items,contact,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsContactEmployeePaymentTerm: - "payments,applied_payments,line_items,contact,employee,payment_term", - PaymentsAppliedPaymentsLineItemsContactPaymentTerm: "payments,applied_payments,line_items,contact,payment_term", - PaymentsAppliedPaymentsLineItemsEmployee: "payments,applied_payments,line_items,employee", - PaymentsAppliedPaymentsLineItemsEmployeeAccountingPeriod: - "payments,applied_payments,line_items,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsEmployeePaymentTerm: "payments,applied_payments,line_items,employee,payment_term", - PaymentsAppliedPaymentsLineItemsPaymentTerm: "payments,applied_payments,line_items,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrders: "payments,applied_payments,line_items,purchase_orders", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotes: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCredits: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompany: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContact: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompany: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployee: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesCompany: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,company", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,company,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesCompanyEmployee: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,company,employee", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesCompanyPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,company,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContact: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactCompany: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactCompanyEmployee: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactCompanyPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactEmployee: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,employee", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactEmployeePaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,employee,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesEmployee: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,employee", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesEmployeePaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,employee,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedCreditNotesPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCredits: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsCompany: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,company", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,company,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsCompanyEmployee: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,company,employee", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsCompanyPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,company,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContact: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactCompany: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployee: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactEmployee: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,employee", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsEmployee: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,employee", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsEmployeePaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,employee,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersAppliedVendorCreditsPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersCompany: - "payments,applied_payments,line_items,purchase_orders,company", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersCompanyAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,company,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersCompanyEmployee: - "payments,applied_payments,line_items,purchase_orders,company,employee", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,purchase_orders,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersCompanyPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,company,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersContact: - "payments,applied_payments,line_items,purchase_orders,contact", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersContactAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,contact,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersContactAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersContactCompany: - "payments,applied_payments,line_items,purchase_orders,contact,company", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersContactCompanyAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,contact,company,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersContactCompanyEmployee: - "payments,applied_payments,line_items,purchase_orders,contact,company,employee", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersContactCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,purchase_orders,contact,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersContactCompanyPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,contact,company,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersContactEmployee: - "payments,applied_payments,line_items,purchase_orders,contact,employee", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersContactEmployeeAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,contact,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersContactEmployeePaymentTerm: - "payments,applied_payments,line_items,purchase_orders,contact,employee,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersContactPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,contact,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersEmployee: - "payments,applied_payments,line_items,purchase_orders,employee", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersEmployeeAccountingPeriod: - "payments,applied_payments,line_items,purchase_orders,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersEmployeePaymentTerm: - "payments,applied_payments,line_items,purchase_orders,employee,payment_term", - PaymentsAppliedPaymentsLineItemsPurchaseOrdersPaymentTerm: - "payments,applied_payments,line_items,purchase_orders,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategories: "payments,applied_payments,line_items,tracking_categories", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotes: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCredits: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompany: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContact: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompany: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployee: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesCompany: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,company", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesCompanyAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,company,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesCompanyEmployee: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,company,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesCompanyPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,company,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContact: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactCompany: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactCompanyAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactCompanyEmployee: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactCompanyPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactEmployee: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesEmployee: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedCreditNotesPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCredits: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsCompany: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,company", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsCompanyAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,company,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsCompanyEmployee: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,company,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsCompanyPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,company,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContact: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactCompany: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployee: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactEmployee: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsEmployee: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesAppliedVendorCreditsPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesCompany: - "payments,applied_payments,line_items,tracking_categories,company", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesCompanyAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,company,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesCompanyEmployee: - "payments,applied_payments,line_items,tracking_categories,company,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesCompanyPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,company,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesContact: - "payments,applied_payments,line_items,tracking_categories,contact", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesContactAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,contact,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesContactAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesContactCompany: - "payments,applied_payments,line_items,tracking_categories,contact,company", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesContactCompanyAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,contact,company,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesContactCompanyEmployee: - "payments,applied_payments,line_items,tracking_categories,contact,company,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesContactCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,contact,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesContactCompanyPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,contact,company,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesContactEmployee: - "payments,applied_payments,line_items,tracking_categories,contact,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesContactEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,contact,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesContactEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,contact,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesContactPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,contact,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesEmployee: - "payments,applied_payments,line_items,tracking_categories,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrders: - "payments,applied_payments,line_items,tracking_categories,purchase_orders", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotes: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCredits: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompany: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContact: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompany: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployee: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompany: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployee: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContact: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompany: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployee: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployee: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployee: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCredits: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompany: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployee: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContact: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompany: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployee: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployee: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployee: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersCompany: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,company", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersCompanyAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,company,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersCompanyEmployee: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,company,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersCompanyPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,company,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContact: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactCompany: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,company", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactCompanyAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,company,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactCompanyEmployee: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,company,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactCompanyEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,company,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactCompanyPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,company,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactEmployee: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersContactPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersEmployee: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,employee", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersEmployeeAccountingPeriod: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,employee,accounting_period", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersEmployeePaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,employee,payment_term", - PaymentsAppliedPaymentsLineItemsTrackingCategoriesPurchaseOrdersPaymentTerm: - "payments,applied_payments,line_items,tracking_categories,purchase_orders,payment_term", - PaymentsAppliedPaymentsPaymentTerm: "payments,applied_payments,payment_term", - PaymentsAppliedPaymentsPurchaseOrders: "payments,applied_payments,purchase_orders", - PaymentsAppliedPaymentsPurchaseOrdersAccountingPeriod: - "payments,applied_payments,purchase_orders,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotes: - "payments,applied_payments,purchase_orders,applied_credit_notes", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAccountingPeriod: - "payments,applied_payments,purchase_orders,applied_credit_notes,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCredits: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompany: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContact: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompany: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployee: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesCompany: - "payments,applied_payments,purchase_orders,applied_credit_notes,company", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriod: - "payments,applied_payments,purchase_orders,applied_credit_notes,company,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesCompanyEmployee: - "payments,applied_payments,purchase_orders,applied_credit_notes,company,employee", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "payments,applied_payments,purchase_orders,applied_credit_notes,company,employee,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesCompanyEmployeePaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,company,employee,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesCompanyPaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,company,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesContact: - "payments,applied_payments,purchase_orders,applied_credit_notes,contact", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesContactAccountingPeriod: - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesContactCompany: - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,company", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriod: - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,company,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesContactCompanyEmployee: - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,company,employee", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesContactCompanyPaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,company,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesContactEmployee: - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,employee", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriod: - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesContactEmployeePaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,employee,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesContactPaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesEmployee: - "payments,applied_payments,purchase_orders,applied_credit_notes,employee", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriod: - "payments,applied_payments,purchase_orders,applied_credit_notes,employee,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesEmployeePaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,employee,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedCreditNotesPaymentTerm: - "payments,applied_payments,purchase_orders,applied_credit_notes,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCredits: - "payments,applied_payments,purchase_orders,applied_vendor_credits", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsAccountingPeriod: - "payments,applied_payments,purchase_orders,applied_vendor_credits,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsCompany: - "payments,applied_payments,purchase_orders,applied_vendor_credits,company", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriod: - "payments,applied_payments,purchase_orders,applied_vendor_credits,company,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsCompanyEmployee: - "payments,applied_payments,purchase_orders,applied_vendor_credits,company,employee", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,applied_payments,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,applied_payments,purchase_orders,applied_vendor_credits,company,employee,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsCompanyPaymentTerm: - "payments,applied_payments,purchase_orders,applied_vendor_credits,company,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsContact: - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactAccountingPeriod: - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactCompany: - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,company", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployee: - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,company,employee", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,company,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactEmployee: - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,employee", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsContactPaymentTerm: - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsEmployee: - "payments,applied_payments,purchase_orders,applied_vendor_credits,employee", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,applied_payments,purchase_orders,applied_vendor_credits,employee,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsEmployeePaymentTerm: - "payments,applied_payments,purchase_orders,applied_vendor_credits,employee,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersAppliedVendorCreditsPaymentTerm: - "payments,applied_payments,purchase_orders,applied_vendor_credits,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersCompany: "payments,applied_payments,purchase_orders,company", - PaymentsAppliedPaymentsPurchaseOrdersCompanyAccountingPeriod: - "payments,applied_payments,purchase_orders,company,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,company,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersCompanyEmployee: "payments,applied_payments,purchase_orders,company,employee", - PaymentsAppliedPaymentsPurchaseOrdersCompanyEmployeeAccountingPeriod: - "payments,applied_payments,purchase_orders,company,employee,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersCompanyEmployeePaymentTerm: - "payments,applied_payments,purchase_orders,company,employee,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersCompanyPaymentTerm: - "payments,applied_payments,purchase_orders,company,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersContact: "payments,applied_payments,purchase_orders,contact", - PaymentsAppliedPaymentsPurchaseOrdersContactAccountingPeriod: - "payments,applied_payments,purchase_orders,contact,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersContactAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersContactCompany: "payments,applied_payments,purchase_orders,contact,company", - PaymentsAppliedPaymentsPurchaseOrdersContactCompanyAccountingPeriod: - "payments,applied_payments,purchase_orders,contact,company,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersContactCompanyEmployee: - "payments,applied_payments,purchase_orders,contact,company,employee", - PaymentsAppliedPaymentsPurchaseOrdersContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,purchase_orders,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersContactCompanyEmployeePaymentTerm: - "payments,applied_payments,purchase_orders,contact,company,employee,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersContactCompanyPaymentTerm: - "payments,applied_payments,purchase_orders,contact,company,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersContactEmployee: "payments,applied_payments,purchase_orders,contact,employee", - PaymentsAppliedPaymentsPurchaseOrdersContactEmployeeAccountingPeriod: - "payments,applied_payments,purchase_orders,contact,employee,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersContactEmployeePaymentTerm: - "payments,applied_payments,purchase_orders,contact,employee,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersContactPaymentTerm: - "payments,applied_payments,purchase_orders,contact,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersEmployee: "payments,applied_payments,purchase_orders,employee", - PaymentsAppliedPaymentsPurchaseOrdersEmployeeAccountingPeriod: - "payments,applied_payments,purchase_orders,employee,accounting_period", - PaymentsAppliedPaymentsPurchaseOrdersEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,purchase_orders,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersEmployeePaymentTerm: - "payments,applied_payments,purchase_orders,employee,payment_term", - PaymentsAppliedPaymentsPurchaseOrdersPaymentTerm: "payments,applied_payments,purchase_orders,payment_term", - PaymentsAppliedPaymentsTrackingCategories: "payments,applied_payments,tracking_categories", - PaymentsAppliedPaymentsTrackingCategoriesAccountingPeriod: - "payments,applied_payments,tracking_categories,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotes: - "payments,applied_payments,tracking_categories,applied_credit_notes", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAccountingPeriod: - "payments,applied_payments,tracking_categories,applied_credit_notes,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCredits: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompany: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContact: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompany: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployee: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesCompany: - "payments,applied_payments,tracking_categories,applied_credit_notes,company", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesCompanyAccountingPeriod: - "payments,applied_payments,tracking_categories,applied_credit_notes,company,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,company,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesCompanyEmployee: - "payments,applied_payments,tracking_categories,applied_credit_notes,company,employee", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,applied_credit_notes,company,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesCompanyEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,company,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesCompanyPaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,company,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesContact: - "payments,applied_payments,tracking_categories,applied_credit_notes,contact", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesContactAccountingPeriod: - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesContactCompany: - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,company", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesContactCompanyAccountingPeriod: - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,company,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesContactCompanyEmployee: - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,company,employee", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,company,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesContactCompanyPaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,company,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesContactEmployee: - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,employee", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesContactEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesContactEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesContactPaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesEmployee: - "payments,applied_payments,tracking_categories,applied_credit_notes,employee", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,applied_credit_notes,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedCreditNotesPaymentTerm: - "payments,applied_payments,tracking_categories,applied_credit_notes,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCredits: - "payments,applied_payments,tracking_categories,applied_vendor_credits", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsAccountingPeriod: - "payments,applied_payments,tracking_categories,applied_vendor_credits,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,applied_vendor_credits,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsCompany: - "payments,applied_payments,tracking_categories,applied_vendor_credits,company", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsCompanyAccountingPeriod: - "payments,applied_payments,tracking_categories,applied_vendor_credits,company,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsCompanyEmployee: - "payments,applied_payments,tracking_categories,applied_vendor_credits,company,employee", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,applied_vendor_credits,company,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,applied_vendor_credits,company,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsCompanyPaymentTerm: - "payments,applied_payments,tracking_categories,applied_vendor_credits,company,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsContact: - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactAccountingPeriod: - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactCompany: - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,company", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,company,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployee: - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,company,employee", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,company,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactEmployee: - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,employee", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsContactPaymentTerm: - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsEmployee: - "payments,applied_payments,tracking_categories,applied_vendor_credits,employee", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,applied_vendor_credits,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,applied_vendor_credits,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesAppliedVendorCreditsPaymentTerm: - "payments,applied_payments,tracking_categories,applied_vendor_credits,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesCompany: "payments,applied_payments,tracking_categories,company", - PaymentsAppliedPaymentsTrackingCategoriesCompanyAccountingPeriod: - "payments,applied_payments,tracking_categories,company,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,company,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesCompanyEmployee: - "payments,applied_payments,tracking_categories,company,employee", - PaymentsAppliedPaymentsTrackingCategoriesCompanyEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,company,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesCompanyEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,company,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesCompanyPaymentTerm: - "payments,applied_payments,tracking_categories,company,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesContact: "payments,applied_payments,tracking_categories,contact", - PaymentsAppliedPaymentsTrackingCategoriesContactAccountingPeriod: - "payments,applied_payments,tracking_categories,contact,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesContactAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesContactCompany: - "payments,applied_payments,tracking_categories,contact,company", - PaymentsAppliedPaymentsTrackingCategoriesContactCompanyAccountingPeriod: - "payments,applied_payments,tracking_categories,contact,company,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesContactCompanyEmployee: - "payments,applied_payments,tracking_categories,contact,company,employee", - PaymentsAppliedPaymentsTrackingCategoriesContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesContactCompanyEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,contact,company,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesContactCompanyPaymentTerm: - "payments,applied_payments,tracking_categories,contact,company,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesContactEmployee: - "payments,applied_payments,tracking_categories,contact,employee", - PaymentsAppliedPaymentsTrackingCategoriesContactEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,contact,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesContactEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,contact,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesContactPaymentTerm: - "payments,applied_payments,tracking_categories,contact,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesEmployee: "payments,applied_payments,tracking_categories,employee", - PaymentsAppliedPaymentsTrackingCategoriesEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPaymentTerm: "payments,applied_payments,tracking_categories,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrders: - "payments,applied_payments,tracking_categories,purchase_orders", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotes: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCredits: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompany: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContact: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompany: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployee: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompany: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployee: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContact: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompany: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployee: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployee: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployee: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,employee", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCredits: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompany: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployee: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContact: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompany: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployee: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployee: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployee: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,employee", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersCompany: - "payments,applied_payments,tracking_categories,purchase_orders,company", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersCompanyAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,company,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,company,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersCompanyEmployee: - "payments,applied_payments,tracking_categories,purchase_orders,company,employee", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersCompanyEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,company,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersCompanyEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,company,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersCompanyPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,company,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersContact: - "payments,applied_payments,tracking_categories,purchase_orders,contact", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersContactAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,contact,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersContactAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,contact,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersContactCompany: - "payments,applied_payments,tracking_categories,purchase_orders,contact,company", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersContactCompanyAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,contact,company,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,contact,company,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersContactCompanyEmployee: - "payments,applied_payments,tracking_categories,purchase_orders,contact,company,employee", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersContactCompanyEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,contact,company,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersContactCompanyEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,contact,company,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersContactCompanyPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,contact,company,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersContactEmployee: - "payments,applied_payments,tracking_categories,purchase_orders,contact,employee", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersContactEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,contact,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,contact,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersContactEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,contact,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersContactPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,contact,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersEmployee: - "payments,applied_payments,tracking_categories,purchase_orders,employee", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersEmployeeAccountingPeriod: - "payments,applied_payments,tracking_categories,purchase_orders,employee,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersEmployeeAccountingPeriodPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,employee,accounting_period,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersEmployeePaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,employee,payment_term", - PaymentsAppliedPaymentsTrackingCategoriesPurchaseOrdersPaymentTerm: - "payments,applied_payments,tracking_categories,purchase_orders,payment_term", - PaymentsAppliedVendorCredits: "payments,applied_vendor_credits", - PaymentsAppliedVendorCreditsAccountingPeriod: "payments,applied_vendor_credits,accounting_period", - PaymentsAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,applied_vendor_credits,accounting_period,payment_term", - PaymentsAppliedVendorCreditsCompany: "payments,applied_vendor_credits,company", - PaymentsAppliedVendorCreditsCompanyAccountingPeriod: "payments,applied_vendor_credits,company,accounting_period", - PaymentsAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsAppliedVendorCreditsCompanyEmployee: "payments,applied_vendor_credits,company,employee", - PaymentsAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,applied_vendor_credits,company,employee,accounting_period", - PaymentsAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,applied_vendor_credits,company,employee,payment_term", - PaymentsAppliedVendorCreditsCompanyPaymentTerm: "payments,applied_vendor_credits,company,payment_term", - PaymentsAppliedVendorCreditsContact: "payments,applied_vendor_credits,contact", - PaymentsAppliedVendorCreditsContactAccountingPeriod: "payments,applied_vendor_credits,contact,accounting_period", - PaymentsAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsAppliedVendorCreditsContactCompany: "payments,applied_vendor_credits,contact,company", - PaymentsAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,applied_vendor_credits,contact,company,accounting_period", - PaymentsAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsAppliedVendorCreditsContactCompanyEmployee: "payments,applied_vendor_credits,contact,company,employee", - PaymentsAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,applied_vendor_credits,contact,company,payment_term", - PaymentsAppliedVendorCreditsContactEmployee: "payments,applied_vendor_credits,contact,employee", - PaymentsAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,applied_vendor_credits,contact,employee,accounting_period", - PaymentsAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,applied_vendor_credits,contact,employee,payment_term", - PaymentsAppliedVendorCreditsContactPaymentTerm: "payments,applied_vendor_credits,contact,payment_term", - PaymentsAppliedVendorCreditsEmployee: "payments,applied_vendor_credits,employee", - PaymentsAppliedVendorCreditsEmployeeAccountingPeriod: "payments,applied_vendor_credits,employee,accounting_period", - PaymentsAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsAppliedVendorCreditsEmployeePaymentTerm: "payments,applied_vendor_credits,employee,payment_term", - PaymentsAppliedVendorCreditsPaymentTerm: "payments,applied_vendor_credits,payment_term", - PaymentsCompany: "payments,company", - PaymentsCompanyAccountingPeriod: "payments,company,accounting_period", - PaymentsCompanyAccountingPeriodPaymentTerm: "payments,company,accounting_period,payment_term", - PaymentsCompanyEmployee: "payments,company,employee", - PaymentsCompanyEmployeeAccountingPeriod: "payments,company,employee,accounting_period", - PaymentsCompanyEmployeeAccountingPeriodPaymentTerm: "payments,company,employee,accounting_period,payment_term", - PaymentsCompanyEmployeePaymentTerm: "payments,company,employee,payment_term", - PaymentsCompanyPaymentTerm: "payments,company,payment_term", - PaymentsContact: "payments,contact", - PaymentsContactAccountingPeriod: "payments,contact,accounting_period", - PaymentsContactAccountingPeriodPaymentTerm: "payments,contact,accounting_period,payment_term", - PaymentsContactCompany: "payments,contact,company", - PaymentsContactCompanyAccountingPeriod: "payments,contact,company,accounting_period", - PaymentsContactCompanyAccountingPeriodPaymentTerm: "payments,contact,company,accounting_period,payment_term", - PaymentsContactCompanyEmployee: "payments,contact,company,employee", - PaymentsContactCompanyEmployeeAccountingPeriod: "payments,contact,company,employee,accounting_period", - PaymentsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,contact,company,employee,accounting_period,payment_term", - PaymentsContactCompanyEmployeePaymentTerm: "payments,contact,company,employee,payment_term", - PaymentsContactCompanyPaymentTerm: "payments,contact,company,payment_term", - PaymentsContactEmployee: "payments,contact,employee", - PaymentsContactEmployeeAccountingPeriod: "payments,contact,employee,accounting_period", - PaymentsContactEmployeeAccountingPeriodPaymentTerm: "payments,contact,employee,accounting_period,payment_term", - PaymentsContactEmployeePaymentTerm: "payments,contact,employee,payment_term", - PaymentsContactPaymentTerm: "payments,contact,payment_term", - PaymentsEmployee: "payments,employee", - PaymentsEmployeeAccountingPeriod: "payments,employee,accounting_period", - PaymentsEmployeeAccountingPeriodPaymentTerm: "payments,employee,accounting_period,payment_term", - PaymentsEmployeePaymentTerm: "payments,employee,payment_term", - PaymentsLineItems: "payments,line_items", - PaymentsLineItemsAccountingPeriod: "payments,line_items,accounting_period", - PaymentsLineItemsAccountingPeriodPaymentTerm: "payments,line_items,accounting_period,payment_term", - PaymentsLineItemsAppliedCreditNotes: "payments,line_items,applied_credit_notes", - PaymentsLineItemsAppliedCreditNotesAccountingPeriod: "payments,line_items,applied_credit_notes,accounting_period", - PaymentsLineItemsAppliedCreditNotesAccountingPeriodPaymentTerm: - "payments,line_items,applied_credit_notes,accounting_period,payment_term", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCredits: - "payments,line_items,applied_credit_notes,applied_vendor_credits", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "payments,line_items,applied_credit_notes,applied_vendor_credits,accounting_period", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,line_items,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsCompany: - "payments,line_items,applied_credit_notes,applied_vendor_credits,company", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "payments,line_items,applied_credit_notes,applied_vendor_credits,company,accounting_period", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,line_items,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "payments,line_items,applied_credit_notes,applied_vendor_credits,company,payment_term", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContact: - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactCompany: - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,payment_term", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsEmployee: - "payments,line_items,applied_credit_notes,applied_vendor_credits,employee", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,line_items,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "payments,line_items,applied_credit_notes,applied_vendor_credits,employee,payment_term", - PaymentsLineItemsAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "payments,line_items,applied_credit_notes,applied_vendor_credits,payment_term", - PaymentsLineItemsAppliedCreditNotesCompany: "payments,line_items,applied_credit_notes,company", - PaymentsLineItemsAppliedCreditNotesCompanyAccountingPeriod: - "payments,line_items,applied_credit_notes,company,accounting_period", - PaymentsLineItemsAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "payments,line_items,applied_credit_notes,company,accounting_period,payment_term", - PaymentsLineItemsAppliedCreditNotesCompanyEmployee: "payments,line_items,applied_credit_notes,company,employee", - PaymentsLineItemsAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "payments,line_items,applied_credit_notes,company,employee,accounting_period", - PaymentsLineItemsAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,applied_credit_notes,company,employee,accounting_period,payment_term", - PaymentsLineItemsAppliedCreditNotesCompanyEmployeePaymentTerm: - "payments,line_items,applied_credit_notes,company,employee,payment_term", - PaymentsLineItemsAppliedCreditNotesCompanyPaymentTerm: - "payments,line_items,applied_credit_notes,company,payment_term", - PaymentsLineItemsAppliedCreditNotesContact: "payments,line_items,applied_credit_notes,contact", - PaymentsLineItemsAppliedCreditNotesContactAccountingPeriod: - "payments,line_items,applied_credit_notes,contact,accounting_period", - PaymentsLineItemsAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "payments,line_items,applied_credit_notes,contact,accounting_period,payment_term", - PaymentsLineItemsAppliedCreditNotesContactCompany: "payments,line_items,applied_credit_notes,contact,company", - PaymentsLineItemsAppliedCreditNotesContactCompanyAccountingPeriod: - "payments,line_items,applied_credit_notes,contact,company,accounting_period", - PaymentsLineItemsAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "payments,line_items,applied_credit_notes,contact,company,accounting_period,payment_term", - PaymentsLineItemsAppliedCreditNotesContactCompanyEmployee: - "payments,line_items,applied_credit_notes,contact,company,employee", - PaymentsLineItemsAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "payments,line_items,applied_credit_notes,contact,company,employee,accounting_period", - PaymentsLineItemsAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - PaymentsLineItemsAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "payments,line_items,applied_credit_notes,contact,company,employee,payment_term", - PaymentsLineItemsAppliedCreditNotesContactCompanyPaymentTerm: - "payments,line_items,applied_credit_notes,contact,company,payment_term", - PaymentsLineItemsAppliedCreditNotesContactEmployee: "payments,line_items,applied_credit_notes,contact,employee", - PaymentsLineItemsAppliedCreditNotesContactEmployeeAccountingPeriod: - "payments,line_items,applied_credit_notes,contact,employee,accounting_period", - PaymentsLineItemsAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,applied_credit_notes,contact,employee,accounting_period,payment_term", - PaymentsLineItemsAppliedCreditNotesContactEmployeePaymentTerm: - "payments,line_items,applied_credit_notes,contact,employee,payment_term", - PaymentsLineItemsAppliedCreditNotesContactPaymentTerm: - "payments,line_items,applied_credit_notes,contact,payment_term", - PaymentsLineItemsAppliedCreditNotesEmployee: "payments,line_items,applied_credit_notes,employee", - PaymentsLineItemsAppliedCreditNotesEmployeeAccountingPeriod: - "payments,line_items,applied_credit_notes,employee,accounting_period", - PaymentsLineItemsAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,applied_credit_notes,employee,accounting_period,payment_term", - PaymentsLineItemsAppliedCreditNotesEmployeePaymentTerm: - "payments,line_items,applied_credit_notes,employee,payment_term", - PaymentsLineItemsAppliedCreditNotesPaymentTerm: "payments,line_items,applied_credit_notes,payment_term", - PaymentsLineItemsAppliedVendorCredits: "payments,line_items,applied_vendor_credits", - PaymentsLineItemsAppliedVendorCreditsAccountingPeriod: - "payments,line_items,applied_vendor_credits,accounting_period", - PaymentsLineItemsAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,line_items,applied_vendor_credits,accounting_period,payment_term", - PaymentsLineItemsAppliedVendorCreditsCompany: "payments,line_items,applied_vendor_credits,company", - PaymentsLineItemsAppliedVendorCreditsCompanyAccountingPeriod: - "payments,line_items,applied_vendor_credits,company,accounting_period", - PaymentsLineItemsAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,line_items,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsLineItemsAppliedVendorCreditsCompanyEmployee: "payments,line_items,applied_vendor_credits,company,employee", - PaymentsLineItemsAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,line_items,applied_vendor_credits,company,employee,accounting_period", - PaymentsLineItemsAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsLineItemsAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,line_items,applied_vendor_credits,company,employee,payment_term", - PaymentsLineItemsAppliedVendorCreditsCompanyPaymentTerm: - "payments,line_items,applied_vendor_credits,company,payment_term", - PaymentsLineItemsAppliedVendorCreditsContact: "payments,line_items,applied_vendor_credits,contact", - PaymentsLineItemsAppliedVendorCreditsContactAccountingPeriod: - "payments,line_items,applied_vendor_credits,contact,accounting_period", - PaymentsLineItemsAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,line_items,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsLineItemsAppliedVendorCreditsContactCompany: "payments,line_items,applied_vendor_credits,contact,company", - PaymentsLineItemsAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,line_items,applied_vendor_credits,contact,company,accounting_period", - PaymentsLineItemsAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,line_items,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsLineItemsAppliedVendorCreditsContactCompanyEmployee: - "payments,line_items,applied_vendor_credits,contact,company,employee", - PaymentsLineItemsAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,line_items,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsLineItemsAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsLineItemsAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,line_items,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsLineItemsAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,line_items,applied_vendor_credits,contact,company,payment_term", - PaymentsLineItemsAppliedVendorCreditsContactEmployee: "payments,line_items,applied_vendor_credits,contact,employee", - PaymentsLineItemsAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,line_items,applied_vendor_credits,contact,employee,accounting_period", - PaymentsLineItemsAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsLineItemsAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,line_items,applied_vendor_credits,contact,employee,payment_term", - PaymentsLineItemsAppliedVendorCreditsContactPaymentTerm: - "payments,line_items,applied_vendor_credits,contact,payment_term", - PaymentsLineItemsAppliedVendorCreditsEmployee: "payments,line_items,applied_vendor_credits,employee", - PaymentsLineItemsAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,line_items,applied_vendor_credits,employee,accounting_period", - PaymentsLineItemsAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsLineItemsAppliedVendorCreditsEmployeePaymentTerm: - "payments,line_items,applied_vendor_credits,employee,payment_term", - PaymentsLineItemsAppliedVendorCreditsPaymentTerm: "payments,line_items,applied_vendor_credits,payment_term", - PaymentsLineItemsCompany: "payments,line_items,company", - PaymentsLineItemsCompanyAccountingPeriod: "payments,line_items,company,accounting_period", - PaymentsLineItemsCompanyAccountingPeriodPaymentTerm: "payments,line_items,company,accounting_period,payment_term", - PaymentsLineItemsCompanyEmployee: "payments,line_items,company,employee", - PaymentsLineItemsCompanyEmployeeAccountingPeriod: "payments,line_items,company,employee,accounting_period", - PaymentsLineItemsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,company,employee,accounting_period,payment_term", - PaymentsLineItemsCompanyEmployeePaymentTerm: "payments,line_items,company,employee,payment_term", - PaymentsLineItemsCompanyPaymentTerm: "payments,line_items,company,payment_term", - PaymentsLineItemsContact: "payments,line_items,contact", - PaymentsLineItemsContactAccountingPeriod: "payments,line_items,contact,accounting_period", - PaymentsLineItemsContactAccountingPeriodPaymentTerm: "payments,line_items,contact,accounting_period,payment_term", - PaymentsLineItemsContactCompany: "payments,line_items,contact,company", - PaymentsLineItemsContactCompanyAccountingPeriod: "payments,line_items,contact,company,accounting_period", - PaymentsLineItemsContactCompanyAccountingPeriodPaymentTerm: - "payments,line_items,contact,company,accounting_period,payment_term", - PaymentsLineItemsContactCompanyEmployee: "payments,line_items,contact,company,employee", - PaymentsLineItemsContactCompanyEmployeeAccountingPeriod: - "payments,line_items,contact,company,employee,accounting_period", - PaymentsLineItemsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,contact,company,employee,accounting_period,payment_term", - PaymentsLineItemsContactCompanyEmployeePaymentTerm: "payments,line_items,contact,company,employee,payment_term", - PaymentsLineItemsContactCompanyPaymentTerm: "payments,line_items,contact,company,payment_term", - PaymentsLineItemsContactEmployee: "payments,line_items,contact,employee", - PaymentsLineItemsContactEmployeeAccountingPeriod: "payments,line_items,contact,employee,accounting_period", - PaymentsLineItemsContactEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,contact,employee,accounting_period,payment_term", - PaymentsLineItemsContactEmployeePaymentTerm: "payments,line_items,contact,employee,payment_term", - PaymentsLineItemsContactPaymentTerm: "payments,line_items,contact,payment_term", - PaymentsLineItemsEmployee: "payments,line_items,employee", - PaymentsLineItemsEmployeeAccountingPeriod: "payments,line_items,employee,accounting_period", - PaymentsLineItemsEmployeeAccountingPeriodPaymentTerm: "payments,line_items,employee,accounting_period,payment_term", - PaymentsLineItemsEmployeePaymentTerm: "payments,line_items,employee,payment_term", - PaymentsLineItemsPaymentTerm: "payments,line_items,payment_term", - PaymentsLineItemsPurchaseOrders: "payments,line_items,purchase_orders", - PaymentsLineItemsPurchaseOrdersAccountingPeriod: "payments,line_items,purchase_orders,accounting_period", - PaymentsLineItemsPurchaseOrdersAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotes: "payments,line_items,purchase_orders,applied_credit_notes", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAccountingPeriod: - "payments,line_items,purchase_orders,applied_credit_notes,accounting_period", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCredits: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompany: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContact: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompany: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployee: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesCompany: - "payments,line_items,purchase_orders,applied_credit_notes,company", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriod: - "payments,line_items,purchase_orders,applied_credit_notes,company,accounting_period", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesCompanyEmployee: - "payments,line_items,purchase_orders,applied_credit_notes,company,employee", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "payments,line_items,purchase_orders,applied_credit_notes,company,employee,accounting_period", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesCompanyEmployeePaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,company,employee,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesCompanyPaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,company,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesContact: - "payments,line_items,purchase_orders,applied_credit_notes,contact", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactAccountingPeriod: - "payments,line_items,purchase_orders,applied_credit_notes,contact,accounting_period", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactCompany: - "payments,line_items,purchase_orders,applied_credit_notes,contact,company", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriod: - "payments,line_items,purchase_orders,applied_credit_notes,contact,company,accounting_period", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactCompanyEmployee: - "payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactCompanyPaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,contact,company,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactEmployee: - "payments,line_items,purchase_orders,applied_credit_notes,contact,employee", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriod: - "payments,line_items,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactEmployeePaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,contact,employee,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesContactPaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,contact,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesEmployee: - "payments,line_items,purchase_orders,applied_credit_notes,employee", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriod: - "payments,line_items,purchase_orders,applied_credit_notes,employee,accounting_period", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesEmployeePaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,employee,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedCreditNotesPaymentTerm: - "payments,line_items,purchase_orders,applied_credit_notes,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedVendorCredits: "payments,line_items,purchase_orders,applied_vendor_credits", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsAccountingPeriod: - "payments,line_items,purchase_orders,applied_vendor_credits,accounting_period", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsCompany: - "payments,line_items,purchase_orders,applied_vendor_credits,company", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriod: - "payments,line_items,purchase_orders,applied_vendor_credits,company,accounting_period", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsCompanyEmployee: - "payments,line_items,purchase_orders,applied_vendor_credits,company,employee", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,line_items,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,line_items,purchase_orders,applied_vendor_credits,company,employee,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsCompanyPaymentTerm: - "payments,line_items,purchase_orders,applied_vendor_credits,company,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContact: - "payments,line_items,purchase_orders,applied_vendor_credits,contact", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactAccountingPeriod: - "payments,line_items,purchase_orders,applied_vendor_credits,contact,accounting_period", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactCompany: - "payments,line_items,purchase_orders,applied_vendor_credits,contact,company", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,line_items,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployee: - "payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,line_items,purchase_orders,applied_vendor_credits,contact,company,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactEmployee: - "payments,line_items,purchase_orders,applied_vendor_credits,contact,employee", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsContactPaymentTerm: - "payments,line_items,purchase_orders,applied_vendor_credits,contact,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsEmployee: - "payments,line_items,purchase_orders,applied_vendor_credits,employee", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,line_items,purchase_orders,applied_vendor_credits,employee,accounting_period", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsEmployeePaymentTerm: - "payments,line_items,purchase_orders,applied_vendor_credits,employee,payment_term", - PaymentsLineItemsPurchaseOrdersAppliedVendorCreditsPaymentTerm: - "payments,line_items,purchase_orders,applied_vendor_credits,payment_term", - PaymentsLineItemsPurchaseOrdersCompany: "payments,line_items,purchase_orders,company", - PaymentsLineItemsPurchaseOrdersCompanyAccountingPeriod: - "payments,line_items,purchase_orders,company,accounting_period", - PaymentsLineItemsPurchaseOrdersCompanyAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,company,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersCompanyEmployee: "payments,line_items,purchase_orders,company,employee", - PaymentsLineItemsPurchaseOrdersCompanyEmployeeAccountingPeriod: - "payments,line_items,purchase_orders,company,employee,accounting_period", - PaymentsLineItemsPurchaseOrdersCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,company,employee,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersCompanyEmployeePaymentTerm: - "payments,line_items,purchase_orders,company,employee,payment_term", - PaymentsLineItemsPurchaseOrdersCompanyPaymentTerm: "payments,line_items,purchase_orders,company,payment_term", - PaymentsLineItemsPurchaseOrdersContact: "payments,line_items,purchase_orders,contact", - PaymentsLineItemsPurchaseOrdersContactAccountingPeriod: - "payments,line_items,purchase_orders,contact,accounting_period", - PaymentsLineItemsPurchaseOrdersContactAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,contact,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersContactCompany: "payments,line_items,purchase_orders,contact,company", - PaymentsLineItemsPurchaseOrdersContactCompanyAccountingPeriod: - "payments,line_items,purchase_orders,contact,company,accounting_period", - PaymentsLineItemsPurchaseOrdersContactCompanyAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,contact,company,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersContactCompanyEmployee: - "payments,line_items,purchase_orders,contact,company,employee", - PaymentsLineItemsPurchaseOrdersContactCompanyEmployeeAccountingPeriod: - "payments,line_items,purchase_orders,contact,company,employee,accounting_period", - PaymentsLineItemsPurchaseOrdersContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,contact,company,employee,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersContactCompanyEmployeePaymentTerm: - "payments,line_items,purchase_orders,contact,company,employee,payment_term", - PaymentsLineItemsPurchaseOrdersContactCompanyPaymentTerm: - "payments,line_items,purchase_orders,contact,company,payment_term", - PaymentsLineItemsPurchaseOrdersContactEmployee: "payments,line_items,purchase_orders,contact,employee", - PaymentsLineItemsPurchaseOrdersContactEmployeeAccountingPeriod: - "payments,line_items,purchase_orders,contact,employee,accounting_period", - PaymentsLineItemsPurchaseOrdersContactEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,contact,employee,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersContactEmployeePaymentTerm: - "payments,line_items,purchase_orders,contact,employee,payment_term", - PaymentsLineItemsPurchaseOrdersContactPaymentTerm: "payments,line_items,purchase_orders,contact,payment_term", - PaymentsLineItemsPurchaseOrdersEmployee: "payments,line_items,purchase_orders,employee", - PaymentsLineItemsPurchaseOrdersEmployeeAccountingPeriod: - "payments,line_items,purchase_orders,employee,accounting_period", - PaymentsLineItemsPurchaseOrdersEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,purchase_orders,employee,accounting_period,payment_term", - PaymentsLineItemsPurchaseOrdersEmployeePaymentTerm: "payments,line_items,purchase_orders,employee,payment_term", - PaymentsLineItemsPurchaseOrdersPaymentTerm: "payments,line_items,purchase_orders,payment_term", - PaymentsLineItemsTrackingCategories: "payments,line_items,tracking_categories", - PaymentsLineItemsTrackingCategoriesAccountingPeriod: "payments,line_items,tracking_categories,accounting_period", - PaymentsLineItemsTrackingCategoriesAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotes: - "payments,line_items,tracking_categories,applied_credit_notes", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAccountingPeriod: - "payments,line_items,tracking_categories,applied_credit_notes,accounting_period", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCredits: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompany: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContact: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompany: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployee: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesCompany: - "payments,line_items,tracking_categories,applied_credit_notes,company", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesCompanyAccountingPeriod: - "payments,line_items,tracking_categories,applied_credit_notes,company,accounting_period", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,company,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesCompanyEmployee: - "payments,line_items,tracking_categories,applied_credit_notes,company,employee", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,applied_credit_notes,company,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,company,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesCompanyEmployeePaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,company,employee,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesCompanyPaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,company,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesContact: - "payments,line_items,tracking_categories,applied_credit_notes,contact", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactAccountingPeriod: - "payments,line_items,tracking_categories,applied_credit_notes,contact,accounting_period", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,contact,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactCompany: - "payments,line_items,tracking_categories,applied_credit_notes,contact,company", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactCompanyAccountingPeriod: - "payments,line_items,tracking_categories,applied_credit_notes,contact,company,accounting_period", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,contact,company,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactCompanyEmployee: - "payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactCompanyPaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,contact,company,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactEmployee: - "payments,line_items,tracking_categories,applied_credit_notes,contact,employee", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,applied_credit_notes,contact,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,contact,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactEmployeePaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,contact,employee,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesContactPaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,contact,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesEmployee: - "payments,line_items,tracking_categories,applied_credit_notes,employee", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,applied_credit_notes,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesEmployeePaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,employee,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedCreditNotesPaymentTerm: - "payments,line_items,tracking_categories,applied_credit_notes,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedVendorCredits: - "payments,line_items,tracking_categories,applied_vendor_credits", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsAccountingPeriod: - "payments,line_items,tracking_categories,applied_vendor_credits,accounting_period", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,applied_vendor_credits,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsCompany: - "payments,line_items,tracking_categories,applied_vendor_credits,company", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsCompanyAccountingPeriod: - "payments,line_items,tracking_categories,applied_vendor_credits,company,accounting_period", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsCompanyEmployee: - "payments,line_items,tracking_categories,applied_vendor_credits,company,employee", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,applied_vendor_credits,company,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,line_items,tracking_categories,applied_vendor_credits,company,employee,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsCompanyPaymentTerm: - "payments,line_items,tracking_categories,applied_vendor_credits,company,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContact: - "payments,line_items,tracking_categories,applied_vendor_credits,contact", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactAccountingPeriod: - "payments,line_items,tracking_categories,applied_vendor_credits,contact,accounting_period", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactCompany: - "payments,line_items,tracking_categories,applied_vendor_credits,contact,company", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,line_items,tracking_categories,applied_vendor_credits,contact,company,accounting_period", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployee: - "payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,line_items,tracking_categories,applied_vendor_credits,contact,company,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactEmployee: - "payments,line_items,tracking_categories,applied_vendor_credits,contact,employee", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsContactPaymentTerm: - "payments,line_items,tracking_categories,applied_vendor_credits,contact,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsEmployee: - "payments,line_items,tracking_categories,applied_vendor_credits,employee", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,applied_vendor_credits,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsEmployeePaymentTerm: - "payments,line_items,tracking_categories,applied_vendor_credits,employee,payment_term", - PaymentsLineItemsTrackingCategoriesAppliedVendorCreditsPaymentTerm: - "payments,line_items,tracking_categories,applied_vendor_credits,payment_term", - PaymentsLineItemsTrackingCategoriesCompany: "payments,line_items,tracking_categories,company", - PaymentsLineItemsTrackingCategoriesCompanyAccountingPeriod: - "payments,line_items,tracking_categories,company,accounting_period", - PaymentsLineItemsTrackingCategoriesCompanyAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,company,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesCompanyEmployee: "payments,line_items,tracking_categories,company,employee", - PaymentsLineItemsTrackingCategoriesCompanyEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,company,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,company,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesCompanyEmployeePaymentTerm: - "payments,line_items,tracking_categories,company,employee,payment_term", - PaymentsLineItemsTrackingCategoriesCompanyPaymentTerm: - "payments,line_items,tracking_categories,company,payment_term", - PaymentsLineItemsTrackingCategoriesContact: "payments,line_items,tracking_categories,contact", - PaymentsLineItemsTrackingCategoriesContactAccountingPeriod: - "payments,line_items,tracking_categories,contact,accounting_period", - PaymentsLineItemsTrackingCategoriesContactAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,contact,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesContactCompany: "payments,line_items,tracking_categories,contact,company", - PaymentsLineItemsTrackingCategoriesContactCompanyAccountingPeriod: - "payments,line_items,tracking_categories,contact,company,accounting_period", - PaymentsLineItemsTrackingCategoriesContactCompanyAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,contact,company,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesContactCompanyEmployee: - "payments,line_items,tracking_categories,contact,company,employee", - PaymentsLineItemsTrackingCategoriesContactCompanyEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,contact,company,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,contact,company,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesContactCompanyEmployeePaymentTerm: - "payments,line_items,tracking_categories,contact,company,employee,payment_term", - PaymentsLineItemsTrackingCategoriesContactCompanyPaymentTerm: - "payments,line_items,tracking_categories,contact,company,payment_term", - PaymentsLineItemsTrackingCategoriesContactEmployee: "payments,line_items,tracking_categories,contact,employee", - PaymentsLineItemsTrackingCategoriesContactEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,contact,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesContactEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,contact,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesContactEmployeePaymentTerm: - "payments,line_items,tracking_categories,contact,employee,payment_term", - PaymentsLineItemsTrackingCategoriesContactPaymentTerm: - "payments,line_items,tracking_categories,contact,payment_term", - PaymentsLineItemsTrackingCategoriesEmployee: "payments,line_items,tracking_categories,employee", - PaymentsLineItemsTrackingCategoriesEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesEmployeePaymentTerm: - "payments,line_items,tracking_categories,employee,payment_term", - PaymentsLineItemsTrackingCategoriesPaymentTerm: "payments,line_items,tracking_categories,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrders: "payments,line_items,tracking_categories,purchase_orders", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotes: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCredits: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompany: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContact: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompany: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployee: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompany: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployee: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployeePaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContact: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompany: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployee: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployee: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployeePaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployee: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployeePaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedCreditNotesPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCredits: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompany: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployee: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContact: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompany: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployee: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployee: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployee: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployeePaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersCompany: - "payments,line_items,tracking_categories,purchase_orders,company", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersCompanyAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,company,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersCompanyAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,company,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersCompanyEmployee: - "payments,line_items,tracking_categories,purchase_orders,company,employee", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersCompanyEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,company,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,company,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersCompanyEmployeePaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,company,employee,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersCompanyPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,company,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersContact: - "payments,line_items,tracking_categories,purchase_orders,contact", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersContactAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,contact,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersContactAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,contact,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersContactCompany: - "payments,line_items,tracking_categories,purchase_orders,contact,company", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersContactCompanyAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,contact,company,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersContactCompanyAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,contact,company,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersContactCompanyEmployee: - "payments,line_items,tracking_categories,purchase_orders,contact,company,employee", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersContactCompanyEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,contact,company,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,contact,company,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersContactCompanyEmployeePaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,contact,company,employee,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersContactCompanyPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,contact,company,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersContactEmployee: - "payments,line_items,tracking_categories,purchase_orders,contact,employee", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersContactEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,contact,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersContactEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,contact,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersContactEmployeePaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,contact,employee,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersContactPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,contact,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersEmployee: - "payments,line_items,tracking_categories,purchase_orders,employee", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersEmployeeAccountingPeriod: - "payments,line_items,tracking_categories,purchase_orders,employee,accounting_period", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersEmployeeAccountingPeriodPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,employee,accounting_period,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersEmployeePaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,employee,payment_term", - PaymentsLineItemsTrackingCategoriesPurchaseOrdersPaymentTerm: - "payments,line_items,tracking_categories,purchase_orders,payment_term", - PaymentsPaymentTerm: "payments,payment_term", - PaymentsPurchaseOrders: "payments,purchase_orders", - PaymentsPurchaseOrdersAccountingPeriod: "payments,purchase_orders,accounting_period", - PaymentsPurchaseOrdersAccountingPeriodPaymentTerm: "payments,purchase_orders,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotes: "payments,purchase_orders,applied_credit_notes", - PaymentsPurchaseOrdersAppliedCreditNotesAccountingPeriod: - "payments,purchase_orders,applied_credit_notes,accounting_period", - PaymentsPurchaseOrdersAppliedCreditNotesAccountingPeriodPaymentTerm: - "payments,purchase_orders,applied_credit_notes,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCredits: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompany: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContact: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompany: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployee: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesCompany: "payments,purchase_orders,applied_credit_notes,company", - PaymentsPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriod: - "payments,purchase_orders,applied_credit_notes,company,accounting_period", - PaymentsPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "payments,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesCompanyEmployee: - "payments,purchase_orders,applied_credit_notes,company,employee", - PaymentsPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "payments,purchase_orders,applied_credit_notes,company,employee,accounting_period", - PaymentsPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesCompanyEmployeePaymentTerm: - "payments,purchase_orders,applied_credit_notes,company,employee,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesCompanyPaymentTerm: - "payments,purchase_orders,applied_credit_notes,company,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesContact: "payments,purchase_orders,applied_credit_notes,contact", - PaymentsPurchaseOrdersAppliedCreditNotesContactAccountingPeriod: - "payments,purchase_orders,applied_credit_notes,contact,accounting_period", - PaymentsPurchaseOrdersAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "payments,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesContactCompany: - "payments,purchase_orders,applied_credit_notes,contact,company", - PaymentsPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriod: - "payments,purchase_orders,applied_credit_notes,contact,company,accounting_period", - PaymentsPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "payments,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesContactCompanyEmployee: - "payments,purchase_orders,applied_credit_notes,contact,company,employee", - PaymentsPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "payments,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - PaymentsPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "payments,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesContactCompanyPaymentTerm: - "payments,purchase_orders,applied_credit_notes,contact,company,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesContactEmployee: - "payments,purchase_orders,applied_credit_notes,contact,employee", - PaymentsPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriod: - "payments,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - PaymentsPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "payments,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesContactEmployeePaymentTerm: - "payments,purchase_orders,applied_credit_notes,contact,employee,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesContactPaymentTerm: - "payments,purchase_orders,applied_credit_notes,contact,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesEmployee: "payments,purchase_orders,applied_credit_notes,employee", - PaymentsPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriod: - "payments,purchase_orders,applied_credit_notes,employee,accounting_period", - PaymentsPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "payments,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesEmployeePaymentTerm: - "payments,purchase_orders,applied_credit_notes,employee,payment_term", - PaymentsPurchaseOrdersAppliedCreditNotesPaymentTerm: "payments,purchase_orders,applied_credit_notes,payment_term", - PaymentsPurchaseOrdersAppliedVendorCredits: "payments,purchase_orders,applied_vendor_credits", - PaymentsPurchaseOrdersAppliedVendorCreditsAccountingPeriod: - "payments,purchase_orders,applied_vendor_credits,accounting_period", - PaymentsPurchaseOrdersAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedVendorCreditsCompany: "payments,purchase_orders,applied_vendor_credits,company", - PaymentsPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriod: - "payments,purchase_orders,applied_vendor_credits,company,accounting_period", - PaymentsPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedVendorCreditsCompanyEmployee: - "payments,purchase_orders,applied_vendor_credits,company,employee", - PaymentsPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - PaymentsPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,purchase_orders,applied_vendor_credits,company,employee,payment_term", - PaymentsPurchaseOrdersAppliedVendorCreditsCompanyPaymentTerm: - "payments,purchase_orders,applied_vendor_credits,company,payment_term", - PaymentsPurchaseOrdersAppliedVendorCreditsContact: "payments,purchase_orders,applied_vendor_credits,contact", - PaymentsPurchaseOrdersAppliedVendorCreditsContactAccountingPeriod: - "payments,purchase_orders,applied_vendor_credits,contact,accounting_period", - PaymentsPurchaseOrdersAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedVendorCreditsContactCompany: - "payments,purchase_orders,applied_vendor_credits,contact,company", - PaymentsPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - PaymentsPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployee: - "payments,purchase_orders,applied_vendor_credits,contact,company,employee", - PaymentsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsPurchaseOrdersAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,purchase_orders,applied_vendor_credits,contact,company,payment_term", - PaymentsPurchaseOrdersAppliedVendorCreditsContactEmployee: - "payments,purchase_orders,applied_vendor_credits,contact,employee", - PaymentsPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - PaymentsPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - PaymentsPurchaseOrdersAppliedVendorCreditsContactPaymentTerm: - "payments,purchase_orders,applied_vendor_credits,contact,payment_term", - PaymentsPurchaseOrdersAppliedVendorCreditsEmployee: "payments,purchase_orders,applied_vendor_credits,employee", - PaymentsPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,purchase_orders,applied_vendor_credits,employee,accounting_period", - PaymentsPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsPurchaseOrdersAppliedVendorCreditsEmployeePaymentTerm: - "payments,purchase_orders,applied_vendor_credits,employee,payment_term", - PaymentsPurchaseOrdersAppliedVendorCreditsPaymentTerm: - "payments,purchase_orders,applied_vendor_credits,payment_term", - PaymentsPurchaseOrdersCompany: "payments,purchase_orders,company", - PaymentsPurchaseOrdersCompanyAccountingPeriod: "payments,purchase_orders,company,accounting_period", - PaymentsPurchaseOrdersCompanyAccountingPeriodPaymentTerm: - "payments,purchase_orders,company,accounting_period,payment_term", - PaymentsPurchaseOrdersCompanyEmployee: "payments,purchase_orders,company,employee", - PaymentsPurchaseOrdersCompanyEmployeeAccountingPeriod: - "payments,purchase_orders,company,employee,accounting_period", - PaymentsPurchaseOrdersCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,purchase_orders,company,employee,accounting_period,payment_term", - PaymentsPurchaseOrdersCompanyEmployeePaymentTerm: "payments,purchase_orders,company,employee,payment_term", - PaymentsPurchaseOrdersCompanyPaymentTerm: "payments,purchase_orders,company,payment_term", - PaymentsPurchaseOrdersContact: "payments,purchase_orders,contact", - PaymentsPurchaseOrdersContactAccountingPeriod: "payments,purchase_orders,contact,accounting_period", - PaymentsPurchaseOrdersContactAccountingPeriodPaymentTerm: - "payments,purchase_orders,contact,accounting_period,payment_term", - PaymentsPurchaseOrdersContactCompany: "payments,purchase_orders,contact,company", - PaymentsPurchaseOrdersContactCompanyAccountingPeriod: "payments,purchase_orders,contact,company,accounting_period", - PaymentsPurchaseOrdersContactCompanyAccountingPeriodPaymentTerm: - "payments,purchase_orders,contact,company,accounting_period,payment_term", - PaymentsPurchaseOrdersContactCompanyEmployee: "payments,purchase_orders,contact,company,employee", - PaymentsPurchaseOrdersContactCompanyEmployeeAccountingPeriod: - "payments,purchase_orders,contact,company,employee,accounting_period", - PaymentsPurchaseOrdersContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,purchase_orders,contact,company,employee,accounting_period,payment_term", - PaymentsPurchaseOrdersContactCompanyEmployeePaymentTerm: - "payments,purchase_orders,contact,company,employee,payment_term", - PaymentsPurchaseOrdersContactCompanyPaymentTerm: "payments,purchase_orders,contact,company,payment_term", - PaymentsPurchaseOrdersContactEmployee: "payments,purchase_orders,contact,employee", - PaymentsPurchaseOrdersContactEmployeeAccountingPeriod: - "payments,purchase_orders,contact,employee,accounting_period", - PaymentsPurchaseOrdersContactEmployeeAccountingPeriodPaymentTerm: - "payments,purchase_orders,contact,employee,accounting_period,payment_term", - PaymentsPurchaseOrdersContactEmployeePaymentTerm: "payments,purchase_orders,contact,employee,payment_term", - PaymentsPurchaseOrdersContactPaymentTerm: "payments,purchase_orders,contact,payment_term", - PaymentsPurchaseOrdersEmployee: "payments,purchase_orders,employee", - PaymentsPurchaseOrdersEmployeeAccountingPeriod: "payments,purchase_orders,employee,accounting_period", - PaymentsPurchaseOrdersEmployeeAccountingPeriodPaymentTerm: - "payments,purchase_orders,employee,accounting_period,payment_term", - PaymentsPurchaseOrdersEmployeePaymentTerm: "payments,purchase_orders,employee,payment_term", - PaymentsPurchaseOrdersPaymentTerm: "payments,purchase_orders,payment_term", - PaymentsTrackingCategories: "payments,tracking_categories", - PaymentsTrackingCategoriesAccountingPeriod: "payments,tracking_categories,accounting_period", - PaymentsTrackingCategoriesAccountingPeriodPaymentTerm: - "payments,tracking_categories,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotes: "payments,tracking_categories,applied_credit_notes", - PaymentsTrackingCategoriesAppliedCreditNotesAccountingPeriod: - "payments,tracking_categories,applied_credit_notes,accounting_period", - PaymentsTrackingCategoriesAppliedCreditNotesAccountingPeriodPaymentTerm: - "payments,tracking_categories,applied_credit_notes,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCredits: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompany: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContact: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompany: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployee: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesCompany: "payments,tracking_categories,applied_credit_notes,company", - PaymentsTrackingCategoriesAppliedCreditNotesCompanyAccountingPeriod: - "payments,tracking_categories,applied_credit_notes,company,accounting_period", - PaymentsTrackingCategoriesAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "payments,tracking_categories,applied_credit_notes,company,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesCompanyEmployee: - "payments,tracking_categories,applied_credit_notes,company,employee", - PaymentsTrackingCategoriesAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "payments,tracking_categories,applied_credit_notes,company,employee,accounting_period", - PaymentsTrackingCategoriesAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,applied_credit_notes,company,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesCompanyEmployeePaymentTerm: - "payments,tracking_categories,applied_credit_notes,company,employee,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesCompanyPaymentTerm: - "payments,tracking_categories,applied_credit_notes,company,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesContact: "payments,tracking_categories,applied_credit_notes,contact", - PaymentsTrackingCategoriesAppliedCreditNotesContactAccountingPeriod: - "payments,tracking_categories,applied_credit_notes,contact,accounting_period", - PaymentsTrackingCategoriesAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "payments,tracking_categories,applied_credit_notes,contact,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesContactCompany: - "payments,tracking_categories,applied_credit_notes,contact,company", - PaymentsTrackingCategoriesAppliedCreditNotesContactCompanyAccountingPeriod: - "payments,tracking_categories,applied_credit_notes,contact,company,accounting_period", - PaymentsTrackingCategoriesAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "payments,tracking_categories,applied_credit_notes,contact,company,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesContactCompanyEmployee: - "payments,tracking_categories,applied_credit_notes,contact,company,employee", - PaymentsTrackingCategoriesAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "payments,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period", - PaymentsTrackingCategoriesAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "payments,tracking_categories,applied_credit_notes,contact,company,employee,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesContactCompanyPaymentTerm: - "payments,tracking_categories,applied_credit_notes,contact,company,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesContactEmployee: - "payments,tracking_categories,applied_credit_notes,contact,employee", - PaymentsTrackingCategoriesAppliedCreditNotesContactEmployeeAccountingPeriod: - "payments,tracking_categories,applied_credit_notes,contact,employee,accounting_period", - PaymentsTrackingCategoriesAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,applied_credit_notes,contact,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesContactEmployeePaymentTerm: - "payments,tracking_categories,applied_credit_notes,contact,employee,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesContactPaymentTerm: - "payments,tracking_categories,applied_credit_notes,contact,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesEmployee: "payments,tracking_categories,applied_credit_notes,employee", - PaymentsTrackingCategoriesAppliedCreditNotesEmployeeAccountingPeriod: - "payments,tracking_categories,applied_credit_notes,employee,accounting_period", - PaymentsTrackingCategoriesAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,applied_credit_notes,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesEmployeePaymentTerm: - "payments,tracking_categories,applied_credit_notes,employee,payment_term", - PaymentsTrackingCategoriesAppliedCreditNotesPaymentTerm: - "payments,tracking_categories,applied_credit_notes,payment_term", - PaymentsTrackingCategoriesAppliedVendorCredits: "payments,tracking_categories,applied_vendor_credits", - PaymentsTrackingCategoriesAppliedVendorCreditsAccountingPeriod: - "payments,tracking_categories,applied_vendor_credits,accounting_period", - PaymentsTrackingCategoriesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,tracking_categories,applied_vendor_credits,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedVendorCreditsCompany: - "payments,tracking_categories,applied_vendor_credits,company", - PaymentsTrackingCategoriesAppliedVendorCreditsCompanyAccountingPeriod: - "payments,tracking_categories,applied_vendor_credits,company,accounting_period", - PaymentsTrackingCategoriesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,tracking_categories,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedVendorCreditsCompanyEmployee: - "payments,tracking_categories,applied_vendor_credits,company,employee", - PaymentsTrackingCategoriesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,tracking_categories,applied_vendor_credits,company,employee,accounting_period", - PaymentsTrackingCategoriesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,tracking_categories,applied_vendor_credits,company,employee,payment_term", - PaymentsTrackingCategoriesAppliedVendorCreditsCompanyPaymentTerm: - "payments,tracking_categories,applied_vendor_credits,company,payment_term", - PaymentsTrackingCategoriesAppliedVendorCreditsContact: - "payments,tracking_categories,applied_vendor_credits,contact", - PaymentsTrackingCategoriesAppliedVendorCreditsContactAccountingPeriod: - "payments,tracking_categories,applied_vendor_credits,contact,accounting_period", - PaymentsTrackingCategoriesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,tracking_categories,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedVendorCreditsContactCompany: - "payments,tracking_categories,applied_vendor_credits,contact,company", - PaymentsTrackingCategoriesAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,tracking_categories,applied_vendor_credits,contact,company,accounting_period", - PaymentsTrackingCategoriesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,tracking_categories,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployee: - "payments,tracking_categories,applied_vendor_credits,contact,company,employee", - PaymentsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,tracking_categories,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsTrackingCategoriesAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,tracking_categories,applied_vendor_credits,contact,company,payment_term", - PaymentsTrackingCategoriesAppliedVendorCreditsContactEmployee: - "payments,tracking_categories,applied_vendor_credits,contact,employee", - PaymentsTrackingCategoriesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,tracking_categories,applied_vendor_credits,contact,employee,accounting_period", - PaymentsTrackingCategoriesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,tracking_categories,applied_vendor_credits,contact,employee,payment_term", - PaymentsTrackingCategoriesAppliedVendorCreditsContactPaymentTerm: - "payments,tracking_categories,applied_vendor_credits,contact,payment_term", - PaymentsTrackingCategoriesAppliedVendorCreditsEmployee: - "payments,tracking_categories,applied_vendor_credits,employee", - PaymentsTrackingCategoriesAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,tracking_categories,applied_vendor_credits,employee,accounting_period", - PaymentsTrackingCategoriesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesAppliedVendorCreditsEmployeePaymentTerm: - "payments,tracking_categories,applied_vendor_credits,employee,payment_term", - PaymentsTrackingCategoriesAppliedVendorCreditsPaymentTerm: - "payments,tracking_categories,applied_vendor_credits,payment_term", - PaymentsTrackingCategoriesCompany: "payments,tracking_categories,company", - PaymentsTrackingCategoriesCompanyAccountingPeriod: "payments,tracking_categories,company,accounting_period", - PaymentsTrackingCategoriesCompanyAccountingPeriodPaymentTerm: - "payments,tracking_categories,company,accounting_period,payment_term", - PaymentsTrackingCategoriesCompanyEmployee: "payments,tracking_categories,company,employee", - PaymentsTrackingCategoriesCompanyEmployeeAccountingPeriod: - "payments,tracking_categories,company,employee,accounting_period", - PaymentsTrackingCategoriesCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,company,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesCompanyEmployeePaymentTerm: "payments,tracking_categories,company,employee,payment_term", - PaymentsTrackingCategoriesCompanyPaymentTerm: "payments,tracking_categories,company,payment_term", - PaymentsTrackingCategoriesContact: "payments,tracking_categories,contact", - PaymentsTrackingCategoriesContactAccountingPeriod: "payments,tracking_categories,contact,accounting_period", - PaymentsTrackingCategoriesContactAccountingPeriodPaymentTerm: - "payments,tracking_categories,contact,accounting_period,payment_term", - PaymentsTrackingCategoriesContactCompany: "payments,tracking_categories,contact,company", - PaymentsTrackingCategoriesContactCompanyAccountingPeriod: - "payments,tracking_categories,contact,company,accounting_period", - PaymentsTrackingCategoriesContactCompanyAccountingPeriodPaymentTerm: - "payments,tracking_categories,contact,company,accounting_period,payment_term", - PaymentsTrackingCategoriesContactCompanyEmployee: "payments,tracking_categories,contact,company,employee", - PaymentsTrackingCategoriesContactCompanyEmployeeAccountingPeriod: - "payments,tracking_categories,contact,company,employee,accounting_period", - PaymentsTrackingCategoriesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,contact,company,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesContactCompanyEmployeePaymentTerm: - "payments,tracking_categories,contact,company,employee,payment_term", - PaymentsTrackingCategoriesContactCompanyPaymentTerm: "payments,tracking_categories,contact,company,payment_term", - PaymentsTrackingCategoriesContactEmployee: "payments,tracking_categories,contact,employee", - PaymentsTrackingCategoriesContactEmployeeAccountingPeriod: - "payments,tracking_categories,contact,employee,accounting_period", - PaymentsTrackingCategoriesContactEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,contact,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesContactEmployeePaymentTerm: "payments,tracking_categories,contact,employee,payment_term", - PaymentsTrackingCategoriesContactPaymentTerm: "payments,tracking_categories,contact,payment_term", - PaymentsTrackingCategoriesEmployee: "payments,tracking_categories,employee", - PaymentsTrackingCategoriesEmployeeAccountingPeriod: "payments,tracking_categories,employee,accounting_period", - PaymentsTrackingCategoriesEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesEmployeePaymentTerm: "payments,tracking_categories,employee,payment_term", - PaymentsTrackingCategoriesPaymentTerm: "payments,tracking_categories,payment_term", - PaymentsTrackingCategoriesPurchaseOrders: "payments,tracking_categories,purchase_orders", - PaymentsTrackingCategoriesPurchaseOrdersAccountingPeriod: - "payments,tracking_categories,purchase_orders,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotes: - "payments,tracking_categories,purchase_orders,applied_credit_notes", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAccountingPeriod: - "payments,tracking_categories,purchase_orders,applied_credit_notes,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCredits: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompany: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContact: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompany: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployee: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompany: - "payments,tracking_categories,purchase_orders,applied_credit_notes,company", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriod: - "payments,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployee: - "payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployeePaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,company,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContact: - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactAccountingPeriod: - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompany: - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriod: - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployee: - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployee: - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriod: - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployeePaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesContactPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployee: - "payments,tracking_categories,purchase_orders,applied_credit_notes,employee", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriod: - "payments,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployeePaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,employee,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedCreditNotesPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_credit_notes,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCredits: - "payments,tracking_categories,purchase_orders,applied_vendor_credits", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsAccountingPeriod: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompany: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,company", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriod: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployee: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployeePaymentTerm: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,company,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContact: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactAccountingPeriod: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompany: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriod: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployee: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployee: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriod: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployeePaymentTerm: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployee: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,employee", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriod: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployeePaymentTerm: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersAppliedVendorCreditsPaymentTerm: - "payments,tracking_categories,purchase_orders,applied_vendor_credits,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersCompany: "payments,tracking_categories,purchase_orders,company", - PaymentsTrackingCategoriesPurchaseOrdersCompanyAccountingPeriod: - "payments,tracking_categories,purchase_orders,company,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersCompanyAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,company,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersCompanyEmployee: - "payments,tracking_categories,purchase_orders,company,employee", - PaymentsTrackingCategoriesPurchaseOrdersCompanyEmployeeAccountingPeriod: - "payments,tracking_categories,purchase_orders,company,employee,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,company,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersCompanyEmployeePaymentTerm: - "payments,tracking_categories,purchase_orders,company,employee,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersCompanyPaymentTerm: - "payments,tracking_categories,purchase_orders,company,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersContact: "payments,tracking_categories,purchase_orders,contact", - PaymentsTrackingCategoriesPurchaseOrdersContactAccountingPeriod: - "payments,tracking_categories,purchase_orders,contact,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersContactAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,contact,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersContactCompany: - "payments,tracking_categories,purchase_orders,contact,company", - PaymentsTrackingCategoriesPurchaseOrdersContactCompanyAccountingPeriod: - "payments,tracking_categories,purchase_orders,contact,company,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersContactCompanyAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,contact,company,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersContactCompanyEmployee: - "payments,tracking_categories,purchase_orders,contact,company,employee", - PaymentsTrackingCategoriesPurchaseOrdersContactCompanyEmployeeAccountingPeriod: - "payments,tracking_categories,purchase_orders,contact,company,employee,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersContactCompanyEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,contact,company,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersContactCompanyEmployeePaymentTerm: - "payments,tracking_categories,purchase_orders,contact,company,employee,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersContactCompanyPaymentTerm: - "payments,tracking_categories,purchase_orders,contact,company,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersContactEmployee: - "payments,tracking_categories,purchase_orders,contact,employee", - PaymentsTrackingCategoriesPurchaseOrdersContactEmployeeAccountingPeriod: - "payments,tracking_categories,purchase_orders,contact,employee,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersContactEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,contact,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersContactEmployeePaymentTerm: - "payments,tracking_categories,purchase_orders,contact,employee,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersContactPaymentTerm: - "payments,tracking_categories,purchase_orders,contact,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersEmployee: "payments,tracking_categories,purchase_orders,employee", - PaymentsTrackingCategoriesPurchaseOrdersEmployeeAccountingPeriod: - "payments,tracking_categories,purchase_orders,employee,accounting_period", - PaymentsTrackingCategoriesPurchaseOrdersEmployeeAccountingPeriodPaymentTerm: - "payments,tracking_categories,purchase_orders,employee,accounting_period,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersEmployeePaymentTerm: - "payments,tracking_categories,purchase_orders,employee,payment_term", - PaymentsTrackingCategoriesPurchaseOrdersPaymentTerm: "payments,tracking_categories,purchase_orders,payment_term", - PurchaseOrders: "purchase_orders", - PurchaseOrdersAccountingPeriod: "purchase_orders,accounting_period", - PurchaseOrdersAccountingPeriodPaymentTerm: "purchase_orders,accounting_period,payment_term", - PurchaseOrdersAppliedCreditNotes: "purchase_orders,applied_credit_notes", - PurchaseOrdersAppliedCreditNotesAccountingPeriod: "purchase_orders,applied_credit_notes,accounting_period", - PurchaseOrdersAppliedCreditNotesAccountingPeriodPaymentTerm: - "purchase_orders,applied_credit_notes,accounting_period,payment_term", - PurchaseOrdersAppliedCreditNotesAppliedVendorCredits: "purchase_orders,applied_credit_notes,applied_vendor_credits", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompany: - "purchase_orders,applied_credit_notes,applied_vendor_credits,company", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContact: - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompany: - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployee: - "purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - PurchaseOrdersAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - PurchaseOrdersAppliedCreditNotesCompany: "purchase_orders,applied_credit_notes,company", - PurchaseOrdersAppliedCreditNotesCompanyAccountingPeriod: - "purchase_orders,applied_credit_notes,company,accounting_period", - PurchaseOrdersAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - PurchaseOrdersAppliedCreditNotesCompanyEmployee: "purchase_orders,applied_credit_notes,company,employee", - PurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "purchase_orders,applied_credit_notes,company,employee,accounting_period", - PurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - PurchaseOrdersAppliedCreditNotesCompanyEmployeePaymentTerm: - "purchase_orders,applied_credit_notes,company,employee,payment_term", - PurchaseOrdersAppliedCreditNotesCompanyPaymentTerm: "purchase_orders,applied_credit_notes,company,payment_term", - PurchaseOrdersAppliedCreditNotesContact: "purchase_orders,applied_credit_notes,contact", - PurchaseOrdersAppliedCreditNotesContactAccountingPeriod: - "purchase_orders,applied_credit_notes,contact,accounting_period", - PurchaseOrdersAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - PurchaseOrdersAppliedCreditNotesContactCompany: "purchase_orders,applied_credit_notes,contact,company", - PurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriod: - "purchase_orders,applied_credit_notes,contact,company,accounting_period", - PurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - PurchaseOrdersAppliedCreditNotesContactCompanyEmployee: - "purchase_orders,applied_credit_notes,contact,company,employee", - PurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - PurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - PurchaseOrdersAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - PurchaseOrdersAppliedCreditNotesContactCompanyPaymentTerm: - "purchase_orders,applied_credit_notes,contact,company,payment_term", - PurchaseOrdersAppliedCreditNotesContactEmployee: "purchase_orders,applied_credit_notes,contact,employee", - PurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriod: - "purchase_orders,applied_credit_notes,contact,employee,accounting_period", - PurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - PurchaseOrdersAppliedCreditNotesContactEmployeePaymentTerm: - "purchase_orders,applied_credit_notes,contact,employee,payment_term", - PurchaseOrdersAppliedCreditNotesContactPaymentTerm: "purchase_orders,applied_credit_notes,contact,payment_term", - PurchaseOrdersAppliedCreditNotesEmployee: "purchase_orders,applied_credit_notes,employee", - PurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriod: - "purchase_orders,applied_credit_notes,employee,accounting_period", - PurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - PurchaseOrdersAppliedCreditNotesEmployeePaymentTerm: "purchase_orders,applied_credit_notes,employee,payment_term", - PurchaseOrdersAppliedCreditNotesPaymentTerm: "purchase_orders,applied_credit_notes,payment_term", - PurchaseOrdersAppliedVendorCredits: "purchase_orders,applied_vendor_credits", - PurchaseOrdersAppliedVendorCreditsAccountingPeriod: "purchase_orders,applied_vendor_credits,accounting_period", - PurchaseOrdersAppliedVendorCreditsAccountingPeriodPaymentTerm: - "purchase_orders,applied_vendor_credits,accounting_period,payment_term", - PurchaseOrdersAppliedVendorCreditsCompany: "purchase_orders,applied_vendor_credits,company", - PurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriod: - "purchase_orders,applied_vendor_credits,company,accounting_period", - PurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - PurchaseOrdersAppliedVendorCreditsCompanyEmployee: "purchase_orders,applied_vendor_credits,company,employee", - PurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "purchase_orders,applied_vendor_credits,company,employee,accounting_period", - PurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - PurchaseOrdersAppliedVendorCreditsCompanyEmployeePaymentTerm: - "purchase_orders,applied_vendor_credits,company,employee,payment_term", - PurchaseOrdersAppliedVendorCreditsCompanyPaymentTerm: "purchase_orders,applied_vendor_credits,company,payment_term", - PurchaseOrdersAppliedVendorCreditsContact: "purchase_orders,applied_vendor_credits,contact", - PurchaseOrdersAppliedVendorCreditsContactAccountingPeriod: - "purchase_orders,applied_vendor_credits,contact,accounting_period", - PurchaseOrdersAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - PurchaseOrdersAppliedVendorCreditsContactCompany: "purchase_orders,applied_vendor_credits,contact,company", - PurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriod: - "purchase_orders,applied_vendor_credits,contact,company,accounting_period", - PurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - PurchaseOrdersAppliedVendorCreditsContactCompanyEmployee: - "purchase_orders,applied_vendor_credits,contact,company,employee", - PurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - PurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - PurchaseOrdersAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - PurchaseOrdersAppliedVendorCreditsContactCompanyPaymentTerm: - "purchase_orders,applied_vendor_credits,contact,company,payment_term", - PurchaseOrdersAppliedVendorCreditsContactEmployee: "purchase_orders,applied_vendor_credits,contact,employee", - PurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriod: - "purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - PurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - PurchaseOrdersAppliedVendorCreditsContactEmployeePaymentTerm: - "purchase_orders,applied_vendor_credits,contact,employee,payment_term", - PurchaseOrdersAppliedVendorCreditsContactPaymentTerm: "purchase_orders,applied_vendor_credits,contact,payment_term", - PurchaseOrdersAppliedVendorCreditsEmployee: "purchase_orders,applied_vendor_credits,employee", - PurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriod: - "purchase_orders,applied_vendor_credits,employee,accounting_period", - PurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - PurchaseOrdersAppliedVendorCreditsEmployeePaymentTerm: - "purchase_orders,applied_vendor_credits,employee,payment_term", - PurchaseOrdersAppliedVendorCreditsPaymentTerm: "purchase_orders,applied_vendor_credits,payment_term", - PurchaseOrdersCompany: "purchase_orders,company", - PurchaseOrdersCompanyAccountingPeriod: "purchase_orders,company,accounting_period", - PurchaseOrdersCompanyAccountingPeriodPaymentTerm: "purchase_orders,company,accounting_period,payment_term", - PurchaseOrdersCompanyEmployee: "purchase_orders,company,employee", - PurchaseOrdersCompanyEmployeeAccountingPeriod: "purchase_orders,company,employee,accounting_period", - PurchaseOrdersCompanyEmployeeAccountingPeriodPaymentTerm: - "purchase_orders,company,employee,accounting_period,payment_term", - PurchaseOrdersCompanyEmployeePaymentTerm: "purchase_orders,company,employee,payment_term", - PurchaseOrdersCompanyPaymentTerm: "purchase_orders,company,payment_term", - PurchaseOrdersContact: "purchase_orders,contact", - PurchaseOrdersContactAccountingPeriod: "purchase_orders,contact,accounting_period", - PurchaseOrdersContactAccountingPeriodPaymentTerm: "purchase_orders,contact,accounting_period,payment_term", - PurchaseOrdersContactCompany: "purchase_orders,contact,company", - PurchaseOrdersContactCompanyAccountingPeriod: "purchase_orders,contact,company,accounting_period", - PurchaseOrdersContactCompanyAccountingPeriodPaymentTerm: - "purchase_orders,contact,company,accounting_period,payment_term", - PurchaseOrdersContactCompanyEmployee: "purchase_orders,contact,company,employee", - PurchaseOrdersContactCompanyEmployeeAccountingPeriod: "purchase_orders,contact,company,employee,accounting_period", - PurchaseOrdersContactCompanyEmployeeAccountingPeriodPaymentTerm: - "purchase_orders,contact,company,employee,accounting_period,payment_term", - PurchaseOrdersContactCompanyEmployeePaymentTerm: "purchase_orders,contact,company,employee,payment_term", - PurchaseOrdersContactCompanyPaymentTerm: "purchase_orders,contact,company,payment_term", - PurchaseOrdersContactEmployee: "purchase_orders,contact,employee", - PurchaseOrdersContactEmployeeAccountingPeriod: "purchase_orders,contact,employee,accounting_period", - PurchaseOrdersContactEmployeeAccountingPeriodPaymentTerm: - "purchase_orders,contact,employee,accounting_period,payment_term", - PurchaseOrdersContactEmployeePaymentTerm: "purchase_orders,contact,employee,payment_term", - PurchaseOrdersContactPaymentTerm: "purchase_orders,contact,payment_term", - PurchaseOrdersEmployee: "purchase_orders,employee", - PurchaseOrdersEmployeeAccountingPeriod: "purchase_orders,employee,accounting_period", - PurchaseOrdersEmployeeAccountingPeriodPaymentTerm: "purchase_orders,employee,accounting_period,payment_term", - PurchaseOrdersEmployeePaymentTerm: "purchase_orders,employee,payment_term", - PurchaseOrdersPaymentTerm: "purchase_orders,payment_term", - TrackingCategories: "tracking_categories", - TrackingCategoriesAccountingPeriod: "tracking_categories,accounting_period", - TrackingCategoriesAccountingPeriodPaymentTerm: "tracking_categories,accounting_period,payment_term", - TrackingCategoriesAppliedCreditNotes: "tracking_categories,applied_credit_notes", - TrackingCategoriesAppliedCreditNotesAccountingPeriod: "tracking_categories,applied_credit_notes,accounting_period", - TrackingCategoriesAppliedCreditNotesAccountingPeriodPaymentTerm: - "tracking_categories,applied_credit_notes,accounting_period,payment_term", - TrackingCategoriesAppliedCreditNotesAppliedVendorCredits: - "tracking_categories,applied_credit_notes,applied_vendor_credits", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompany: - "tracking_categories,applied_credit_notes,applied_vendor_credits,company", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "tracking_categories,applied_credit_notes,applied_vendor_credits,company,payment_term", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContact: - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompany: - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,payment_term", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployee: - "tracking_categories,applied_credit_notes,applied_vendor_credits,employee", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "tracking_categories,applied_credit_notes,applied_vendor_credits,employee,payment_term", - TrackingCategoriesAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "tracking_categories,applied_credit_notes,applied_vendor_credits,payment_term", - TrackingCategoriesAppliedCreditNotesCompany: "tracking_categories,applied_credit_notes,company", - TrackingCategoriesAppliedCreditNotesCompanyAccountingPeriod: - "tracking_categories,applied_credit_notes,company,accounting_period", - TrackingCategoriesAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "tracking_categories,applied_credit_notes,company,accounting_period,payment_term", - TrackingCategoriesAppliedCreditNotesCompanyEmployee: "tracking_categories,applied_credit_notes,company,employee", - TrackingCategoriesAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "tracking_categories,applied_credit_notes,company,employee,accounting_period", - TrackingCategoriesAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,applied_credit_notes,company,employee,accounting_period,payment_term", - TrackingCategoriesAppliedCreditNotesCompanyEmployeePaymentTerm: - "tracking_categories,applied_credit_notes,company,employee,payment_term", - TrackingCategoriesAppliedCreditNotesCompanyPaymentTerm: - "tracking_categories,applied_credit_notes,company,payment_term", - TrackingCategoriesAppliedCreditNotesContact: "tracking_categories,applied_credit_notes,contact", - TrackingCategoriesAppliedCreditNotesContactAccountingPeriod: - "tracking_categories,applied_credit_notes,contact,accounting_period", - TrackingCategoriesAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "tracking_categories,applied_credit_notes,contact,accounting_period,payment_term", - TrackingCategoriesAppliedCreditNotesContactCompany: "tracking_categories,applied_credit_notes,contact,company", - TrackingCategoriesAppliedCreditNotesContactCompanyAccountingPeriod: - "tracking_categories,applied_credit_notes,contact,company,accounting_period", - TrackingCategoriesAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "tracking_categories,applied_credit_notes,contact,company,accounting_period,payment_term", - TrackingCategoriesAppliedCreditNotesContactCompanyEmployee: - "tracking_categories,applied_credit_notes,contact,company,employee", - TrackingCategoriesAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "tracking_categories,applied_credit_notes,contact,company,employee,accounting_period", - TrackingCategoriesAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - TrackingCategoriesAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "tracking_categories,applied_credit_notes,contact,company,employee,payment_term", - TrackingCategoriesAppliedCreditNotesContactCompanyPaymentTerm: - "tracking_categories,applied_credit_notes,contact,company,payment_term", - TrackingCategoriesAppliedCreditNotesContactEmployee: "tracking_categories,applied_credit_notes,contact,employee", - TrackingCategoriesAppliedCreditNotesContactEmployeeAccountingPeriod: - "tracking_categories,applied_credit_notes,contact,employee,accounting_period", - TrackingCategoriesAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,applied_credit_notes,contact,employee,accounting_period,payment_term", - TrackingCategoriesAppliedCreditNotesContactEmployeePaymentTerm: - "tracking_categories,applied_credit_notes,contact,employee,payment_term", - TrackingCategoriesAppliedCreditNotesContactPaymentTerm: - "tracking_categories,applied_credit_notes,contact,payment_term", - TrackingCategoriesAppliedCreditNotesEmployee: "tracking_categories,applied_credit_notes,employee", - TrackingCategoriesAppliedCreditNotesEmployeeAccountingPeriod: - "tracking_categories,applied_credit_notes,employee,accounting_period", - TrackingCategoriesAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,applied_credit_notes,employee,accounting_period,payment_term", - TrackingCategoriesAppliedCreditNotesEmployeePaymentTerm: - "tracking_categories,applied_credit_notes,employee,payment_term", - TrackingCategoriesAppliedCreditNotesPaymentTerm: "tracking_categories,applied_credit_notes,payment_term", - TrackingCategoriesAppliedVendorCredits: "tracking_categories,applied_vendor_credits", - TrackingCategoriesAppliedVendorCreditsAccountingPeriod: - "tracking_categories,applied_vendor_credits,accounting_period", - TrackingCategoriesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "tracking_categories,applied_vendor_credits,accounting_period,payment_term", - TrackingCategoriesAppliedVendorCreditsCompany: "tracking_categories,applied_vendor_credits,company", - TrackingCategoriesAppliedVendorCreditsCompanyAccountingPeriod: - "tracking_categories,applied_vendor_credits,company,accounting_period", - TrackingCategoriesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "tracking_categories,applied_vendor_credits,company,accounting_period,payment_term", - TrackingCategoriesAppliedVendorCreditsCompanyEmployee: - "tracking_categories,applied_vendor_credits,company,employee", - TrackingCategoriesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "tracking_categories,applied_vendor_credits,company,employee,accounting_period", - TrackingCategoriesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,applied_vendor_credits,company,employee,accounting_period,payment_term", - TrackingCategoriesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "tracking_categories,applied_vendor_credits,company,employee,payment_term", - TrackingCategoriesAppliedVendorCreditsCompanyPaymentTerm: - "tracking_categories,applied_vendor_credits,company,payment_term", - TrackingCategoriesAppliedVendorCreditsContact: "tracking_categories,applied_vendor_credits,contact", - TrackingCategoriesAppliedVendorCreditsContactAccountingPeriod: - "tracking_categories,applied_vendor_credits,contact,accounting_period", - TrackingCategoriesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "tracking_categories,applied_vendor_credits,contact,accounting_period,payment_term", - TrackingCategoriesAppliedVendorCreditsContactCompany: "tracking_categories,applied_vendor_credits,contact,company", - TrackingCategoriesAppliedVendorCreditsContactCompanyAccountingPeriod: - "tracking_categories,applied_vendor_credits,contact,company,accounting_period", - TrackingCategoriesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "tracking_categories,applied_vendor_credits,contact,company,accounting_period,payment_term", - TrackingCategoriesAppliedVendorCreditsContactCompanyEmployee: - "tracking_categories,applied_vendor_credits,contact,company,employee", - TrackingCategoriesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period", - TrackingCategoriesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - TrackingCategoriesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "tracking_categories,applied_vendor_credits,contact,company,employee,payment_term", - TrackingCategoriesAppliedVendorCreditsContactCompanyPaymentTerm: - "tracking_categories,applied_vendor_credits,contact,company,payment_term", - TrackingCategoriesAppliedVendorCreditsContactEmployee: - "tracking_categories,applied_vendor_credits,contact,employee", - TrackingCategoriesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "tracking_categories,applied_vendor_credits,contact,employee,accounting_period", - TrackingCategoriesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,applied_vendor_credits,contact,employee,accounting_period,payment_term", - TrackingCategoriesAppliedVendorCreditsContactEmployeePaymentTerm: - "tracking_categories,applied_vendor_credits,contact,employee,payment_term", - TrackingCategoriesAppliedVendorCreditsContactPaymentTerm: - "tracking_categories,applied_vendor_credits,contact,payment_term", - TrackingCategoriesAppliedVendorCreditsEmployee: "tracking_categories,applied_vendor_credits,employee", - TrackingCategoriesAppliedVendorCreditsEmployeeAccountingPeriod: - "tracking_categories,applied_vendor_credits,employee,accounting_period", - TrackingCategoriesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,applied_vendor_credits,employee,accounting_period,payment_term", - TrackingCategoriesAppliedVendorCreditsEmployeePaymentTerm: - "tracking_categories,applied_vendor_credits,employee,payment_term", - TrackingCategoriesAppliedVendorCreditsPaymentTerm: "tracking_categories,applied_vendor_credits,payment_term", - TrackingCategoriesCompany: "tracking_categories,company", - TrackingCategoriesCompanyAccountingPeriod: "tracking_categories,company,accounting_period", - TrackingCategoriesCompanyAccountingPeriodPaymentTerm: "tracking_categories,company,accounting_period,payment_term", - TrackingCategoriesCompanyEmployee: "tracking_categories,company,employee", - TrackingCategoriesCompanyEmployeeAccountingPeriod: "tracking_categories,company,employee,accounting_period", - TrackingCategoriesCompanyEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,company,employee,accounting_period,payment_term", - TrackingCategoriesCompanyEmployeePaymentTerm: "tracking_categories,company,employee,payment_term", - TrackingCategoriesCompanyPaymentTerm: "tracking_categories,company,payment_term", - TrackingCategoriesContact: "tracking_categories,contact", - TrackingCategoriesContactAccountingPeriod: "tracking_categories,contact,accounting_period", - TrackingCategoriesContactAccountingPeriodPaymentTerm: "tracking_categories,contact,accounting_period,payment_term", - TrackingCategoriesContactCompany: "tracking_categories,contact,company", - TrackingCategoriesContactCompanyAccountingPeriod: "tracking_categories,contact,company,accounting_period", - TrackingCategoriesContactCompanyAccountingPeriodPaymentTerm: - "tracking_categories,contact,company,accounting_period,payment_term", - TrackingCategoriesContactCompanyEmployee: "tracking_categories,contact,company,employee", - TrackingCategoriesContactCompanyEmployeeAccountingPeriod: - "tracking_categories,contact,company,employee,accounting_period", - TrackingCategoriesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,contact,company,employee,accounting_period,payment_term", - TrackingCategoriesContactCompanyEmployeePaymentTerm: "tracking_categories,contact,company,employee,payment_term", - TrackingCategoriesContactCompanyPaymentTerm: "tracking_categories,contact,company,payment_term", - TrackingCategoriesContactEmployee: "tracking_categories,contact,employee", - TrackingCategoriesContactEmployeeAccountingPeriod: "tracking_categories,contact,employee,accounting_period", - TrackingCategoriesContactEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,contact,employee,accounting_period,payment_term", - TrackingCategoriesContactEmployeePaymentTerm: "tracking_categories,contact,employee,payment_term", - TrackingCategoriesContactPaymentTerm: "tracking_categories,contact,payment_term", - TrackingCategoriesEmployee: "tracking_categories,employee", - TrackingCategoriesEmployeeAccountingPeriod: "tracking_categories,employee,accounting_period", - TrackingCategoriesEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,employee,accounting_period,payment_term", - TrackingCategoriesEmployeePaymentTerm: "tracking_categories,employee,payment_term", - TrackingCategoriesPaymentTerm: "tracking_categories,payment_term", - TrackingCategoriesPurchaseOrders: "tracking_categories,purchase_orders", - TrackingCategoriesPurchaseOrdersAccountingPeriod: "tracking_categories,purchase_orders,accounting_period", - TrackingCategoriesPurchaseOrdersAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotes: "tracking_categories,purchase_orders,applied_credit_notes", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAccountingPeriod: - "tracking_categories,purchase_orders,applied_credit_notes,accounting_period", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCredits: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriod: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompany: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriod: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployee: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyEmployeePaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsCompanyPaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContact: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriod: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompany: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriod: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployee: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactCompanyPaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployee: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriod: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactEmployeePaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsContactPaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployee: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriod: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsEmployeePaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesAppliedVendorCreditsPaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesCompany: - "tracking_categories,purchase_orders,applied_credit_notes,company", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriod: - "tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployee: - "tracking_categories,purchase_orders,applied_credit_notes,company,employee", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriod: - "tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyEmployeePaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,company,employee,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesCompanyPaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,company,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesContact: - "tracking_categories,purchase_orders,applied_credit_notes,contact", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesContactAccountingPeriod: - "tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesContactAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompany: - "tracking_categories,purchase_orders,applied_credit_notes,contact,company", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriod: - "tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployee: - "tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriod: - "tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyEmployeePaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesContactCompanyPaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,contact,company,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployee: - "tracking_categories,purchase_orders,applied_credit_notes,contact,employee", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriod: - "tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesContactEmployeePaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,contact,employee,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesContactPaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,contact,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployee: - "tracking_categories,purchase_orders,applied_credit_notes,employee", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriod: - "tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesEmployeePaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,employee,payment_term", - TrackingCategoriesPurchaseOrdersAppliedCreditNotesPaymentTerm: - "tracking_categories,purchase_orders,applied_credit_notes,payment_term", - TrackingCategoriesPurchaseOrdersAppliedVendorCredits: "tracking_categories,purchase_orders,applied_vendor_credits", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsAccountingPeriod: - "tracking_categories,purchase_orders,applied_vendor_credits,accounting_period", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompany: - "tracking_categories,purchase_orders,applied_vendor_credits,company", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriod: - "tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployee: - "tracking_categories,purchase_orders,applied_vendor_credits,company,employee", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriod: - "tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyEmployeePaymentTerm: - "tracking_categories,purchase_orders,applied_vendor_credits,company,employee,payment_term", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsCompanyPaymentTerm: - "tracking_categories,purchase_orders,applied_vendor_credits,company,payment_term", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsContact: - "tracking_categories,purchase_orders,applied_vendor_credits,contact", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactAccountingPeriod: - "tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompany: - "tracking_categories,purchase_orders,applied_vendor_credits,contact,company", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriod: - "tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployee: - "tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriod: - "tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyEmployeePaymentTerm: - "tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactCompanyPaymentTerm: - "tracking_categories,purchase_orders,applied_vendor_credits,contact,company,payment_term", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployee: - "tracking_categories,purchase_orders,applied_vendor_credits,contact,employee", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriod: - "tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactEmployeePaymentTerm: - "tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsContactPaymentTerm: - "tracking_categories,purchase_orders,applied_vendor_credits,contact,payment_term", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployee: - "tracking_categories,purchase_orders,applied_vendor_credits,employee", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriod: - "tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsEmployeePaymentTerm: - "tracking_categories,purchase_orders,applied_vendor_credits,employee,payment_term", - TrackingCategoriesPurchaseOrdersAppliedVendorCreditsPaymentTerm: - "tracking_categories,purchase_orders,applied_vendor_credits,payment_term", - TrackingCategoriesPurchaseOrdersCompany: "tracking_categories,purchase_orders,company", - TrackingCategoriesPurchaseOrdersCompanyAccountingPeriod: - "tracking_categories,purchase_orders,company,accounting_period", - TrackingCategoriesPurchaseOrdersCompanyAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,company,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersCompanyEmployee: "tracking_categories,purchase_orders,company,employee", - TrackingCategoriesPurchaseOrdersCompanyEmployeeAccountingPeriod: - "tracking_categories,purchase_orders,company,employee,accounting_period", - TrackingCategoriesPurchaseOrdersCompanyEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,company,employee,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersCompanyEmployeePaymentTerm: - "tracking_categories,purchase_orders,company,employee,payment_term", - TrackingCategoriesPurchaseOrdersCompanyPaymentTerm: "tracking_categories,purchase_orders,company,payment_term", - TrackingCategoriesPurchaseOrdersContact: "tracking_categories,purchase_orders,contact", - TrackingCategoriesPurchaseOrdersContactAccountingPeriod: - "tracking_categories,purchase_orders,contact,accounting_period", - TrackingCategoriesPurchaseOrdersContactAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,contact,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersContactCompany: "tracking_categories,purchase_orders,contact,company", - TrackingCategoriesPurchaseOrdersContactCompanyAccountingPeriod: - "tracking_categories,purchase_orders,contact,company,accounting_period", - TrackingCategoriesPurchaseOrdersContactCompanyAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,contact,company,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersContactCompanyEmployee: - "tracking_categories,purchase_orders,contact,company,employee", - TrackingCategoriesPurchaseOrdersContactCompanyEmployeeAccountingPeriod: - "tracking_categories,purchase_orders,contact,company,employee,accounting_period", - TrackingCategoriesPurchaseOrdersContactCompanyEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,contact,company,employee,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersContactCompanyEmployeePaymentTerm: - "tracking_categories,purchase_orders,contact,company,employee,payment_term", - TrackingCategoriesPurchaseOrdersContactCompanyPaymentTerm: - "tracking_categories,purchase_orders,contact,company,payment_term", - TrackingCategoriesPurchaseOrdersContactEmployee: "tracking_categories,purchase_orders,contact,employee", - TrackingCategoriesPurchaseOrdersContactEmployeeAccountingPeriod: - "tracking_categories,purchase_orders,contact,employee,accounting_period", - TrackingCategoriesPurchaseOrdersContactEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,contact,employee,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersContactEmployeePaymentTerm: - "tracking_categories,purchase_orders,contact,employee,payment_term", - TrackingCategoriesPurchaseOrdersContactPaymentTerm: "tracking_categories,purchase_orders,contact,payment_term", - TrackingCategoriesPurchaseOrdersEmployee: "tracking_categories,purchase_orders,employee", - TrackingCategoriesPurchaseOrdersEmployeeAccountingPeriod: - "tracking_categories,purchase_orders,employee,accounting_period", - TrackingCategoriesPurchaseOrdersEmployeeAccountingPeriodPaymentTerm: - "tracking_categories,purchase_orders,employee,accounting_period,payment_term", - TrackingCategoriesPurchaseOrdersEmployeePaymentTerm: "tracking_categories,purchase_orders,employee,payment_term", - TrackingCategoriesPurchaseOrdersPaymentTerm: "tracking_categories,purchase_orders,payment_term", -} as const; -export type InvoicesRetrieveRequestExpand = - (typeof InvoicesRetrieveRequestExpand)[keyof typeof InvoicesRetrieveRequestExpand]; diff --git a/src/api/resources/accounting/resources/invoices/types/index.ts b/src/api/resources/accounting/resources/invoices/types/index.ts deleted file mode 100644 index 6066a0bb6..000000000 --- a/src/api/resources/accounting/resources/invoices/types/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -export * from "./InvoicesListRequestExpand"; -export * from "./InvoicesListRequestStatus"; -export * from "./InvoicesListRequestType"; -export * from "./InvoicesRetrieveRequestExpand"; diff --git a/src/api/resources/accounting/resources/issues/client/Client.ts b/src/api/resources/accounting/resources/issues/client/Client.ts deleted file mode 100644 index 5ff77e394..000000000 --- a/src/api/resources/accounting/resources/issues/client/Client.ts +++ /dev/null @@ -1,211 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../BaseClient"; -import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../../../BaseClient"; -import * as core from "../../../../../../core"; -import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../../../core/headers"; -import * as environments from "../../../../../../environments"; -import { handleNonStatusCodeError } from "../../../../../../errors/handleNonStatusCodeError"; -import * as errors from "../../../../../../errors/index"; -import * as serializers from "../../../../../../serialization/index"; -import type * as Merge from "../../../../../index"; - -export declare namespace IssuesClient { - export type Options = BaseClientOptions; - - export interface RequestOptions extends BaseRequestOptions {} -} - -export class IssuesClient { - protected readonly _options: NormalizedClientOptionsWithAuth; - - constructor(options: IssuesClient.Options) { - this._options = normalizeClientOptionsWithAuth(options); - } - - /** - * Gets all issues for Organization. - * - * @param {Merge.accounting.IssuesListRequest} request - * @param {IssuesClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.issues.list({ - * accountToken: "account_token", - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * endDate: "end_date", - * endUserOrganizationName: "end_user_organization_name", - * firstIncidentTimeAfter: new Date("2024-01-15T09:30:00.000Z"), - * firstIncidentTimeBefore: new Date("2024-01-15T09:30:00.000Z"), - * includeMuted: "include_muted", - * integrationName: "integration_name", - * lastIncidentTimeAfter: new Date("2024-01-15T09:30:00.000Z"), - * lastIncidentTimeBefore: new Date("2024-01-15T09:30:00.000Z"), - * linkedAccountId: "linked_account_id", - * pageSize: 1, - * startDate: "start_date", - * status: "ONGOING" - * }) - */ - public list( - request: Merge.accounting.IssuesListRequest = {}, - requestOptions?: IssuesClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__list(request, requestOptions)); - } - - private async __list( - request: Merge.accounting.IssuesListRequest = {}, - requestOptions?: IssuesClient.RequestOptions, - ): Promise> { - const { - accountToken, - cursor, - endDate, - endUserOrganizationName, - firstIncidentTimeAfter, - firstIncidentTimeBefore, - includeMuted, - integrationName, - lastIncidentTimeAfter, - lastIncidentTimeBefore, - linkedAccountId, - pageSize, - startDate, - status, - } = request; - const _queryParams: Record = { - account_token: accountToken, - cursor, - end_date: endDate, - end_user_organization_name: endUserOrganizationName, - first_incident_time_after: firstIncidentTimeAfter?.toISOString(), - first_incident_time_before: firstIncidentTimeBefore?.toISOString(), - include_muted: includeMuted, - integration_name: integrationName, - last_incident_time_after: lastIncidentTimeAfter?.toISOString(), - last_incident_time_before: lastIncidentTimeBefore?.toISOString(), - linked_account_id: linkedAccountId, - page_size: pageSize, - start_date: startDate, - status: - status != null - ? serializers.accounting.IssuesListRequestStatus.jsonOrThrow(status, { - unrecognizedObjectKeys: "strip", - }) - : undefined, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/issues", - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaginatedIssueList.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError(_response.error, _response.rawResponse, "GET", "/accounting/v1/issues"); - } - - /** - * Get a specific issue. - * - * @param {string} id - * @param {IssuesClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.issues.retrieve("id") - */ - public retrieve( - id: string, - requestOptions?: IssuesClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__retrieve(id, requestOptions)); - } - - private async __retrieve( - id: string, - requestOptions?: IssuesClient.RequestOptions, - ): Promise> { - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - `accounting/v1/issues/${core.url.encodePathParam(id)}`, - ), - method: "GET", - headers: _headers, - queryParameters: requestOptions?.queryParams, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.Issue.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError(_response.error, _response.rawResponse, "GET", "/accounting/v1/issues/{id}"); - } -} diff --git a/src/api/resources/accounting/resources/issues/client/index.ts b/src/api/resources/accounting/resources/issues/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/api/resources/accounting/resources/issues/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/api/resources/accounting/resources/issues/client/requests/IssuesListRequest.ts b/src/api/resources/accounting/resources/issues/client/requests/IssuesListRequest.ts deleted file mode 100644 index 1365131c7..000000000 --- a/src/api/resources/accounting/resources/issues/client/requests/IssuesListRequest.ts +++ /dev/null @@ -1,55 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * accountToken: "account_token", - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * endDate: "end_date", - * endUserOrganizationName: "end_user_organization_name", - * firstIncidentTimeAfter: new Date("2024-01-15T09:30:00.000Z"), - * firstIncidentTimeBefore: new Date("2024-01-15T09:30:00.000Z"), - * includeMuted: "include_muted", - * integrationName: "integration_name", - * lastIncidentTimeAfter: new Date("2024-01-15T09:30:00.000Z"), - * lastIncidentTimeBefore: new Date("2024-01-15T09:30:00.000Z"), - * linkedAccountId: "linked_account_id", - * pageSize: 1, - * startDate: "start_date", - * status: "ONGOING" - * } - */ -export interface IssuesListRequest { - accountToken?: string; - /** The pagination cursor value. */ - cursor?: string; - /** If included, will only include issues whose most recent action occurred before this time */ - endDate?: string; - endUserOrganizationName?: string; - /** If provided, will only return issues whose first incident time was after this datetime. */ - firstIncidentTimeAfter?: Date; - /** If provided, will only return issues whose first incident time was before this datetime. */ - firstIncidentTimeBefore?: Date; - /** If true, will include muted issues */ - includeMuted?: string; - integrationName?: string; - /** If provided, will only return issues whose last incident time was after this datetime. */ - lastIncidentTimeAfter?: Date; - /** If provided, will only return issues whose last incident time was before this datetime. */ - lastIncidentTimeBefore?: Date; - /** If provided, will only include issues pertaining to the linked account passed in. */ - linkedAccountId?: string; - /** Number of results to return per page. */ - pageSize?: number; - /** If included, will only include issues whose most recent action occurred after this time */ - startDate?: string; - /** - * Status of the issue. Options: ('ONGOING', 'RESOLVED') - * - * * `ONGOING` - ONGOING - * * `RESOLVED` - RESOLVED - */ - status?: Merge.accounting.IssuesListRequestStatus; -} diff --git a/src/api/resources/accounting/resources/issues/client/requests/index.ts b/src/api/resources/accounting/resources/issues/client/requests/index.ts deleted file mode 100644 index 169c5eb5a..000000000 --- a/src/api/resources/accounting/resources/issues/client/requests/index.ts +++ /dev/null @@ -1 +0,0 @@ -export type { IssuesListRequest } from "./IssuesListRequest"; diff --git a/src/api/resources/accounting/resources/issues/exports.ts b/src/api/resources/accounting/resources/issues/exports.ts deleted file mode 100644 index 85da34cb7..000000000 --- a/src/api/resources/accounting/resources/issues/exports.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export { IssuesClient } from "./client/Client"; -export * from "./client/index"; diff --git a/src/api/resources/accounting/resources/issues/index.ts b/src/api/resources/accounting/resources/issues/index.ts deleted file mode 100644 index d2ec2302c..000000000 --- a/src/api/resources/accounting/resources/issues/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./client"; -export * from "./types"; diff --git a/src/api/resources/accounting/resources/issues/types/IssuesListRequestStatus.ts b/src/api/resources/accounting/resources/issues/types/IssuesListRequestStatus.ts deleted file mode 100644 index 6429e7e23..000000000 --- a/src/api/resources/accounting/resources/issues/types/IssuesListRequestStatus.ts +++ /dev/null @@ -1,7 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export const IssuesListRequestStatus = { - Ongoing: "ONGOING", - Resolved: "RESOLVED", -} as const; -export type IssuesListRequestStatus = (typeof IssuesListRequestStatus)[keyof typeof IssuesListRequestStatus]; diff --git a/src/api/resources/accounting/resources/issues/types/index.ts b/src/api/resources/accounting/resources/issues/types/index.ts deleted file mode 100644 index 554cdf48c..000000000 --- a/src/api/resources/accounting/resources/issues/types/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./IssuesListRequestStatus"; diff --git a/src/api/resources/accounting/resources/items/client/Client.ts b/src/api/resources/accounting/resources/items/client/Client.ts deleted file mode 100644 index a19022648..000000000 --- a/src/api/resources/accounting/resources/items/client/Client.ts +++ /dev/null @@ -1,537 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../BaseClient"; -import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../../../BaseClient"; -import * as core from "../../../../../../core"; -import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../../../core/headers"; -import * as environments from "../../../../../../environments"; -import { handleNonStatusCodeError } from "../../../../../../errors/handleNonStatusCodeError"; -import * as errors from "../../../../../../errors/index"; -import * as serializers from "../../../../../../serialization/index"; -import type * as Merge from "../../../../../index"; - -export declare namespace ItemsClient { - export type Options = BaseClientOptions; - - export interface RequestOptions extends BaseRequestOptions {} -} - -export class ItemsClient { - protected readonly _options: NormalizedClientOptionsWithAuth; - - constructor(options: ItemsClient.Options) { - this._options = normalizeClientOptionsWithAuth(options); - } - - /** - * Returns a list of `Item` objects. - * - * @param {Merge.accounting.ItemsListRequest} request - * @param {ItemsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.items.list({ - * companyId: "company_id", - * createdAfter: new Date("2024-01-15T09:30:00.000Z"), - * createdBefore: new Date("2024-01-15T09:30:00.000Z"), - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * expand: "company", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - * modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - * pageSize: 1, - * remoteFields: "status", - * remoteId: "remote_id", - * showEnumOrigins: "status" - * }) - */ - public list( - request: Merge.accounting.ItemsListRequest = {}, - requestOptions?: ItemsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__list(request, requestOptions)); - } - - private async __list( - request: Merge.accounting.ItemsListRequest = {}, - requestOptions?: ItemsClient.RequestOptions, - ): Promise> { - const { - companyId, - createdAfter, - createdBefore, - cursor, - expand, - includeDeletedData, - includeRemoteData, - includeShellData, - modifiedAfter, - modifiedBefore, - pageSize, - remoteFields, - remoteId, - showEnumOrigins, - } = request; - const _queryParams: Record = { - company_id: companyId, - created_after: createdAfter?.toISOString(), - created_before: createdBefore?.toISOString(), - cursor, - expand: - expand != null - ? serializers.accounting.ItemsListRequestExpand.jsonOrThrow(expand, { - unrecognizedObjectKeys: "strip", - }) - : undefined, - include_deleted_data: includeDeletedData, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - modified_after: modifiedAfter?.toISOString(), - modified_before: modifiedBefore?.toISOString(), - page_size: pageSize, - remote_fields: remoteFields != null ? remoteFields : undefined, - remote_id: remoteId, - show_enum_origins: showEnumOrigins != null ? showEnumOrigins : undefined, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/items", - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaginatedItemList.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError(_response.error, _response.rawResponse, "GET", "/accounting/v1/items"); - } - - /** - * Creates an `Item` object with the given values. - * - * @param {Merge.accounting.ItemEndpointRequest} request - * @param {ItemsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.items.create({ - * isDebugMode: true, - * runAsync: true, - * model: {} - * }) - */ - public create( - request: Merge.accounting.ItemEndpointRequest, - requestOptions?: ItemsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__create(request, requestOptions)); - } - - private async __create( - request: Merge.accounting.ItemEndpointRequest, - requestOptions?: ItemsClient.RequestOptions, - ): Promise> { - const { isDebugMode, runAsync, ..._body } = request; - const _queryParams: Record = { - is_debug_mode: isDebugMode, - run_async: runAsync, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/items", - ), - method: "POST", - headers: _headers, - contentType: "application/json", - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - requestType: "json", - body: serializers.accounting.ItemEndpointRequest.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }), - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.ItemResponse.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError(_response.error, _response.rawResponse, "POST", "/accounting/v1/items"); - } - - /** - * Returns an `Item` object with the given `id`. - * - * @param {string} id - * @param {Merge.accounting.ItemsRetrieveRequest} request - * @param {ItemsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.items.retrieve("id", { - * expand: "company", - * includeRemoteData: true, - * includeShellData: true, - * remoteFields: "status", - * showEnumOrigins: "status" - * }) - */ - public retrieve( - id: string, - request: Merge.accounting.ItemsRetrieveRequest = {}, - requestOptions?: ItemsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__retrieve(id, request, requestOptions)); - } - - private async __retrieve( - id: string, - request: Merge.accounting.ItemsRetrieveRequest = {}, - requestOptions?: ItemsClient.RequestOptions, - ): Promise> { - const { expand, includeRemoteData, includeShellData, remoteFields, showEnumOrigins } = request; - const _queryParams: Record = { - expand: - expand != null - ? serializers.accounting.ItemsRetrieveRequestExpand.jsonOrThrow(expand, { - unrecognizedObjectKeys: "strip", - }) - : undefined, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - remote_fields: remoteFields != null ? remoteFields : undefined, - show_enum_origins: showEnumOrigins != null ? showEnumOrigins : undefined, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - `accounting/v1/items/${core.url.encodePathParam(id)}`, - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.Item.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError(_response.error, _response.rawResponse, "GET", "/accounting/v1/items/{id}"); - } - - /** - * Updates an `Item` object with the given `id`. - * - * @param {string} id - * @param {Merge.accounting.PatchedItemEndpointRequest} request - * @param {ItemsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.items.partialUpdate("id", { - * isDebugMode: true, - * runAsync: true, - * model: {} - * }) - */ - public partialUpdate( - id: string, - request: Merge.accounting.PatchedItemEndpointRequest, - requestOptions?: ItemsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__partialUpdate(id, request, requestOptions)); - } - - private async __partialUpdate( - id: string, - request: Merge.accounting.PatchedItemEndpointRequest, - requestOptions?: ItemsClient.RequestOptions, - ): Promise> { - const { isDebugMode, runAsync, ..._body } = request; - const _queryParams: Record = { - is_debug_mode: isDebugMode, - run_async: runAsync, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - `accounting/v1/items/${core.url.encodePathParam(id)}`, - ), - method: "PATCH", - headers: _headers, - contentType: "application/json", - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - requestType: "json", - body: serializers.accounting.PatchedItemEndpointRequest.jsonOrThrow(_body, { - unrecognizedObjectKeys: "strip", - }), - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.ItemResponse.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError(_response.error, _response.rawResponse, "PATCH", "/accounting/v1/items/{id}"); - } - - /** - * Returns metadata for `Item` PATCHs. - * - * @param {string} id - * @param {ItemsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.items.metaPatchRetrieve("id") - */ - public metaPatchRetrieve( - id: string, - requestOptions?: ItemsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__metaPatchRetrieve(id, requestOptions)); - } - - private async __metaPatchRetrieve( - id: string, - requestOptions?: ItemsClient.RequestOptions, - ): Promise> { - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - `accounting/v1/items/meta/patch/${core.url.encodePathParam(id)}`, - ), - method: "GET", - headers: _headers, - queryParameters: requestOptions?.queryParams, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.MetaResponse.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/items/meta/patch/{id}", - ); - } - - /** - * Returns metadata for `Item` POSTs. - * - * @param {ItemsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.items.metaPostRetrieve() - */ - public metaPostRetrieve( - requestOptions?: ItemsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__metaPostRetrieve(requestOptions)); - } - - private async __metaPostRetrieve( - requestOptions?: ItemsClient.RequestOptions, - ): Promise> { - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/items/meta/post", - ), - method: "GET", - headers: _headers, - queryParameters: requestOptions?.queryParams, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.MetaResponse.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/items/meta/post", - ); - } -} diff --git a/src/api/resources/accounting/resources/items/client/index.ts b/src/api/resources/accounting/resources/items/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/api/resources/accounting/resources/items/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/api/resources/accounting/resources/items/client/requests/ItemEndpointRequest.ts b/src/api/resources/accounting/resources/items/client/requests/ItemEndpointRequest.ts deleted file mode 100644 index 81b3857cc..000000000 --- a/src/api/resources/accounting/resources/items/client/requests/ItemEndpointRequest.ts +++ /dev/null @@ -1,19 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * isDebugMode: true, - * runAsync: true, - * model: {} - * } - */ -export interface ItemEndpointRequest { - /** Whether to include debug fields (such as log file links) in the response. */ - isDebugMode?: boolean; - /** Whether or not third-party updates should be run asynchronously. */ - runAsync?: boolean; - model: Merge.accounting.ItemRequestRequest; -} diff --git a/src/api/resources/accounting/resources/items/client/requests/ItemsListRequest.ts b/src/api/resources/accounting/resources/items/client/requests/ItemsListRequest.ts deleted file mode 100644 index d9e0451f7..000000000 --- a/src/api/resources/accounting/resources/items/client/requests/ItemsListRequest.ts +++ /dev/null @@ -1,53 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * companyId: "company_id", - * createdAfter: new Date("2024-01-15T09:30:00.000Z"), - * createdBefore: new Date("2024-01-15T09:30:00.000Z"), - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * expand: "company", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - * modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - * pageSize: 1, - * remoteFields: "status", - * remoteId: "remote_id", - * showEnumOrigins: "status" - * } - */ -export interface ItemsListRequest { - /** If provided, will only return items for this company. */ - companyId?: string; - /** If provided, will only return objects created after this datetime. */ - createdAfter?: Date; - /** If provided, will only return objects created before this datetime. */ - createdBefore?: Date; - /** The pagination cursor value. */ - cursor?: string; - /** Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. */ - expand?: Merge.accounting.ItemsListRequestExpand; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - includeDeletedData?: boolean; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** If provided, only objects synced by Merge after this date time will be returned. */ - modifiedAfter?: Date; - /** If provided, only objects synced by Merge before this date time will be returned. */ - modifiedBefore?: Date; - /** Number of results to return per page. */ - pageSize?: number; - /** Deprecated. Use show_enum_origins. */ - remoteFields?: "status"; - /** The API provider's ID for the given object. */ - remoteId?: string; - /** A comma separated list of enum field names for which you'd like the original values to be returned, instead of Merge's normalized enum values. [Learn more](https://help.merge.dev/en/articles/8950958-show_enum_origins-query-parameter) */ - showEnumOrigins?: "status"; -} diff --git a/src/api/resources/accounting/resources/items/client/requests/ItemsRetrieveRequest.ts b/src/api/resources/accounting/resources/items/client/requests/ItemsRetrieveRequest.ts deleted file mode 100644 index a675f786f..000000000 --- a/src/api/resources/accounting/resources/items/client/requests/ItemsRetrieveRequest.ts +++ /dev/null @@ -1,26 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * expand: "company", - * includeRemoteData: true, - * includeShellData: true, - * remoteFields: "status", - * showEnumOrigins: "status" - * } - */ -export interface ItemsRetrieveRequest { - /** Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. */ - expand?: Merge.accounting.ItemsRetrieveRequestExpand; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** Deprecated. Use show_enum_origins. */ - remoteFields?: "status"; - /** A comma separated list of enum field names for which you'd like the original values to be returned, instead of Merge's normalized enum values. [Learn more](https://help.merge.dev/en/articles/8950958-show_enum_origins-query-parameter) */ - showEnumOrigins?: "status"; -} diff --git a/src/api/resources/accounting/resources/items/client/requests/PatchedItemEndpointRequest.ts b/src/api/resources/accounting/resources/items/client/requests/PatchedItemEndpointRequest.ts deleted file mode 100644 index 9d7d5e233..000000000 --- a/src/api/resources/accounting/resources/items/client/requests/PatchedItemEndpointRequest.ts +++ /dev/null @@ -1,19 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * isDebugMode: true, - * runAsync: true, - * model: {} - * } - */ -export interface PatchedItemEndpointRequest { - /** Whether to include debug fields (such as log file links) in the response. */ - isDebugMode?: boolean; - /** Whether or not third-party updates should be run asynchronously. */ - runAsync?: boolean; - model: Merge.accounting.PatchedItemRequestRequest; -} diff --git a/src/api/resources/accounting/resources/items/client/requests/index.ts b/src/api/resources/accounting/resources/items/client/requests/index.ts deleted file mode 100644 index ee1c37b7c..000000000 --- a/src/api/resources/accounting/resources/items/client/requests/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -export type { ItemEndpointRequest } from "./ItemEndpointRequest"; -export type { ItemsListRequest } from "./ItemsListRequest"; -export type { ItemsRetrieveRequest } from "./ItemsRetrieveRequest"; -export type { PatchedItemEndpointRequest } from "./PatchedItemEndpointRequest"; diff --git a/src/api/resources/accounting/resources/items/exports.ts b/src/api/resources/accounting/resources/items/exports.ts deleted file mode 100644 index abdbe0fcf..000000000 --- a/src/api/resources/accounting/resources/items/exports.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export { ItemsClient } from "./client/Client"; -export * from "./client/index"; diff --git a/src/api/resources/accounting/resources/items/index.ts b/src/api/resources/accounting/resources/items/index.ts deleted file mode 100644 index d2ec2302c..000000000 --- a/src/api/resources/accounting/resources/items/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./client"; -export * from "./types"; diff --git a/src/api/resources/accounting/resources/items/types/ItemsListRequestExpand.ts b/src/api/resources/accounting/resources/items/types/ItemsListRequestExpand.ts deleted file mode 100644 index 1fe87cca8..000000000 --- a/src/api/resources/accounting/resources/items/types/ItemsListRequestExpand.ts +++ /dev/null @@ -1,38 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export const ItemsListRequestExpand = { - Company: "company", - CompanyPurchaseTaxRate: "company,purchase_tax_rate", - CompanySalesTaxRate: "company,sales_tax_rate", - CompanySalesTaxRatePurchaseTaxRate: "company,sales_tax_rate,purchase_tax_rate", - PurchaseAccount: "purchase_account", - PurchaseAccountCompany: "purchase_account,company", - PurchaseAccountCompanyPurchaseTaxRate: "purchase_account,company,purchase_tax_rate", - PurchaseAccountCompanySalesTaxRate: "purchase_account,company,sales_tax_rate", - PurchaseAccountCompanySalesTaxRatePurchaseTaxRate: "purchase_account,company,sales_tax_rate,purchase_tax_rate", - PurchaseAccountPurchaseTaxRate: "purchase_account,purchase_tax_rate", - PurchaseAccountSalesAccount: "purchase_account,sales_account", - PurchaseAccountSalesAccountCompany: "purchase_account,sales_account,company", - PurchaseAccountSalesAccountCompanyPurchaseTaxRate: "purchase_account,sales_account,company,purchase_tax_rate", - PurchaseAccountSalesAccountCompanySalesTaxRate: "purchase_account,sales_account,company,sales_tax_rate", - PurchaseAccountSalesAccountCompanySalesTaxRatePurchaseTaxRate: - "purchase_account,sales_account,company,sales_tax_rate,purchase_tax_rate", - PurchaseAccountSalesAccountPurchaseTaxRate: "purchase_account,sales_account,purchase_tax_rate", - PurchaseAccountSalesAccountSalesTaxRate: "purchase_account,sales_account,sales_tax_rate", - PurchaseAccountSalesAccountSalesTaxRatePurchaseTaxRate: - "purchase_account,sales_account,sales_tax_rate,purchase_tax_rate", - PurchaseAccountSalesTaxRate: "purchase_account,sales_tax_rate", - PurchaseAccountSalesTaxRatePurchaseTaxRate: "purchase_account,sales_tax_rate,purchase_tax_rate", - PurchaseTaxRate: "purchase_tax_rate", - SalesAccount: "sales_account", - SalesAccountCompany: "sales_account,company", - SalesAccountCompanyPurchaseTaxRate: "sales_account,company,purchase_tax_rate", - SalesAccountCompanySalesTaxRate: "sales_account,company,sales_tax_rate", - SalesAccountCompanySalesTaxRatePurchaseTaxRate: "sales_account,company,sales_tax_rate,purchase_tax_rate", - SalesAccountPurchaseTaxRate: "sales_account,purchase_tax_rate", - SalesAccountSalesTaxRate: "sales_account,sales_tax_rate", - SalesAccountSalesTaxRatePurchaseTaxRate: "sales_account,sales_tax_rate,purchase_tax_rate", - SalesTaxRate: "sales_tax_rate", - SalesTaxRatePurchaseTaxRate: "sales_tax_rate,purchase_tax_rate", -} as const; -export type ItemsListRequestExpand = (typeof ItemsListRequestExpand)[keyof typeof ItemsListRequestExpand]; diff --git a/src/api/resources/accounting/resources/items/types/ItemsRetrieveRequestExpand.ts b/src/api/resources/accounting/resources/items/types/ItemsRetrieveRequestExpand.ts deleted file mode 100644 index 916602479..000000000 --- a/src/api/resources/accounting/resources/items/types/ItemsRetrieveRequestExpand.ts +++ /dev/null @@ -1,38 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export const ItemsRetrieveRequestExpand = { - Company: "company", - CompanyPurchaseTaxRate: "company,purchase_tax_rate", - CompanySalesTaxRate: "company,sales_tax_rate", - CompanySalesTaxRatePurchaseTaxRate: "company,sales_tax_rate,purchase_tax_rate", - PurchaseAccount: "purchase_account", - PurchaseAccountCompany: "purchase_account,company", - PurchaseAccountCompanyPurchaseTaxRate: "purchase_account,company,purchase_tax_rate", - PurchaseAccountCompanySalesTaxRate: "purchase_account,company,sales_tax_rate", - PurchaseAccountCompanySalesTaxRatePurchaseTaxRate: "purchase_account,company,sales_tax_rate,purchase_tax_rate", - PurchaseAccountPurchaseTaxRate: "purchase_account,purchase_tax_rate", - PurchaseAccountSalesAccount: "purchase_account,sales_account", - PurchaseAccountSalesAccountCompany: "purchase_account,sales_account,company", - PurchaseAccountSalesAccountCompanyPurchaseTaxRate: "purchase_account,sales_account,company,purchase_tax_rate", - PurchaseAccountSalesAccountCompanySalesTaxRate: "purchase_account,sales_account,company,sales_tax_rate", - PurchaseAccountSalesAccountCompanySalesTaxRatePurchaseTaxRate: - "purchase_account,sales_account,company,sales_tax_rate,purchase_tax_rate", - PurchaseAccountSalesAccountPurchaseTaxRate: "purchase_account,sales_account,purchase_tax_rate", - PurchaseAccountSalesAccountSalesTaxRate: "purchase_account,sales_account,sales_tax_rate", - PurchaseAccountSalesAccountSalesTaxRatePurchaseTaxRate: - "purchase_account,sales_account,sales_tax_rate,purchase_tax_rate", - PurchaseAccountSalesTaxRate: "purchase_account,sales_tax_rate", - PurchaseAccountSalesTaxRatePurchaseTaxRate: "purchase_account,sales_tax_rate,purchase_tax_rate", - PurchaseTaxRate: "purchase_tax_rate", - SalesAccount: "sales_account", - SalesAccountCompany: "sales_account,company", - SalesAccountCompanyPurchaseTaxRate: "sales_account,company,purchase_tax_rate", - SalesAccountCompanySalesTaxRate: "sales_account,company,sales_tax_rate", - SalesAccountCompanySalesTaxRatePurchaseTaxRate: "sales_account,company,sales_tax_rate,purchase_tax_rate", - SalesAccountPurchaseTaxRate: "sales_account,purchase_tax_rate", - SalesAccountSalesTaxRate: "sales_account,sales_tax_rate", - SalesAccountSalesTaxRatePurchaseTaxRate: "sales_account,sales_tax_rate,purchase_tax_rate", - SalesTaxRate: "sales_tax_rate", - SalesTaxRatePurchaseTaxRate: "sales_tax_rate,purchase_tax_rate", -} as const; -export type ItemsRetrieveRequestExpand = (typeof ItemsRetrieveRequestExpand)[keyof typeof ItemsRetrieveRequestExpand]; diff --git a/src/api/resources/accounting/resources/items/types/index.ts b/src/api/resources/accounting/resources/items/types/index.ts deleted file mode 100644 index 2d4c475ae..000000000 --- a/src/api/resources/accounting/resources/items/types/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./ItemsListRequestExpand"; -export * from "./ItemsRetrieveRequestExpand"; diff --git a/src/api/resources/accounting/resources/journalEntries/client/Client.ts b/src/api/resources/accounting/resources/journalEntries/client/Client.ts deleted file mode 100644 index abea0e10b..000000000 --- a/src/api/resources/accounting/resources/journalEntries/client/Client.ts +++ /dev/null @@ -1,595 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../BaseClient"; -import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../../../BaseClient"; -import * as core from "../../../../../../core"; -import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../../../core/headers"; -import * as environments from "../../../../../../environments"; -import { handleNonStatusCodeError } from "../../../../../../errors/handleNonStatusCodeError"; -import * as errors from "../../../../../../errors/index"; -import * as serializers from "../../../../../../serialization/index"; -import type * as Merge from "../../../../../index"; - -export declare namespace JournalEntriesClient { - export type Options = BaseClientOptions; - - export interface RequestOptions extends BaseRequestOptions {} -} - -export class JournalEntriesClient { - protected readonly _options: NormalizedClientOptionsWithAuth; - - constructor(options: JournalEntriesClient.Options) { - this._options = normalizeClientOptionsWithAuth(options); - } - - /** - * Returns a list of `JournalEntry` objects. - * - * @param {Merge.accounting.JournalEntriesListRequest} request - * @param {JournalEntriesClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.journalEntries.list({ - * companyId: "company_id", - * createdAfter: new Date("2024-01-15T09:30:00.000Z"), - * createdBefore: new Date("2024-01-15T09:30:00.000Z"), - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * expand: "accounting_period", - * includeDeletedData: true, - * includeRemoteData: true, - * includeRemoteFields: true, - * includeShellData: true, - * modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - * modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - * pageSize: 1, - * remoteId: "remote_id", - * transactionDateAfter: new Date("2024-01-15T09:30:00.000Z"), - * transactionDateBefore: new Date("2024-01-15T09:30:00.000Z") - * }) - */ - public list( - request: Merge.accounting.JournalEntriesListRequest = {}, - requestOptions?: JournalEntriesClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__list(request, requestOptions)); - } - - private async __list( - request: Merge.accounting.JournalEntriesListRequest = {}, - requestOptions?: JournalEntriesClient.RequestOptions, - ): Promise> { - const { - companyId, - createdAfter, - createdBefore, - cursor, - expand, - includeDeletedData, - includeRemoteData, - includeRemoteFields, - includeShellData, - modifiedAfter, - modifiedBefore, - pageSize, - remoteId, - transactionDateAfter, - transactionDateBefore, - } = request; - const _queryParams: Record = { - company_id: companyId, - created_after: createdAfter?.toISOString(), - created_before: createdBefore?.toISOString(), - cursor, - expand: - expand != null - ? serializers.accounting.JournalEntriesListRequestExpand.jsonOrThrow(expand, { - unrecognizedObjectKeys: "strip", - }) - : undefined, - include_deleted_data: includeDeletedData, - include_remote_data: includeRemoteData, - include_remote_fields: includeRemoteFields, - include_shell_data: includeShellData, - modified_after: modifiedAfter?.toISOString(), - modified_before: modifiedBefore?.toISOString(), - page_size: pageSize, - remote_id: remoteId, - transaction_date_after: transactionDateAfter?.toISOString(), - transaction_date_before: transactionDateBefore?.toISOString(), - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/journal-entries", - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaginatedJournalEntryList.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/journal-entries", - ); - } - - /** - * Creates a `JournalEntry` object with the given values. - * - * @param {Merge.accounting.JournalEntryEndpointRequest} request - * @param {JournalEntriesClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.journalEntries.create({ - * isDebugMode: true, - * runAsync: true, - * model: {} - * }) - */ - public create( - request: Merge.accounting.JournalEntryEndpointRequest, - requestOptions?: JournalEntriesClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__create(request, requestOptions)); - } - - private async __create( - request: Merge.accounting.JournalEntryEndpointRequest, - requestOptions?: JournalEntriesClient.RequestOptions, - ): Promise> { - const { isDebugMode, runAsync, ..._body } = request; - const _queryParams: Record = { - is_debug_mode: isDebugMode, - run_async: runAsync, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/journal-entries", - ), - method: "POST", - headers: _headers, - contentType: "application/json", - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - requestType: "json", - body: serializers.accounting.JournalEntryEndpointRequest.jsonOrThrow(_body, { - unrecognizedObjectKeys: "strip", - }), - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.JournalEntryResponse.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "POST", - "/accounting/v1/journal-entries", - ); - } - - /** - * Returns a `JournalEntry` object with the given `id`. - * - * @param {string} id - * @param {Merge.accounting.JournalEntriesRetrieveRequest} request - * @param {JournalEntriesClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.journalEntries.retrieve("id", { - * expand: "accounting_period", - * includeRemoteData: true, - * includeRemoteFields: true, - * includeShellData: true - * }) - */ - public retrieve( - id: string, - request: Merge.accounting.JournalEntriesRetrieveRequest = {}, - requestOptions?: JournalEntriesClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__retrieve(id, request, requestOptions)); - } - - private async __retrieve( - id: string, - request: Merge.accounting.JournalEntriesRetrieveRequest = {}, - requestOptions?: JournalEntriesClient.RequestOptions, - ): Promise> { - const { expand, includeRemoteData, includeRemoteFields, includeShellData } = request; - const _queryParams: Record = { - expand: - expand != null - ? serializers.accounting.JournalEntriesRetrieveRequestExpand.jsonOrThrow(expand, { - unrecognizedObjectKeys: "strip", - }) - : undefined, - include_remote_data: includeRemoteData, - include_remote_fields: includeRemoteFields, - include_shell_data: includeShellData, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - `accounting/v1/journal-entries/${core.url.encodePathParam(id)}`, - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.JournalEntry.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/journal-entries/{id}", - ); - } - - /** - * Returns a list of `RemoteFieldClass` objects. - * - * @param {Merge.accounting.JournalEntriesLinesRemoteFieldClassesListRequest} request - * @param {JournalEntriesClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.journalEntries.linesRemoteFieldClassesList({ - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * isCommonModelField: true, - * isCustom: true, - * pageSize: 1 - * }) - */ - public linesRemoteFieldClassesList( - request: Merge.accounting.JournalEntriesLinesRemoteFieldClassesListRequest = {}, - requestOptions?: JournalEntriesClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__linesRemoteFieldClassesList(request, requestOptions)); - } - - private async __linesRemoteFieldClassesList( - request: Merge.accounting.JournalEntriesLinesRemoteFieldClassesListRequest = {}, - requestOptions?: JournalEntriesClient.RequestOptions, - ): Promise> { - const { - cursor, - includeDeletedData, - includeRemoteData, - includeShellData, - isCommonModelField, - isCustom, - pageSize, - } = request; - const _queryParams: Record = { - cursor, - include_deleted_data: includeDeletedData, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - is_common_model_field: isCommonModelField, - is_custom: isCustom, - page_size: pageSize, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/journal-entries/lines/remote-field-classes", - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaginatedRemoteFieldClassList.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/journal-entries/lines/remote-field-classes", - ); - } - - /** - * Returns metadata for `JournalEntry` POSTs. - * - * @param {JournalEntriesClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.journalEntries.metaPostRetrieve() - */ - public metaPostRetrieve( - requestOptions?: JournalEntriesClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__metaPostRetrieve(requestOptions)); - } - - private async __metaPostRetrieve( - requestOptions?: JournalEntriesClient.RequestOptions, - ): Promise> { - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/journal-entries/meta/post", - ), - method: "GET", - headers: _headers, - queryParameters: requestOptions?.queryParams, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.MetaResponse.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/journal-entries/meta/post", - ); - } - - /** - * Returns a list of `RemoteFieldClass` objects. - * - * @param {Merge.accounting.JournalEntriesRemoteFieldClassesListRequest} request - * @param {JournalEntriesClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.journalEntries.remoteFieldClassesList({ - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * isCommonModelField: true, - * isCustom: true, - * pageSize: 1 - * }) - */ - public remoteFieldClassesList( - request: Merge.accounting.JournalEntriesRemoteFieldClassesListRequest = {}, - requestOptions?: JournalEntriesClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__remoteFieldClassesList(request, requestOptions)); - } - - private async __remoteFieldClassesList( - request: Merge.accounting.JournalEntriesRemoteFieldClassesListRequest = {}, - requestOptions?: JournalEntriesClient.RequestOptions, - ): Promise> { - const { - cursor, - includeDeletedData, - includeRemoteData, - includeShellData, - isCommonModelField, - isCustom, - pageSize, - } = request; - const _queryParams: Record = { - cursor, - include_deleted_data: includeDeletedData, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - is_common_model_field: isCommonModelField, - is_custom: isCustom, - page_size: pageSize, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/journal-entries/remote-field-classes", - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaginatedRemoteFieldClassList.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/journal-entries/remote-field-classes", - ); - } -} diff --git a/src/api/resources/accounting/resources/journalEntries/client/index.ts b/src/api/resources/accounting/resources/journalEntries/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/api/resources/accounting/resources/journalEntries/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/api/resources/accounting/resources/journalEntries/client/requests/JournalEntriesLinesRemoteFieldClassesListRequest.ts b/src/api/resources/accounting/resources/journalEntries/client/requests/JournalEntriesLinesRemoteFieldClassesListRequest.ts deleted file mode 100644 index db0bd44e6..000000000 --- a/src/api/resources/accounting/resources/journalEntries/client/requests/JournalEntriesLinesRemoteFieldClassesListRequest.ts +++ /dev/null @@ -1,30 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * @example - * { - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * isCommonModelField: true, - * isCustom: true, - * pageSize: 1 - * } - */ -export interface JournalEntriesLinesRemoteFieldClassesListRequest { - /** The pagination cursor value. */ - cursor?: string; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - includeDeletedData?: boolean; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** If provided, will only return remote field classes with this is_common_model_field value */ - isCommonModelField?: boolean; - /** If provided, will only return remote fields classes with this is_custom value */ - isCustom?: boolean; - /** Number of results to return per page. */ - pageSize?: number; -} diff --git a/src/api/resources/accounting/resources/journalEntries/client/requests/JournalEntriesListRequest.ts b/src/api/resources/accounting/resources/journalEntries/client/requests/JournalEntriesListRequest.ts deleted file mode 100644 index 29d32ceca..000000000 --- a/src/api/resources/accounting/resources/journalEntries/client/requests/JournalEntriesListRequest.ts +++ /dev/null @@ -1,56 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * companyId: "company_id", - * createdAfter: new Date("2024-01-15T09:30:00.000Z"), - * createdBefore: new Date("2024-01-15T09:30:00.000Z"), - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * expand: "accounting_period", - * includeDeletedData: true, - * includeRemoteData: true, - * includeRemoteFields: true, - * includeShellData: true, - * modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - * modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - * pageSize: 1, - * remoteId: "remote_id", - * transactionDateAfter: new Date("2024-01-15T09:30:00.000Z"), - * transactionDateBefore: new Date("2024-01-15T09:30:00.000Z") - * } - */ -export interface JournalEntriesListRequest { - /** If provided, will only return journal entries for this company. */ - companyId?: string; - /** If provided, will only return objects created after this datetime. */ - createdAfter?: Date; - /** If provided, will only return objects created before this datetime. */ - createdBefore?: Date; - /** The pagination cursor value. */ - cursor?: string; - /** Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. */ - expand?: Merge.accounting.JournalEntriesListRequestExpand; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - includeDeletedData?: boolean; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include all remote fields, including fields that Merge did not map to common models, in a normalized format. */ - includeRemoteFields?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** If provided, only objects synced by Merge after this date time will be returned. */ - modifiedAfter?: Date; - /** If provided, only objects synced by Merge before this date time will be returned. */ - modifiedBefore?: Date; - /** Number of results to return per page. */ - pageSize?: number; - /** The API provider's ID for the given object. */ - remoteId?: string; - /** If provided, will only return objects created after this datetime. */ - transactionDateAfter?: Date; - /** If provided, will only return objects created before this datetime. */ - transactionDateBefore?: Date; -} diff --git a/src/api/resources/accounting/resources/journalEntries/client/requests/JournalEntriesRemoteFieldClassesListRequest.ts b/src/api/resources/accounting/resources/journalEntries/client/requests/JournalEntriesRemoteFieldClassesListRequest.ts deleted file mode 100644 index 28540fe92..000000000 --- a/src/api/resources/accounting/resources/journalEntries/client/requests/JournalEntriesRemoteFieldClassesListRequest.ts +++ /dev/null @@ -1,30 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * @example - * { - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * isCommonModelField: true, - * isCustom: true, - * pageSize: 1 - * } - */ -export interface JournalEntriesRemoteFieldClassesListRequest { - /** The pagination cursor value. */ - cursor?: string; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - includeDeletedData?: boolean; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** If provided, will only return remote field classes with this is_common_model_field value */ - isCommonModelField?: boolean; - /** If provided, will only return remote fields classes with this is_custom value */ - isCustom?: boolean; - /** Number of results to return per page. */ - pageSize?: number; -} diff --git a/src/api/resources/accounting/resources/journalEntries/client/requests/JournalEntriesRetrieveRequest.ts b/src/api/resources/accounting/resources/journalEntries/client/requests/JournalEntriesRetrieveRequest.ts deleted file mode 100644 index 72fd451b6..000000000 --- a/src/api/resources/accounting/resources/journalEntries/client/requests/JournalEntriesRetrieveRequest.ts +++ /dev/null @@ -1,23 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * expand: "accounting_period", - * includeRemoteData: true, - * includeRemoteFields: true, - * includeShellData: true - * } - */ -export interface JournalEntriesRetrieveRequest { - /** Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. */ - expand?: Merge.accounting.JournalEntriesRetrieveRequestExpand; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include all remote fields, including fields that Merge did not map to common models, in a normalized format. */ - includeRemoteFields?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; -} diff --git a/src/api/resources/accounting/resources/journalEntries/client/requests/JournalEntryEndpointRequest.ts b/src/api/resources/accounting/resources/journalEntries/client/requests/JournalEntryEndpointRequest.ts deleted file mode 100644 index f4f70855a..000000000 --- a/src/api/resources/accounting/resources/journalEntries/client/requests/JournalEntryEndpointRequest.ts +++ /dev/null @@ -1,19 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * isDebugMode: true, - * runAsync: true, - * model: {} - * } - */ -export interface JournalEntryEndpointRequest { - /** Whether to include debug fields (such as log file links) in the response. */ - isDebugMode?: boolean; - /** Whether or not third-party updates should be run asynchronously. */ - runAsync?: boolean; - model: Merge.accounting.JournalEntryRequest; -} diff --git a/src/api/resources/accounting/resources/journalEntries/client/requests/index.ts b/src/api/resources/accounting/resources/journalEntries/client/requests/index.ts deleted file mode 100644 index cda14e06d..000000000 --- a/src/api/resources/accounting/resources/journalEntries/client/requests/index.ts +++ /dev/null @@ -1,5 +0,0 @@ -export type { JournalEntriesLinesRemoteFieldClassesListRequest } from "./JournalEntriesLinesRemoteFieldClassesListRequest"; -export type { JournalEntriesListRequest } from "./JournalEntriesListRequest"; -export type { JournalEntriesRemoteFieldClassesListRequest } from "./JournalEntriesRemoteFieldClassesListRequest"; -export type { JournalEntriesRetrieveRequest } from "./JournalEntriesRetrieveRequest"; -export type { JournalEntryEndpointRequest } from "./JournalEntryEndpointRequest"; diff --git a/src/api/resources/accounting/resources/journalEntries/exports.ts b/src/api/resources/accounting/resources/journalEntries/exports.ts deleted file mode 100644 index 3166f8a30..000000000 --- a/src/api/resources/accounting/resources/journalEntries/exports.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export { JournalEntriesClient } from "./client/Client"; -export * from "./client/index"; diff --git a/src/api/resources/accounting/resources/journalEntries/index.ts b/src/api/resources/accounting/resources/journalEntries/index.ts deleted file mode 100644 index d2ec2302c..000000000 --- a/src/api/resources/accounting/resources/journalEntries/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./client"; -export * from "./types"; diff --git a/src/api/resources/accounting/resources/journalEntries/types/JournalEntriesListRequestExpand.ts b/src/api/resources/accounting/resources/journalEntries/types/JournalEntriesListRequestExpand.ts deleted file mode 100644 index ee9c04ad6..000000000 --- a/src/api/resources/accounting/resources/journalEntries/types/JournalEntriesListRequestExpand.ts +++ /dev/null @@ -1,78 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export const JournalEntriesListRequestExpand = { - AccountingPeriod: "accounting_period", - AppliedPayments: "applied_payments", - AppliedPaymentsAccountingPeriod: "applied_payments,accounting_period", - AppliedPaymentsCompany: "applied_payments,company", - AppliedPaymentsCompanyAccountingPeriod: "applied_payments,company,accounting_period", - AppliedPaymentsTrackingCategories: "applied_payments,tracking_categories", - AppliedPaymentsTrackingCategoriesAccountingPeriod: "applied_payments,tracking_categories,accounting_period", - AppliedPaymentsTrackingCategoriesCompany: "applied_payments,tracking_categories,company", - AppliedPaymentsTrackingCategoriesCompanyAccountingPeriod: - "applied_payments,tracking_categories,company,accounting_period", - Company: "company", - CompanyAccountingPeriod: "company,accounting_period", - Lines: "lines", - LinesAccountingPeriod: "lines,accounting_period", - LinesAppliedPayments: "lines,applied_payments", - LinesAppliedPaymentsAccountingPeriod: "lines,applied_payments,accounting_period", - LinesAppliedPaymentsCompany: "lines,applied_payments,company", - LinesAppliedPaymentsCompanyAccountingPeriod: "lines,applied_payments,company,accounting_period", - LinesAppliedPaymentsTrackingCategories: "lines,applied_payments,tracking_categories", - LinesAppliedPaymentsTrackingCategoriesAccountingPeriod: - "lines,applied_payments,tracking_categories,accounting_period", - LinesAppliedPaymentsTrackingCategoriesCompany: "lines,applied_payments,tracking_categories,company", - LinesAppliedPaymentsTrackingCategoriesCompanyAccountingPeriod: - "lines,applied_payments,tracking_categories,company,accounting_period", - LinesCompany: "lines,company", - LinesCompanyAccountingPeriod: "lines,company,accounting_period", - LinesPayments: "lines,payments", - LinesPaymentsAccountingPeriod: "lines,payments,accounting_period", - LinesPaymentsAppliedPayments: "lines,payments,applied_payments", - LinesPaymentsAppliedPaymentsAccountingPeriod: "lines,payments,applied_payments,accounting_period", - LinesPaymentsAppliedPaymentsCompany: "lines,payments,applied_payments,company", - LinesPaymentsAppliedPaymentsCompanyAccountingPeriod: "lines,payments,applied_payments,company,accounting_period", - LinesPaymentsAppliedPaymentsTrackingCategories: "lines,payments,applied_payments,tracking_categories", - LinesPaymentsAppliedPaymentsTrackingCategoriesAccountingPeriod: - "lines,payments,applied_payments,tracking_categories,accounting_period", - LinesPaymentsAppliedPaymentsTrackingCategoriesCompany: - "lines,payments,applied_payments,tracking_categories,company", - LinesPaymentsAppliedPaymentsTrackingCategoriesCompanyAccountingPeriod: - "lines,payments,applied_payments,tracking_categories,company,accounting_period", - LinesPaymentsCompany: "lines,payments,company", - LinesPaymentsCompanyAccountingPeriod: "lines,payments,company,accounting_period", - LinesPaymentsTrackingCategories: "lines,payments,tracking_categories", - LinesPaymentsTrackingCategoriesAccountingPeriod: "lines,payments,tracking_categories,accounting_period", - LinesPaymentsTrackingCategoriesCompany: "lines,payments,tracking_categories,company", - LinesPaymentsTrackingCategoriesCompanyAccountingPeriod: - "lines,payments,tracking_categories,company,accounting_period", - LinesTrackingCategories: "lines,tracking_categories", - LinesTrackingCategoriesAccountingPeriod: "lines,tracking_categories,accounting_period", - LinesTrackingCategoriesCompany: "lines,tracking_categories,company", - LinesTrackingCategoriesCompanyAccountingPeriod: "lines,tracking_categories,company,accounting_period", - Payments: "payments", - PaymentsAccountingPeriod: "payments,accounting_period", - PaymentsAppliedPayments: "payments,applied_payments", - PaymentsAppliedPaymentsAccountingPeriod: "payments,applied_payments,accounting_period", - PaymentsAppliedPaymentsCompany: "payments,applied_payments,company", - PaymentsAppliedPaymentsCompanyAccountingPeriod: "payments,applied_payments,company,accounting_period", - PaymentsAppliedPaymentsTrackingCategories: "payments,applied_payments,tracking_categories", - PaymentsAppliedPaymentsTrackingCategoriesAccountingPeriod: - "payments,applied_payments,tracking_categories,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesCompany: "payments,applied_payments,tracking_categories,company", - PaymentsAppliedPaymentsTrackingCategoriesCompanyAccountingPeriod: - "payments,applied_payments,tracking_categories,company,accounting_period", - PaymentsCompany: "payments,company", - PaymentsCompanyAccountingPeriod: "payments,company,accounting_period", - PaymentsTrackingCategories: "payments,tracking_categories", - PaymentsTrackingCategoriesAccountingPeriod: "payments,tracking_categories,accounting_period", - PaymentsTrackingCategoriesCompany: "payments,tracking_categories,company", - PaymentsTrackingCategoriesCompanyAccountingPeriod: "payments,tracking_categories,company,accounting_period", - TrackingCategories: "tracking_categories", - TrackingCategoriesAccountingPeriod: "tracking_categories,accounting_period", - TrackingCategoriesCompany: "tracking_categories,company", - TrackingCategoriesCompanyAccountingPeriod: "tracking_categories,company,accounting_period", -} as const; -export type JournalEntriesListRequestExpand = - (typeof JournalEntriesListRequestExpand)[keyof typeof JournalEntriesListRequestExpand]; diff --git a/src/api/resources/accounting/resources/journalEntries/types/JournalEntriesRetrieveRequestExpand.ts b/src/api/resources/accounting/resources/journalEntries/types/JournalEntriesRetrieveRequestExpand.ts deleted file mode 100644 index fb3e356c5..000000000 --- a/src/api/resources/accounting/resources/journalEntries/types/JournalEntriesRetrieveRequestExpand.ts +++ /dev/null @@ -1,78 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export const JournalEntriesRetrieveRequestExpand = { - AccountingPeriod: "accounting_period", - AppliedPayments: "applied_payments", - AppliedPaymentsAccountingPeriod: "applied_payments,accounting_period", - AppliedPaymentsCompany: "applied_payments,company", - AppliedPaymentsCompanyAccountingPeriod: "applied_payments,company,accounting_period", - AppliedPaymentsTrackingCategories: "applied_payments,tracking_categories", - AppliedPaymentsTrackingCategoriesAccountingPeriod: "applied_payments,tracking_categories,accounting_period", - AppliedPaymentsTrackingCategoriesCompany: "applied_payments,tracking_categories,company", - AppliedPaymentsTrackingCategoriesCompanyAccountingPeriod: - "applied_payments,tracking_categories,company,accounting_period", - Company: "company", - CompanyAccountingPeriod: "company,accounting_period", - Lines: "lines", - LinesAccountingPeriod: "lines,accounting_period", - LinesAppliedPayments: "lines,applied_payments", - LinesAppliedPaymentsAccountingPeriod: "lines,applied_payments,accounting_period", - LinesAppliedPaymentsCompany: "lines,applied_payments,company", - LinesAppliedPaymentsCompanyAccountingPeriod: "lines,applied_payments,company,accounting_period", - LinesAppliedPaymentsTrackingCategories: "lines,applied_payments,tracking_categories", - LinesAppliedPaymentsTrackingCategoriesAccountingPeriod: - "lines,applied_payments,tracking_categories,accounting_period", - LinesAppliedPaymentsTrackingCategoriesCompany: "lines,applied_payments,tracking_categories,company", - LinesAppliedPaymentsTrackingCategoriesCompanyAccountingPeriod: - "lines,applied_payments,tracking_categories,company,accounting_period", - LinesCompany: "lines,company", - LinesCompanyAccountingPeriod: "lines,company,accounting_period", - LinesPayments: "lines,payments", - LinesPaymentsAccountingPeriod: "lines,payments,accounting_period", - LinesPaymentsAppliedPayments: "lines,payments,applied_payments", - LinesPaymentsAppliedPaymentsAccountingPeriod: "lines,payments,applied_payments,accounting_period", - LinesPaymentsAppliedPaymentsCompany: "lines,payments,applied_payments,company", - LinesPaymentsAppliedPaymentsCompanyAccountingPeriod: "lines,payments,applied_payments,company,accounting_period", - LinesPaymentsAppliedPaymentsTrackingCategories: "lines,payments,applied_payments,tracking_categories", - LinesPaymentsAppliedPaymentsTrackingCategoriesAccountingPeriod: - "lines,payments,applied_payments,tracking_categories,accounting_period", - LinesPaymentsAppliedPaymentsTrackingCategoriesCompany: - "lines,payments,applied_payments,tracking_categories,company", - LinesPaymentsAppliedPaymentsTrackingCategoriesCompanyAccountingPeriod: - "lines,payments,applied_payments,tracking_categories,company,accounting_period", - LinesPaymentsCompany: "lines,payments,company", - LinesPaymentsCompanyAccountingPeriod: "lines,payments,company,accounting_period", - LinesPaymentsTrackingCategories: "lines,payments,tracking_categories", - LinesPaymentsTrackingCategoriesAccountingPeriod: "lines,payments,tracking_categories,accounting_period", - LinesPaymentsTrackingCategoriesCompany: "lines,payments,tracking_categories,company", - LinesPaymentsTrackingCategoriesCompanyAccountingPeriod: - "lines,payments,tracking_categories,company,accounting_period", - LinesTrackingCategories: "lines,tracking_categories", - LinesTrackingCategoriesAccountingPeriod: "lines,tracking_categories,accounting_period", - LinesTrackingCategoriesCompany: "lines,tracking_categories,company", - LinesTrackingCategoriesCompanyAccountingPeriod: "lines,tracking_categories,company,accounting_period", - Payments: "payments", - PaymentsAccountingPeriod: "payments,accounting_period", - PaymentsAppliedPayments: "payments,applied_payments", - PaymentsAppliedPaymentsAccountingPeriod: "payments,applied_payments,accounting_period", - PaymentsAppliedPaymentsCompany: "payments,applied_payments,company", - PaymentsAppliedPaymentsCompanyAccountingPeriod: "payments,applied_payments,company,accounting_period", - PaymentsAppliedPaymentsTrackingCategories: "payments,applied_payments,tracking_categories", - PaymentsAppliedPaymentsTrackingCategoriesAccountingPeriod: - "payments,applied_payments,tracking_categories,accounting_period", - PaymentsAppliedPaymentsTrackingCategoriesCompany: "payments,applied_payments,tracking_categories,company", - PaymentsAppliedPaymentsTrackingCategoriesCompanyAccountingPeriod: - "payments,applied_payments,tracking_categories,company,accounting_period", - PaymentsCompany: "payments,company", - PaymentsCompanyAccountingPeriod: "payments,company,accounting_period", - PaymentsTrackingCategories: "payments,tracking_categories", - PaymentsTrackingCategoriesAccountingPeriod: "payments,tracking_categories,accounting_period", - PaymentsTrackingCategoriesCompany: "payments,tracking_categories,company", - PaymentsTrackingCategoriesCompanyAccountingPeriod: "payments,tracking_categories,company,accounting_period", - TrackingCategories: "tracking_categories", - TrackingCategoriesAccountingPeriod: "tracking_categories,accounting_period", - TrackingCategoriesCompany: "tracking_categories,company", - TrackingCategoriesCompanyAccountingPeriod: "tracking_categories,company,accounting_period", -} as const; -export type JournalEntriesRetrieveRequestExpand = - (typeof JournalEntriesRetrieveRequestExpand)[keyof typeof JournalEntriesRetrieveRequestExpand]; diff --git a/src/api/resources/accounting/resources/journalEntries/types/index.ts b/src/api/resources/accounting/resources/journalEntries/types/index.ts deleted file mode 100644 index d0572d020..000000000 --- a/src/api/resources/accounting/resources/journalEntries/types/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./JournalEntriesListRequestExpand"; -export * from "./JournalEntriesRetrieveRequestExpand"; diff --git a/src/api/resources/accounting/resources/linkToken/client/Client.ts b/src/api/resources/accounting/resources/linkToken/client/Client.ts deleted file mode 100644 index 5bab57788..000000000 --- a/src/api/resources/accounting/resources/linkToken/client/Client.ts +++ /dev/null @@ -1,102 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../BaseClient"; -import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../../../BaseClient"; -import * as core from "../../../../../../core"; -import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../../../core/headers"; -import * as environments from "../../../../../../environments"; -import { handleNonStatusCodeError } from "../../../../../../errors/handleNonStatusCodeError"; -import * as errors from "../../../../../../errors/index"; -import * as serializers from "../../../../../../serialization/index"; -import type * as Merge from "../../../../../index"; - -export declare namespace LinkTokenClient { - export type Options = BaseClientOptions; - - export interface RequestOptions extends BaseRequestOptions {} -} - -export class LinkTokenClient { - protected readonly _options: NormalizedClientOptionsWithAuth; - - constructor(options: LinkTokenClient.Options) { - this._options = normalizeClientOptionsWithAuth(options); - } - - /** - * Creates a link token to be used when linking a new end user. - * - * @param {Merge.accounting.EndUserDetailsRequest} request - * @param {LinkTokenClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.linkToken.create({ - * endUserEmailAddress: "example@gmail.com", - * endUserOrganizationName: "Test Organization", - * endUserOriginId: "12345", - * categories: ["hris", "ats"] - * }) - */ - public create( - request: Merge.accounting.EndUserDetailsRequest, - requestOptions?: LinkTokenClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__create(request, requestOptions)); - } - - private async __create( - request: Merge.accounting.EndUserDetailsRequest, - requestOptions?: LinkTokenClient.RequestOptions, - ): Promise> { - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/link-token", - ), - method: "POST", - headers: _headers, - contentType: "application/json", - queryParameters: requestOptions?.queryParams, - requestType: "json", - body: serializers.accounting.EndUserDetailsRequest.jsonOrThrow(request, { - unrecognizedObjectKeys: "strip", - }), - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.LinkToken.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError(_response.error, _response.rawResponse, "POST", "/accounting/v1/link-token"); - } -} diff --git a/src/api/resources/accounting/resources/linkToken/client/index.ts b/src/api/resources/accounting/resources/linkToken/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/api/resources/accounting/resources/linkToken/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/api/resources/accounting/resources/linkToken/client/requests/EndUserDetailsRequest.ts b/src/api/resources/accounting/resources/linkToken/client/requests/EndUserDetailsRequest.ts deleted file mode 100644 index 821552e52..000000000 --- a/src/api/resources/accounting/resources/linkToken/client/requests/EndUserDetailsRequest.ts +++ /dev/null @@ -1,49 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * endUserEmailAddress: "example@gmail.com", - * endUserOrganizationName: "Test Organization", - * endUserOriginId: "12345", - * categories: ["hris", "ats"] - * } - */ -export interface EndUserDetailsRequest { - /** Your end user's email address. This is purely for identification purposes - setting this value will not cause any emails to be sent. */ - endUserEmailAddress: string; - /** Your end user's organization. */ - endUserOrganizationName: string; - /** This unique identifier typically represents the ID for your end user in your product's database. This value must be distinct from other Linked Accounts' unique identifiers. */ - endUserOriginId: string; - /** The integration categories to show in Merge Link. */ - categories: Merge.accounting.CategoriesEnum[]; - /** The slug of a specific pre-selected integration for this linking flow token. For examples of slugs, see https://docs.merge.dev/guides/merge-link/single-integration/. */ - integration?: string; - /** An integer number of minutes between [30, 720 or 10080 if for a Magic Link URL] for how long this token is valid. Defaults to 30. */ - linkExpiryMins?: number; - /** Whether to generate a Magic Link URL. Defaults to false. For more information on Magic Link, see https://merge.dev/blog/integrations-fast-say-hello-to-magic-link. */ - shouldCreateMagicLinkUrl?: boolean; - /** Whether to generate a Magic Link URL on the Admin Needed screen during the linking flow. Defaults to false. For more information on Magic Link, see https://merge.dev/blog/integrations-fast-say-hello-to-magic-link. */ - hideAdminMagicLink?: boolean; - /** An array of objects to specify the models and fields that will be disabled for a given Linked Account. Each object uses model_id, enabled_actions, and disabled_fields to specify the model, method, and fields that are scoped for a given Linked Account. */ - commonModels?: Merge.accounting.CommonModelScopesBodyRequest[]; - /** When creating a Link Token, you can set permissions for Common Models that will apply to the account that is going to be linked. Any model or field not specified in link token payload will default to existing settings. */ - categoryCommonModelScopes?: Record< - string, - Merge.accounting.IndividualCommonModelScopeDeserializerRequest[] | undefined - >; - /** - * The following subset of IETF language tags can be used to configure localization. - * - * * `en` - en - * * `de` - de - */ - language?: Merge.accounting.EndUserDetailsRequestLanguage; - /** The boolean that indicates whether initial, periodic, and force syncs will be disabled. */ - areSyncsDisabled?: boolean; - /** A JSON object containing integration-specific configuration options. */ - integrationSpecificConfig?: Record; -} diff --git a/src/api/resources/accounting/resources/linkToken/client/requests/index.ts b/src/api/resources/accounting/resources/linkToken/client/requests/index.ts deleted file mode 100644 index 67eabb553..000000000 --- a/src/api/resources/accounting/resources/linkToken/client/requests/index.ts +++ /dev/null @@ -1 +0,0 @@ -export type { EndUserDetailsRequest } from "./EndUserDetailsRequest"; diff --git a/src/api/resources/accounting/resources/linkToken/exports.ts b/src/api/resources/accounting/resources/linkToken/exports.ts deleted file mode 100644 index 10e007018..000000000 --- a/src/api/resources/accounting/resources/linkToken/exports.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export { LinkTokenClient } from "./client/Client"; -export * from "./client/index"; diff --git a/src/api/resources/accounting/resources/linkToken/index.ts b/src/api/resources/accounting/resources/linkToken/index.ts deleted file mode 100644 index d2ec2302c..000000000 --- a/src/api/resources/accounting/resources/linkToken/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./client"; -export * from "./types"; diff --git a/src/api/resources/accounting/resources/linkToken/types/EndUserDetailsRequestLanguage.ts b/src/api/resources/accounting/resources/linkToken/types/EndUserDetailsRequestLanguage.ts deleted file mode 100644 index 68a9a7dfd..000000000 --- a/src/api/resources/accounting/resources/linkToken/types/EndUserDetailsRequestLanguage.ts +++ /dev/null @@ -1,11 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../index"; - -/** - * The following subset of IETF language tags can be used to configure localization. - * - * * `en` - en - * * `de` - de - */ -export type EndUserDetailsRequestLanguage = Merge.accounting.LanguageEnum | string; diff --git a/src/api/resources/accounting/resources/linkToken/types/index.ts b/src/api/resources/accounting/resources/linkToken/types/index.ts deleted file mode 100644 index c90e13c37..000000000 --- a/src/api/resources/accounting/resources/linkToken/types/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./EndUserDetailsRequestLanguage"; diff --git a/src/api/resources/accounting/resources/linkedAccounts/client/Client.ts b/src/api/resources/accounting/resources/linkedAccounts/client/Client.ts deleted file mode 100644 index 8e681524d..000000000 --- a/src/api/resources/accounting/resources/linkedAccounts/client/Client.ts +++ /dev/null @@ -1,146 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../BaseClient"; -import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../../../BaseClient"; -import * as core from "../../../../../../core"; -import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../../../core/headers"; -import * as environments from "../../../../../../environments"; -import { handleNonStatusCodeError } from "../../../../../../errors/handleNonStatusCodeError"; -import * as errors from "../../../../../../errors/index"; -import * as serializers from "../../../../../../serialization/index"; -import type * as Merge from "../../../../../index"; - -export declare namespace LinkedAccountsClient { - export type Options = BaseClientOptions; - - export interface RequestOptions extends BaseRequestOptions {} -} - -export class LinkedAccountsClient { - protected readonly _options: NormalizedClientOptionsWithAuth; - - constructor(options: LinkedAccountsClient.Options) { - this._options = normalizeClientOptionsWithAuth(options); - } - - /** - * List linked accounts for your organization. - * - * @param {Merge.accounting.LinkedAccountsListRequest} request - * @param {LinkedAccountsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.linkedAccounts.list({ - * category: "accounting", - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * endUserEmailAddress: "end_user_email_address", - * endUserOrganizationName: "end_user_organization_name", - * endUserOriginId: "end_user_origin_id", - * endUserOriginIds: "end_user_origin_ids", - * id: "id", - * ids: "ids", - * includeDuplicates: true, - * integrationName: "integration_name", - * isTestAccount: "is_test_account", - * pageSize: 1, - * status: "status" - * }) - */ - public list( - request: Merge.accounting.LinkedAccountsListRequest = {}, - requestOptions?: LinkedAccountsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__list(request, requestOptions)); - } - - private async __list( - request: Merge.accounting.LinkedAccountsListRequest = {}, - requestOptions?: LinkedAccountsClient.RequestOptions, - ): Promise> { - const { - category, - cursor, - endUserEmailAddress, - endUserOrganizationName, - endUserOriginId, - endUserOriginIds, - id, - ids, - includeDuplicates, - integrationName, - isTestAccount, - pageSize, - status, - } = request; - const _queryParams: Record = { - category: - category != null - ? serializers.accounting.LinkedAccountsListRequestCategory.jsonOrThrow(category, { - unrecognizedObjectKeys: "strip", - }) - : undefined, - cursor, - end_user_email_address: endUserEmailAddress, - end_user_organization_name: endUserOrganizationName, - end_user_origin_id: endUserOriginId, - end_user_origin_ids: endUserOriginIds, - id, - ids, - include_duplicates: includeDuplicates, - integration_name: integrationName, - is_test_account: isTestAccount, - page_size: pageSize, - status, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/linked-accounts", - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaginatedAccountDetailsAndActionsList.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/linked-accounts", - ); - } -} diff --git a/src/api/resources/accounting/resources/linkedAccounts/client/index.ts b/src/api/resources/accounting/resources/linkedAccounts/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/api/resources/accounting/resources/linkedAccounts/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/api/resources/accounting/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.ts b/src/api/resources/accounting/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.ts deleted file mode 100644 index 4fb089f78..000000000 --- a/src/api/resources/accounting/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.ts +++ /dev/null @@ -1,59 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * category: "accounting", - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * endUserEmailAddress: "end_user_email_address", - * endUserOrganizationName: "end_user_organization_name", - * endUserOriginId: "end_user_origin_id", - * endUserOriginIds: "end_user_origin_ids", - * id: "id", - * ids: "ids", - * includeDuplicates: true, - * integrationName: "integration_name", - * isTestAccount: "is_test_account", - * pageSize: 1, - * status: "status" - * } - */ -export interface LinkedAccountsListRequest { - /** - * Options: `accounting`, `ats`, `crm`, `filestorage`, `hris`, `mktg`, `ticketing` - * - * * `hris` - hris - * * `ats` - ats - * * `accounting` - accounting - * * `ticketing` - ticketing - * * `crm` - crm - * * `mktg` - mktg - * * `filestorage` - filestorage - */ - category?: Merge.accounting.LinkedAccountsListRequestCategory; - /** The pagination cursor value. */ - cursor?: string; - /** If provided, will only return linked accounts associated with the given email address. */ - endUserEmailAddress?: string; - /** If provided, will only return linked accounts associated with the given organization name. */ - endUserOrganizationName?: string; - /** If provided, will only return linked accounts associated with the given origin ID. */ - endUserOriginId?: string; - /** Comma-separated list of EndUser origin IDs, making it possible to specify multiple EndUsers at once. */ - endUserOriginIds?: string; - id?: string; - /** Comma-separated list of LinkedAccount IDs, making it possible to specify multiple LinkedAccounts at once. */ - ids?: string; - /** If `true`, will include complete production duplicates of the account specified by the `id` query parameter in the response. `id` must be for a complete production linked account. */ - includeDuplicates?: boolean; - /** If provided, will only return linked accounts associated with the given integration name. */ - integrationName?: string; - /** If included, will only include test linked accounts. If not included, will only include non-test linked accounts. */ - isTestAccount?: string; - /** Number of results to return per page. */ - pageSize?: number; - /** Filter by status. Options: `COMPLETE`, `IDLE`, `INCOMPLETE`, `RELINK_NEEDED` */ - status?: string; -} diff --git a/src/api/resources/accounting/resources/linkedAccounts/client/requests/index.ts b/src/api/resources/accounting/resources/linkedAccounts/client/requests/index.ts deleted file mode 100644 index ae4db9c3b..000000000 --- a/src/api/resources/accounting/resources/linkedAccounts/client/requests/index.ts +++ /dev/null @@ -1 +0,0 @@ -export type { LinkedAccountsListRequest } from "./LinkedAccountsListRequest"; diff --git a/src/api/resources/accounting/resources/linkedAccounts/exports.ts b/src/api/resources/accounting/resources/linkedAccounts/exports.ts deleted file mode 100644 index 236b70b1a..000000000 --- a/src/api/resources/accounting/resources/linkedAccounts/exports.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export { LinkedAccountsClient } from "./client/Client"; -export * from "./client/index"; diff --git a/src/api/resources/accounting/resources/linkedAccounts/index.ts b/src/api/resources/accounting/resources/linkedAccounts/index.ts deleted file mode 100644 index d2ec2302c..000000000 --- a/src/api/resources/accounting/resources/linkedAccounts/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./client"; -export * from "./types"; diff --git a/src/api/resources/accounting/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.ts b/src/api/resources/accounting/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.ts deleted file mode 100644 index 61bd028eb..000000000 --- a/src/api/resources/accounting/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.ts +++ /dev/null @@ -1,13 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export const LinkedAccountsListRequestCategory = { - Accounting: "accounting", - Ats: "ats", - Crm: "crm", - Filestorage: "filestorage", - Hris: "hris", - Mktg: "mktg", - Ticketing: "ticketing", -} as const; -export type LinkedAccountsListRequestCategory = - (typeof LinkedAccountsListRequestCategory)[keyof typeof LinkedAccountsListRequestCategory]; diff --git a/src/api/resources/accounting/resources/linkedAccounts/types/index.ts b/src/api/resources/accounting/resources/linkedAccounts/types/index.ts deleted file mode 100644 index 91de6010a..000000000 --- a/src/api/resources/accounting/resources/linkedAccounts/types/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./LinkedAccountsListRequestCategory"; diff --git a/src/api/resources/accounting/resources/passthrough/client/Client.ts b/src/api/resources/accounting/resources/passthrough/client/Client.ts deleted file mode 100644 index 650b89548..000000000 --- a/src/api/resources/accounting/resources/passthrough/client/Client.ts +++ /dev/null @@ -1,100 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../BaseClient"; -import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../../../BaseClient"; -import * as core from "../../../../../../core"; -import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../../../core/headers"; -import * as environments from "../../../../../../environments"; -import { handleNonStatusCodeError } from "../../../../../../errors/handleNonStatusCodeError"; -import * as errors from "../../../../../../errors/index"; -import * as serializers from "../../../../../../serialization/index"; -import type * as Merge from "../../../../../index"; - -export declare namespace PassthroughClient { - export type Options = BaseClientOptions; - - export interface RequestOptions extends BaseRequestOptions {} -} - -export class PassthroughClient { - protected readonly _options: NormalizedClientOptionsWithAuth; - - constructor(options: PassthroughClient.Options) { - this._options = normalizeClientOptionsWithAuth(options); - } - - /** - * Pull data from an endpoint not currently supported by Merge. - * - * @param {Merge.accounting.DataPassthroughRequest} request - * @param {PassthroughClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.passthrough.create({ - * method: "GET", - * path: "/scooters" - * }) - */ - public create( - request: Merge.accounting.DataPassthroughRequest, - requestOptions?: PassthroughClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__create(request, requestOptions)); - } - - private async __create( - request: Merge.accounting.DataPassthroughRequest, - requestOptions?: PassthroughClient.RequestOptions, - ): Promise> { - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/passthrough", - ), - method: "POST", - headers: _headers, - contentType: "application/json", - queryParameters: requestOptions?.queryParams, - requestType: "json", - body: serializers.accounting.DataPassthroughRequest.jsonOrThrow(request, { - unrecognizedObjectKeys: "strip", - }), - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.RemoteResponse.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError(_response.error, _response.rawResponse, "POST", "/accounting/v1/passthrough"); - } -} diff --git a/src/api/resources/accounting/resources/passthrough/client/index.ts b/src/api/resources/accounting/resources/passthrough/client/index.ts deleted file mode 100644 index cb0ff5c3b..000000000 --- a/src/api/resources/accounting/resources/passthrough/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export {}; diff --git a/src/api/resources/accounting/resources/passthrough/exports.ts b/src/api/resources/accounting/resources/passthrough/exports.ts deleted file mode 100644 index 645fbb4b8..000000000 --- a/src/api/resources/accounting/resources/passthrough/exports.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export { PassthroughClient } from "./client/Client"; -export * from "./client/index"; diff --git a/src/api/resources/accounting/resources/passthrough/index.ts b/src/api/resources/accounting/resources/passthrough/index.ts deleted file mode 100644 index 5ec76921e..000000000 --- a/src/api/resources/accounting/resources/passthrough/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./client"; diff --git a/src/api/resources/accounting/resources/paymentMethods/client/Client.ts b/src/api/resources/accounting/resources/paymentMethods/client/Client.ts deleted file mode 100644 index 718a2415c..000000000 --- a/src/api/resources/accounting/resources/paymentMethods/client/Client.ts +++ /dev/null @@ -1,194 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../BaseClient"; -import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../../../BaseClient"; -import * as core from "../../../../../../core"; -import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../../../core/headers"; -import * as environments from "../../../../../../environments"; -import { handleNonStatusCodeError } from "../../../../../../errors/handleNonStatusCodeError"; -import * as errors from "../../../../../../errors/index"; -import * as serializers from "../../../../../../serialization/index"; -import type * as Merge from "../../../../../index"; - -export declare namespace PaymentMethodsClient { - export type Options = BaseClientOptions; - - export interface RequestOptions extends BaseRequestOptions {} -} - -export class PaymentMethodsClient { - protected readonly _options: NormalizedClientOptionsWithAuth; - - constructor(options: PaymentMethodsClient.Options) { - this._options = normalizeClientOptionsWithAuth(options); - } - - /** - * Returns a list of `PaymentMethod` objects. - * - * @param {Merge.accounting.PaymentMethodsListRequest} request - * @param {PaymentMethodsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.paymentMethods.list({ - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * pageSize: 1 - * }) - */ - public list( - request: Merge.accounting.PaymentMethodsListRequest = {}, - requestOptions?: PaymentMethodsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__list(request, requestOptions)); - } - - private async __list( - request: Merge.accounting.PaymentMethodsListRequest = {}, - requestOptions?: PaymentMethodsClient.RequestOptions, - ): Promise> { - const { cursor, includeDeletedData, includeRemoteData, includeShellData, pageSize } = request; - const _queryParams: Record = { - cursor, - include_deleted_data: includeDeletedData, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - page_size: pageSize, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/payment-methods", - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaginatedPaymentMethodList.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/payment-methods", - ); - } - - /** - * Returns a `PaymentMethod` object with the given `id`. - * - * @param {string} id - * @param {Merge.accounting.PaymentMethodsRetrieveRequest} request - * @param {PaymentMethodsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.paymentMethods.retrieve("id", { - * includeRemoteData: true, - * includeShellData: true - * }) - */ - public retrieve( - id: string, - request: Merge.accounting.PaymentMethodsRetrieveRequest = {}, - requestOptions?: PaymentMethodsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__retrieve(id, request, requestOptions)); - } - - private async __retrieve( - id: string, - request: Merge.accounting.PaymentMethodsRetrieveRequest = {}, - requestOptions?: PaymentMethodsClient.RequestOptions, - ): Promise> { - const { includeRemoteData, includeShellData } = request; - const _queryParams: Record = { - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - `accounting/v1/payment-methods/${core.url.encodePathParam(id)}`, - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaymentMethod.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/payment-methods/{id}", - ); - } -} diff --git a/src/api/resources/accounting/resources/paymentMethods/client/index.ts b/src/api/resources/accounting/resources/paymentMethods/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/api/resources/accounting/resources/paymentMethods/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/api/resources/accounting/resources/paymentMethods/client/requests/PaymentMethodsListRequest.ts b/src/api/resources/accounting/resources/paymentMethods/client/requests/PaymentMethodsListRequest.ts deleted file mode 100644 index 47b9dc777..000000000 --- a/src/api/resources/accounting/resources/paymentMethods/client/requests/PaymentMethodsListRequest.ts +++ /dev/null @@ -1,24 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * @example - * { - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * pageSize: 1 - * } - */ -export interface PaymentMethodsListRequest { - /** The pagination cursor value. */ - cursor?: string; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - includeDeletedData?: boolean; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** Number of results to return per page. */ - pageSize?: number; -} diff --git a/src/api/resources/accounting/resources/paymentMethods/client/requests/PaymentMethodsRetrieveRequest.ts b/src/api/resources/accounting/resources/paymentMethods/client/requests/PaymentMethodsRetrieveRequest.ts deleted file mode 100644 index 6b98b662a..000000000 --- a/src/api/resources/accounting/resources/paymentMethods/client/requests/PaymentMethodsRetrieveRequest.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * @example - * { - * includeRemoteData: true, - * includeShellData: true - * } - */ -export interface PaymentMethodsRetrieveRequest { - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; -} diff --git a/src/api/resources/accounting/resources/paymentMethods/client/requests/index.ts b/src/api/resources/accounting/resources/paymentMethods/client/requests/index.ts deleted file mode 100644 index 79bb9bb92..000000000 --- a/src/api/resources/accounting/resources/paymentMethods/client/requests/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export type { PaymentMethodsListRequest } from "./PaymentMethodsListRequest"; -export type { PaymentMethodsRetrieveRequest } from "./PaymentMethodsRetrieveRequest"; diff --git a/src/api/resources/accounting/resources/paymentMethods/exports.ts b/src/api/resources/accounting/resources/paymentMethods/exports.ts deleted file mode 100644 index cdbe35c72..000000000 --- a/src/api/resources/accounting/resources/paymentMethods/exports.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export { PaymentMethodsClient } from "./client/Client"; -export * from "./client/index"; diff --git a/src/api/resources/accounting/resources/paymentMethods/index.ts b/src/api/resources/accounting/resources/paymentMethods/index.ts deleted file mode 100644 index 5ec76921e..000000000 --- a/src/api/resources/accounting/resources/paymentMethods/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./client"; diff --git a/src/api/resources/accounting/resources/paymentTerms/client/Client.ts b/src/api/resources/accounting/resources/paymentTerms/client/Client.ts deleted file mode 100644 index 35bf5c61c..000000000 --- a/src/api/resources/accounting/resources/paymentTerms/client/Client.ts +++ /dev/null @@ -1,193 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../BaseClient"; -import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../../../BaseClient"; -import * as core from "../../../../../../core"; -import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../../../core/headers"; -import * as environments from "../../../../../../environments"; -import { handleNonStatusCodeError } from "../../../../../../errors/handleNonStatusCodeError"; -import * as errors from "../../../../../../errors/index"; -import * as serializers from "../../../../../../serialization/index"; -import type * as Merge from "../../../../../index"; - -export declare namespace PaymentTermsClient { - export type Options = BaseClientOptions; - - export interface RequestOptions extends BaseRequestOptions {} -} - -export class PaymentTermsClient { - protected readonly _options: NormalizedClientOptionsWithAuth; - - constructor(options: PaymentTermsClient.Options) { - this._options = normalizeClientOptionsWithAuth(options); - } - - /** - * Returns a list of `PaymentTerm` objects. - * - * @param {Merge.accounting.PaymentTermsListRequest} request - * @param {PaymentTermsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.paymentTerms.list({ - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * expand: "company", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * pageSize: 1 - * }) - */ - public list( - request: Merge.accounting.PaymentTermsListRequest = {}, - requestOptions?: PaymentTermsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__list(request, requestOptions)); - } - - private async __list( - request: Merge.accounting.PaymentTermsListRequest = {}, - requestOptions?: PaymentTermsClient.RequestOptions, - ): Promise> { - const { cursor, expand, includeDeletedData, includeRemoteData, includeShellData, pageSize } = request; - const _queryParams: Record = { - cursor, - expand: expand != null ? expand : undefined, - include_deleted_data: includeDeletedData, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - page_size: pageSize, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/payment-terms", - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaginatedPaymentTermList.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError(_response.error, _response.rawResponse, "GET", "/accounting/v1/payment-terms"); - } - - /** - * Returns a `PaymentTerm` object with the given `id`. - * - * @param {string} id - * @param {Merge.accounting.PaymentTermsRetrieveRequest} request - * @param {PaymentTermsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.paymentTerms.retrieve("id", { - * expand: "company", - * includeRemoteData: true, - * includeShellData: true - * }) - */ - public retrieve( - id: string, - request: Merge.accounting.PaymentTermsRetrieveRequest = {}, - requestOptions?: PaymentTermsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__retrieve(id, request, requestOptions)); - } - - private async __retrieve( - id: string, - request: Merge.accounting.PaymentTermsRetrieveRequest = {}, - requestOptions?: PaymentTermsClient.RequestOptions, - ): Promise> { - const { expand, includeRemoteData, includeShellData } = request; - const _queryParams: Record = { - expand: expand != null ? expand : undefined, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - `accounting/v1/payment-terms/${core.url.encodePathParam(id)}`, - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaymentTerm.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/payment-terms/{id}", - ); - } -} diff --git a/src/api/resources/accounting/resources/paymentTerms/client/index.ts b/src/api/resources/accounting/resources/paymentTerms/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/api/resources/accounting/resources/paymentTerms/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/api/resources/accounting/resources/paymentTerms/client/requests/PaymentTermsListRequest.ts b/src/api/resources/accounting/resources/paymentTerms/client/requests/PaymentTermsListRequest.ts deleted file mode 100644 index b4968983b..000000000 --- a/src/api/resources/accounting/resources/paymentTerms/client/requests/PaymentTermsListRequest.ts +++ /dev/null @@ -1,27 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * @example - * { - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * expand: "company", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * pageSize: 1 - * } - */ -export interface PaymentTermsListRequest { - /** The pagination cursor value. */ - cursor?: string; - /** Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. */ - expand?: "company"; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - includeDeletedData?: boolean; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** Number of results to return per page. */ - pageSize?: number; -} diff --git a/src/api/resources/accounting/resources/paymentTerms/client/requests/PaymentTermsRetrieveRequest.ts b/src/api/resources/accounting/resources/paymentTerms/client/requests/PaymentTermsRetrieveRequest.ts deleted file mode 100644 index a44bdfc42..000000000 --- a/src/api/resources/accounting/resources/paymentTerms/client/requests/PaymentTermsRetrieveRequest.ts +++ /dev/null @@ -1,18 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * @example - * { - * expand: "company", - * includeRemoteData: true, - * includeShellData: true - * } - */ -export interface PaymentTermsRetrieveRequest { - /** Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. */ - expand?: "company"; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; -} diff --git a/src/api/resources/accounting/resources/paymentTerms/client/requests/index.ts b/src/api/resources/accounting/resources/paymentTerms/client/requests/index.ts deleted file mode 100644 index b4dc26712..000000000 --- a/src/api/resources/accounting/resources/paymentTerms/client/requests/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export type { PaymentTermsListRequest } from "./PaymentTermsListRequest"; -export type { PaymentTermsRetrieveRequest } from "./PaymentTermsRetrieveRequest"; diff --git a/src/api/resources/accounting/resources/paymentTerms/exports.ts b/src/api/resources/accounting/resources/paymentTerms/exports.ts deleted file mode 100644 index 8f4f627f4..000000000 --- a/src/api/resources/accounting/resources/paymentTerms/exports.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export { PaymentTermsClient } from "./client/Client"; -export * from "./client/index"; diff --git a/src/api/resources/accounting/resources/paymentTerms/index.ts b/src/api/resources/accounting/resources/paymentTerms/index.ts deleted file mode 100644 index 5ec76921e..000000000 --- a/src/api/resources/accounting/resources/paymentTerms/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./client"; diff --git a/src/api/resources/accounting/resources/payments/client/Client.ts b/src/api/resources/accounting/resources/payments/client/Client.ts deleted file mode 100644 index ab923504e..000000000 --- a/src/api/resources/accounting/resources/payments/client/Client.ts +++ /dev/null @@ -1,745 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../BaseClient"; -import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../../../BaseClient"; -import * as core from "../../../../../../core"; -import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../../../core/headers"; -import * as environments from "../../../../../../environments"; -import { handleNonStatusCodeError } from "../../../../../../errors/handleNonStatusCodeError"; -import * as errors from "../../../../../../errors/index"; -import * as serializers from "../../../../../../serialization/index"; -import type * as Merge from "../../../../../index"; - -export declare namespace PaymentsClient { - export type Options = BaseClientOptions; - - export interface RequestOptions extends BaseRequestOptions {} -} - -export class PaymentsClient { - protected readonly _options: NormalizedClientOptionsWithAuth; - - constructor(options: PaymentsClient.Options) { - this._options = normalizeClientOptionsWithAuth(options); - } - - /** - * Returns a list of `Payment` objects. - * - * @param {Merge.accounting.PaymentsListRequest} request - * @param {PaymentsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.payments.list({ - * accountId: "account_id", - * companyId: "company_id", - * contactId: "contact_id", - * createdAfter: new Date("2024-01-15T09:30:00.000Z"), - * createdBefore: new Date("2024-01-15T09:30:00.000Z"), - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * expand: "account", - * includeDeletedData: true, - * includeRemoteData: true, - * includeRemoteFields: true, - * includeShellData: true, - * modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - * modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - * pageSize: 1, - * remoteId: "remote_id", - * transactionDateAfter: new Date("2024-01-15T09:30:00.000Z"), - * transactionDateBefore: new Date("2024-01-15T09:30:00.000Z") - * }) - */ - public list( - request: Merge.accounting.PaymentsListRequest = {}, - requestOptions?: PaymentsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__list(request, requestOptions)); - } - - private async __list( - request: Merge.accounting.PaymentsListRequest = {}, - requestOptions?: PaymentsClient.RequestOptions, - ): Promise> { - const { - accountId, - companyId, - contactId, - createdAfter, - createdBefore, - cursor, - expand, - includeDeletedData, - includeRemoteData, - includeRemoteFields, - includeShellData, - modifiedAfter, - modifiedBefore, - pageSize, - remoteId, - transactionDateAfter, - transactionDateBefore, - } = request; - const _queryParams: Record = { - account_id: accountId, - company_id: companyId, - contact_id: contactId, - created_after: createdAfter?.toISOString(), - created_before: createdBefore?.toISOString(), - cursor, - expand: - expand != null - ? serializers.accounting.PaymentsListRequestExpand.jsonOrThrow(expand, { - unrecognizedObjectKeys: "strip", - }) - : undefined, - include_deleted_data: includeDeletedData, - include_remote_data: includeRemoteData, - include_remote_fields: includeRemoteFields, - include_shell_data: includeShellData, - modified_after: modifiedAfter?.toISOString(), - modified_before: modifiedBefore?.toISOString(), - page_size: pageSize, - remote_id: remoteId, - transaction_date_after: transactionDateAfter?.toISOString(), - transaction_date_before: transactionDateBefore?.toISOString(), - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/payments", - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaginatedPaymentList.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError(_response.error, _response.rawResponse, "GET", "/accounting/v1/payments"); - } - - /** - * Creates a `Payment` object with the given values. - * - * @param {Merge.accounting.PaymentEndpointRequest} request - * @param {PaymentsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.payments.create({ - * isDebugMode: true, - * runAsync: true, - * model: {} - * }) - */ - public create( - request: Merge.accounting.PaymentEndpointRequest, - requestOptions?: PaymentsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__create(request, requestOptions)); - } - - private async __create( - request: Merge.accounting.PaymentEndpointRequest, - requestOptions?: PaymentsClient.RequestOptions, - ): Promise> { - const { isDebugMode, runAsync, ..._body } = request; - const _queryParams: Record = { - is_debug_mode: isDebugMode, - run_async: runAsync, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/payments", - ), - method: "POST", - headers: _headers, - contentType: "application/json", - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - requestType: "json", - body: serializers.accounting.PaymentEndpointRequest.jsonOrThrow(_body, { unrecognizedObjectKeys: "strip" }), - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaymentResponse.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError(_response.error, _response.rawResponse, "POST", "/accounting/v1/payments"); - } - - /** - * Returns a `Payment` object with the given `id`. - * - * @param {string} id - * @param {Merge.accounting.PaymentsRetrieveRequest} request - * @param {PaymentsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.payments.retrieve("id", { - * expand: "account", - * includeRemoteData: true, - * includeRemoteFields: true, - * includeShellData: true - * }) - */ - public retrieve( - id: string, - request: Merge.accounting.PaymentsRetrieveRequest = {}, - requestOptions?: PaymentsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__retrieve(id, request, requestOptions)); - } - - private async __retrieve( - id: string, - request: Merge.accounting.PaymentsRetrieveRequest = {}, - requestOptions?: PaymentsClient.RequestOptions, - ): Promise> { - const { expand, includeRemoteData, includeRemoteFields, includeShellData } = request; - const _queryParams: Record = { - expand: - expand != null - ? serializers.accounting.PaymentsRetrieveRequestExpand.jsonOrThrow(expand, { - unrecognizedObjectKeys: "strip", - }) - : undefined, - include_remote_data: includeRemoteData, - include_remote_fields: includeRemoteFields, - include_shell_data: includeShellData, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - `accounting/v1/payments/${core.url.encodePathParam(id)}`, - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.Payment.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError(_response.error, _response.rawResponse, "GET", "/accounting/v1/payments/{id}"); - } - - /** - * Updates a `Payment` object with the given `id`. - * - * @param {string} id - * @param {Merge.accounting.PatchedPaymentEndpointRequest} request - * @param {PaymentsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.payments.partialUpdate("id", { - * isDebugMode: true, - * runAsync: true, - * model: {} - * }) - */ - public partialUpdate( - id: string, - request: Merge.accounting.PatchedPaymentEndpointRequest, - requestOptions?: PaymentsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__partialUpdate(id, request, requestOptions)); - } - - private async __partialUpdate( - id: string, - request: Merge.accounting.PatchedPaymentEndpointRequest, - requestOptions?: PaymentsClient.RequestOptions, - ): Promise> { - const { isDebugMode, runAsync, ..._body } = request; - const _queryParams: Record = { - is_debug_mode: isDebugMode, - run_async: runAsync, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - `accounting/v1/payments/${core.url.encodePathParam(id)}`, - ), - method: "PATCH", - headers: _headers, - contentType: "application/json", - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - requestType: "json", - body: serializers.accounting.PatchedPaymentEndpointRequest.jsonOrThrow(_body, { - unrecognizedObjectKeys: "strip", - }), - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaymentResponse.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "PATCH", - "/accounting/v1/payments/{id}", - ); - } - - /** - * Returns a list of `RemoteFieldClass` objects. - * - * @param {Merge.accounting.PaymentsLineItemsRemoteFieldClassesListRequest} request - * @param {PaymentsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.payments.lineItemsRemoteFieldClassesList({ - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * isCommonModelField: true, - * isCustom: true, - * pageSize: 1 - * }) - */ - public lineItemsRemoteFieldClassesList( - request: Merge.accounting.PaymentsLineItemsRemoteFieldClassesListRequest = {}, - requestOptions?: PaymentsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__lineItemsRemoteFieldClassesList(request, requestOptions)); - } - - private async __lineItemsRemoteFieldClassesList( - request: Merge.accounting.PaymentsLineItemsRemoteFieldClassesListRequest = {}, - requestOptions?: PaymentsClient.RequestOptions, - ): Promise> { - const { - cursor, - includeDeletedData, - includeRemoteData, - includeShellData, - isCommonModelField, - isCustom, - pageSize, - } = request; - const _queryParams: Record = { - cursor, - include_deleted_data: includeDeletedData, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - is_common_model_field: isCommonModelField, - is_custom: isCustom, - page_size: pageSize, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/payments/line-items/remote-field-classes", - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaginatedRemoteFieldClassList.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/payments/line-items/remote-field-classes", - ); - } - - /** - * Returns metadata for `Payment` PATCHs. - * - * @param {string} id - * @param {PaymentsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.payments.metaPatchRetrieve("id") - */ - public metaPatchRetrieve( - id: string, - requestOptions?: PaymentsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__metaPatchRetrieve(id, requestOptions)); - } - - private async __metaPatchRetrieve( - id: string, - requestOptions?: PaymentsClient.RequestOptions, - ): Promise> { - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - `accounting/v1/payments/meta/patch/${core.url.encodePathParam(id)}`, - ), - method: "GET", - headers: _headers, - queryParameters: requestOptions?.queryParams, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.MetaResponse.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/payments/meta/patch/{id}", - ); - } - - /** - * Returns metadata for `Payment` POSTs. - * - * @param {PaymentsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.payments.metaPostRetrieve() - */ - public metaPostRetrieve( - requestOptions?: PaymentsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__metaPostRetrieve(requestOptions)); - } - - private async __metaPostRetrieve( - requestOptions?: PaymentsClient.RequestOptions, - ): Promise> { - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/payments/meta/post", - ), - method: "GET", - headers: _headers, - queryParameters: requestOptions?.queryParams, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.MetaResponse.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/payments/meta/post", - ); - } - - /** - * Returns a list of `RemoteFieldClass` objects. - * - * @param {Merge.accounting.PaymentsRemoteFieldClassesListRequest} request - * @param {PaymentsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.payments.remoteFieldClassesList({ - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * isCommonModelField: true, - * isCustom: true, - * pageSize: 1 - * }) - */ - public remoteFieldClassesList( - request: Merge.accounting.PaymentsRemoteFieldClassesListRequest = {}, - requestOptions?: PaymentsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__remoteFieldClassesList(request, requestOptions)); - } - - private async __remoteFieldClassesList( - request: Merge.accounting.PaymentsRemoteFieldClassesListRequest = {}, - requestOptions?: PaymentsClient.RequestOptions, - ): Promise> { - const { - cursor, - includeDeletedData, - includeRemoteData, - includeShellData, - isCommonModelField, - isCustom, - pageSize, - } = request; - const _queryParams: Record = { - cursor, - include_deleted_data: includeDeletedData, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - is_common_model_field: isCommonModelField, - is_custom: isCustom, - page_size: pageSize, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/payments/remote-field-classes", - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaginatedRemoteFieldClassList.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/payments/remote-field-classes", - ); - } -} diff --git a/src/api/resources/accounting/resources/payments/client/index.ts b/src/api/resources/accounting/resources/payments/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/api/resources/accounting/resources/payments/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/api/resources/accounting/resources/payments/client/requests/PatchedPaymentEndpointRequest.ts b/src/api/resources/accounting/resources/payments/client/requests/PatchedPaymentEndpointRequest.ts deleted file mode 100644 index 0f5966509..000000000 --- a/src/api/resources/accounting/resources/payments/client/requests/PatchedPaymentEndpointRequest.ts +++ /dev/null @@ -1,19 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * isDebugMode: true, - * runAsync: true, - * model: {} - * } - */ -export interface PatchedPaymentEndpointRequest { - /** Whether to include debug fields (such as log file links) in the response. */ - isDebugMode?: boolean; - /** Whether or not third-party updates should be run asynchronously. */ - runAsync?: boolean; - model: Merge.accounting.PatchedPaymentRequest; -} diff --git a/src/api/resources/accounting/resources/payments/client/requests/PaymentEndpointRequest.ts b/src/api/resources/accounting/resources/payments/client/requests/PaymentEndpointRequest.ts deleted file mode 100644 index 4e68380d0..000000000 --- a/src/api/resources/accounting/resources/payments/client/requests/PaymentEndpointRequest.ts +++ /dev/null @@ -1,19 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * isDebugMode: true, - * runAsync: true, - * model: {} - * } - */ -export interface PaymentEndpointRequest { - /** Whether to include debug fields (such as log file links) in the response. */ - isDebugMode?: boolean; - /** Whether or not third-party updates should be run asynchronously. */ - runAsync?: boolean; - model: Merge.accounting.PaymentRequest; -} diff --git a/src/api/resources/accounting/resources/payments/client/requests/PaymentsLineItemsRemoteFieldClassesListRequest.ts b/src/api/resources/accounting/resources/payments/client/requests/PaymentsLineItemsRemoteFieldClassesListRequest.ts deleted file mode 100644 index d69350219..000000000 --- a/src/api/resources/accounting/resources/payments/client/requests/PaymentsLineItemsRemoteFieldClassesListRequest.ts +++ /dev/null @@ -1,30 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * @example - * { - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * isCommonModelField: true, - * isCustom: true, - * pageSize: 1 - * } - */ -export interface PaymentsLineItemsRemoteFieldClassesListRequest { - /** The pagination cursor value. */ - cursor?: string; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - includeDeletedData?: boolean; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** If provided, will only return remote field classes with this is_common_model_field value */ - isCommonModelField?: boolean; - /** If provided, will only return remote fields classes with this is_custom value */ - isCustom?: boolean; - /** Number of results to return per page. */ - pageSize?: number; -} diff --git a/src/api/resources/accounting/resources/payments/client/requests/PaymentsListRequest.ts b/src/api/resources/accounting/resources/payments/client/requests/PaymentsListRequest.ts deleted file mode 100644 index fde75fdae..000000000 --- a/src/api/resources/accounting/resources/payments/client/requests/PaymentsListRequest.ts +++ /dev/null @@ -1,62 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * accountId: "account_id", - * companyId: "company_id", - * contactId: "contact_id", - * createdAfter: new Date("2024-01-15T09:30:00.000Z"), - * createdBefore: new Date("2024-01-15T09:30:00.000Z"), - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * expand: "account", - * includeDeletedData: true, - * includeRemoteData: true, - * includeRemoteFields: true, - * includeShellData: true, - * modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - * modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - * pageSize: 1, - * remoteId: "remote_id", - * transactionDateAfter: new Date("2024-01-15T09:30:00.000Z"), - * transactionDateBefore: new Date("2024-01-15T09:30:00.000Z") - * } - */ -export interface PaymentsListRequest { - /** If provided, will only return payments for this account. */ - accountId?: string; - /** If provided, will only return payments for this company. */ - companyId?: string; - /** If provided, will only return payments for this contact. */ - contactId?: string; - /** If provided, will only return objects created after this datetime. */ - createdAfter?: Date; - /** If provided, will only return objects created before this datetime. */ - createdBefore?: Date; - /** The pagination cursor value. */ - cursor?: string; - /** Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. */ - expand?: Merge.accounting.PaymentsListRequestExpand; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - includeDeletedData?: boolean; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include all remote fields, including fields that Merge did not map to common models, in a normalized format. */ - includeRemoteFields?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** If provided, only objects synced by Merge after this date time will be returned. */ - modifiedAfter?: Date; - /** If provided, only objects synced by Merge before this date time will be returned. */ - modifiedBefore?: Date; - /** Number of results to return per page. */ - pageSize?: number; - /** The API provider's ID for the given object. */ - remoteId?: string; - /** If provided, will only return objects created after this datetime. */ - transactionDateAfter?: Date; - /** If provided, will only return objects created before this datetime. */ - transactionDateBefore?: Date; -} diff --git a/src/api/resources/accounting/resources/payments/client/requests/PaymentsRemoteFieldClassesListRequest.ts b/src/api/resources/accounting/resources/payments/client/requests/PaymentsRemoteFieldClassesListRequest.ts deleted file mode 100644 index 1dfa8f486..000000000 --- a/src/api/resources/accounting/resources/payments/client/requests/PaymentsRemoteFieldClassesListRequest.ts +++ /dev/null @@ -1,30 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * @example - * { - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * isCommonModelField: true, - * isCustom: true, - * pageSize: 1 - * } - */ -export interface PaymentsRemoteFieldClassesListRequest { - /** The pagination cursor value. */ - cursor?: string; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - includeDeletedData?: boolean; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** If provided, will only return remote field classes with this is_common_model_field value */ - isCommonModelField?: boolean; - /** If provided, will only return remote fields classes with this is_custom value */ - isCustom?: boolean; - /** Number of results to return per page. */ - pageSize?: number; -} diff --git a/src/api/resources/accounting/resources/payments/client/requests/PaymentsRetrieveRequest.ts b/src/api/resources/accounting/resources/payments/client/requests/PaymentsRetrieveRequest.ts deleted file mode 100644 index 871f2743b..000000000 --- a/src/api/resources/accounting/resources/payments/client/requests/PaymentsRetrieveRequest.ts +++ /dev/null @@ -1,23 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * expand: "account", - * includeRemoteData: true, - * includeRemoteFields: true, - * includeShellData: true - * } - */ -export interface PaymentsRetrieveRequest { - /** Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. */ - expand?: Merge.accounting.PaymentsRetrieveRequestExpand; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include all remote fields, including fields that Merge did not map to common models, in a normalized format. */ - includeRemoteFields?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; -} diff --git a/src/api/resources/accounting/resources/payments/client/requests/index.ts b/src/api/resources/accounting/resources/payments/client/requests/index.ts deleted file mode 100644 index 89a8f11ac..000000000 --- a/src/api/resources/accounting/resources/payments/client/requests/index.ts +++ /dev/null @@ -1,6 +0,0 @@ -export type { PatchedPaymentEndpointRequest } from "./PatchedPaymentEndpointRequest"; -export type { PaymentEndpointRequest } from "./PaymentEndpointRequest"; -export type { PaymentsLineItemsRemoteFieldClassesListRequest } from "./PaymentsLineItemsRemoteFieldClassesListRequest"; -export type { PaymentsListRequest } from "./PaymentsListRequest"; -export type { PaymentsRemoteFieldClassesListRequest } from "./PaymentsRemoteFieldClassesListRequest"; -export type { PaymentsRetrieveRequest } from "./PaymentsRetrieveRequest"; diff --git a/src/api/resources/accounting/resources/payments/exports.ts b/src/api/resources/accounting/resources/payments/exports.ts deleted file mode 100644 index eba9d5cce..000000000 --- a/src/api/resources/accounting/resources/payments/exports.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export { PaymentsClient } from "./client/Client"; -export * from "./client/index"; diff --git a/src/api/resources/accounting/resources/payments/index.ts b/src/api/resources/accounting/resources/payments/index.ts deleted file mode 100644 index d2ec2302c..000000000 --- a/src/api/resources/accounting/resources/payments/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./client"; -export * from "./types"; diff --git a/src/api/resources/accounting/resources/payments/types/PaymentsListRequestExpand.ts b/src/api/resources/accounting/resources/payments/types/PaymentsListRequestExpand.ts deleted file mode 100644 index 250d09c52..000000000 --- a/src/api/resources/accounting/resources/payments/types/PaymentsListRequestExpand.ts +++ /dev/null @@ -1,164 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export const PaymentsListRequestExpand = { - Account: "account", - AccountAccountingPeriod: "account,accounting_period", - AccountAccountingPeriodPaymentMethod: "account,accounting_period,payment_method", - AccountCompany: "account,company", - AccountCompanyAccountingPeriod: "account,company,accounting_period", - AccountCompanyAccountingPeriodPaymentMethod: "account,company,accounting_period,payment_method", - AccountCompanyPaymentMethod: "account,company,payment_method", - AccountPaymentMethod: "account,payment_method", - AccountingPeriod: "accounting_period", - AccountingPeriodPaymentMethod: "accounting_period,payment_method", - AppliedToLines: "applied_to_lines", - AppliedToLinesAccount: "applied_to_lines,account", - AppliedToLinesAccountAccountingPeriod: "applied_to_lines,account,accounting_period", - AppliedToLinesAccountAccountingPeriodPaymentMethod: "applied_to_lines,account,accounting_period,payment_method", - AppliedToLinesAccountCompany: "applied_to_lines,account,company", - AppliedToLinesAccountCompanyAccountingPeriod: "applied_to_lines,account,company,accounting_period", - AppliedToLinesAccountCompanyAccountingPeriodPaymentMethod: - "applied_to_lines,account,company,accounting_period,payment_method", - AppliedToLinesAccountCompanyPaymentMethod: "applied_to_lines,account,company,payment_method", - AppliedToLinesAccountPaymentMethod: "applied_to_lines,account,payment_method", - AppliedToLinesAccountingPeriod: "applied_to_lines,accounting_period", - AppliedToLinesAccountingPeriodPaymentMethod: "applied_to_lines,accounting_period,payment_method", - AppliedToLinesCompany: "applied_to_lines,company", - AppliedToLinesCompanyAccountingPeriod: "applied_to_lines,company,accounting_period", - AppliedToLinesCompanyAccountingPeriodPaymentMethod: "applied_to_lines,company,accounting_period,payment_method", - AppliedToLinesCompanyPaymentMethod: "applied_to_lines,company,payment_method", - AppliedToLinesContact: "applied_to_lines,contact", - AppliedToLinesContactAccount: "applied_to_lines,contact,account", - AppliedToLinesContactAccountAccountingPeriod: "applied_to_lines,contact,account,accounting_period", - AppliedToLinesContactAccountAccountingPeriodPaymentMethod: - "applied_to_lines,contact,account,accounting_period,payment_method", - AppliedToLinesContactAccountCompany: "applied_to_lines,contact,account,company", - AppliedToLinesContactAccountCompanyAccountingPeriod: "applied_to_lines,contact,account,company,accounting_period", - AppliedToLinesContactAccountCompanyAccountingPeriodPaymentMethod: - "applied_to_lines,contact,account,company,accounting_period,payment_method", - AppliedToLinesContactAccountCompanyPaymentMethod: "applied_to_lines,contact,account,company,payment_method", - AppliedToLinesContactAccountPaymentMethod: "applied_to_lines,contact,account,payment_method", - AppliedToLinesContactAccountingPeriod: "applied_to_lines,contact,accounting_period", - AppliedToLinesContactAccountingPeriodPaymentMethod: "applied_to_lines,contact,accounting_period,payment_method", - AppliedToLinesContactCompany: "applied_to_lines,contact,company", - AppliedToLinesContactCompanyAccountingPeriod: "applied_to_lines,contact,company,accounting_period", - AppliedToLinesContactCompanyAccountingPeriodPaymentMethod: - "applied_to_lines,contact,company,accounting_period,payment_method", - AppliedToLinesContactCompanyPaymentMethod: "applied_to_lines,contact,company,payment_method", - AppliedToLinesContactPaymentMethod: "applied_to_lines,contact,payment_method", - AppliedToLinesPaymentMethod: "applied_to_lines,payment_method", - Company: "company", - CompanyAccountingPeriod: "company,accounting_period", - CompanyAccountingPeriodPaymentMethod: "company,accounting_period,payment_method", - CompanyPaymentMethod: "company,payment_method", - Contact: "contact", - ContactAccount: "contact,account", - ContactAccountAccountingPeriod: "contact,account,accounting_period", - ContactAccountAccountingPeriodPaymentMethod: "contact,account,accounting_period,payment_method", - ContactAccountCompany: "contact,account,company", - ContactAccountCompanyAccountingPeriod: "contact,account,company,accounting_period", - ContactAccountCompanyAccountingPeriodPaymentMethod: "contact,account,company,accounting_period,payment_method", - ContactAccountCompanyPaymentMethod: "contact,account,company,payment_method", - ContactAccountPaymentMethod: "contact,account,payment_method", - ContactAccountingPeriod: "contact,accounting_period", - ContactAccountingPeriodPaymentMethod: "contact,accounting_period,payment_method", - ContactCompany: "contact,company", - ContactCompanyAccountingPeriod: "contact,company,accounting_period", - ContactCompanyAccountingPeriodPaymentMethod: "contact,company,accounting_period,payment_method", - ContactCompanyPaymentMethod: "contact,company,payment_method", - ContactPaymentMethod: "contact,payment_method", - PaymentMethod: "payment_method", - TrackingCategories: "tracking_categories", - TrackingCategoriesAccount: "tracking_categories,account", - TrackingCategoriesAccountAccountingPeriod: "tracking_categories,account,accounting_period", - TrackingCategoriesAccountAccountingPeriodPaymentMethod: - "tracking_categories,account,accounting_period,payment_method", - TrackingCategoriesAccountCompany: "tracking_categories,account,company", - TrackingCategoriesAccountCompanyAccountingPeriod: "tracking_categories,account,company,accounting_period", - TrackingCategoriesAccountCompanyAccountingPeriodPaymentMethod: - "tracking_categories,account,company,accounting_period,payment_method", - TrackingCategoriesAccountCompanyPaymentMethod: "tracking_categories,account,company,payment_method", - TrackingCategoriesAccountPaymentMethod: "tracking_categories,account,payment_method", - TrackingCategoriesAccountingPeriod: "tracking_categories,accounting_period", - TrackingCategoriesAccountingPeriodPaymentMethod: "tracking_categories,accounting_period,payment_method", - TrackingCategoriesAppliedToLines: "tracking_categories,applied_to_lines", - TrackingCategoriesAppliedToLinesAccount: "tracking_categories,applied_to_lines,account", - TrackingCategoriesAppliedToLinesAccountAccountingPeriod: - "tracking_categories,applied_to_lines,account,accounting_period", - TrackingCategoriesAppliedToLinesAccountAccountingPeriodPaymentMethod: - "tracking_categories,applied_to_lines,account,accounting_period,payment_method", - TrackingCategoriesAppliedToLinesAccountCompany: "tracking_categories,applied_to_lines,account,company", - TrackingCategoriesAppliedToLinesAccountCompanyAccountingPeriod: - "tracking_categories,applied_to_lines,account,company,accounting_period", - TrackingCategoriesAppliedToLinesAccountCompanyAccountingPeriodPaymentMethod: - "tracking_categories,applied_to_lines,account,company,accounting_period,payment_method", - TrackingCategoriesAppliedToLinesAccountCompanyPaymentMethod: - "tracking_categories,applied_to_lines,account,company,payment_method", - TrackingCategoriesAppliedToLinesAccountPaymentMethod: "tracking_categories,applied_to_lines,account,payment_method", - TrackingCategoriesAppliedToLinesAccountingPeriod: "tracking_categories,applied_to_lines,accounting_period", - TrackingCategoriesAppliedToLinesAccountingPeriodPaymentMethod: - "tracking_categories,applied_to_lines,accounting_period,payment_method", - TrackingCategoriesAppliedToLinesCompany: "tracking_categories,applied_to_lines,company", - TrackingCategoriesAppliedToLinesCompanyAccountingPeriod: - "tracking_categories,applied_to_lines,company,accounting_period", - TrackingCategoriesAppliedToLinesCompanyAccountingPeriodPaymentMethod: - "tracking_categories,applied_to_lines,company,accounting_period,payment_method", - TrackingCategoriesAppliedToLinesCompanyPaymentMethod: "tracking_categories,applied_to_lines,company,payment_method", - TrackingCategoriesAppliedToLinesContact: "tracking_categories,applied_to_lines,contact", - TrackingCategoriesAppliedToLinesContactAccount: "tracking_categories,applied_to_lines,contact,account", - TrackingCategoriesAppliedToLinesContactAccountAccountingPeriod: - "tracking_categories,applied_to_lines,contact,account,accounting_period", - TrackingCategoriesAppliedToLinesContactAccountAccountingPeriodPaymentMethod: - "tracking_categories,applied_to_lines,contact,account,accounting_period,payment_method", - TrackingCategoriesAppliedToLinesContactAccountCompany: - "tracking_categories,applied_to_lines,contact,account,company", - TrackingCategoriesAppliedToLinesContactAccountCompanyAccountingPeriod: - "tracking_categories,applied_to_lines,contact,account,company,accounting_period", - TrackingCategoriesAppliedToLinesContactAccountCompanyAccountingPeriodPaymentMethod: - "tracking_categories,applied_to_lines,contact,account,company,accounting_period,payment_method", - TrackingCategoriesAppliedToLinesContactAccountCompanyPaymentMethod: - "tracking_categories,applied_to_lines,contact,account,company,payment_method", - TrackingCategoriesAppliedToLinesContactAccountPaymentMethod: - "tracking_categories,applied_to_lines,contact,account,payment_method", - TrackingCategoriesAppliedToLinesContactAccountingPeriod: - "tracking_categories,applied_to_lines,contact,accounting_period", - TrackingCategoriesAppliedToLinesContactAccountingPeriodPaymentMethod: - "tracking_categories,applied_to_lines,contact,accounting_period,payment_method", - TrackingCategoriesAppliedToLinesContactCompany: "tracking_categories,applied_to_lines,contact,company", - TrackingCategoriesAppliedToLinesContactCompanyAccountingPeriod: - "tracking_categories,applied_to_lines,contact,company,accounting_period", - TrackingCategoriesAppliedToLinesContactCompanyAccountingPeriodPaymentMethod: - "tracking_categories,applied_to_lines,contact,company,accounting_period,payment_method", - TrackingCategoriesAppliedToLinesContactCompanyPaymentMethod: - "tracking_categories,applied_to_lines,contact,company,payment_method", - TrackingCategoriesAppliedToLinesContactPaymentMethod: "tracking_categories,applied_to_lines,contact,payment_method", - TrackingCategoriesAppliedToLinesPaymentMethod: "tracking_categories,applied_to_lines,payment_method", - TrackingCategoriesCompany: "tracking_categories,company", - TrackingCategoriesCompanyAccountingPeriod: "tracking_categories,company,accounting_period", - TrackingCategoriesCompanyAccountingPeriodPaymentMethod: - "tracking_categories,company,accounting_period,payment_method", - TrackingCategoriesCompanyPaymentMethod: "tracking_categories,company,payment_method", - TrackingCategoriesContact: "tracking_categories,contact", - TrackingCategoriesContactAccount: "tracking_categories,contact,account", - TrackingCategoriesContactAccountAccountingPeriod: "tracking_categories,contact,account,accounting_period", - TrackingCategoriesContactAccountAccountingPeriodPaymentMethod: - "tracking_categories,contact,account,accounting_period,payment_method", - TrackingCategoriesContactAccountCompany: "tracking_categories,contact,account,company", - TrackingCategoriesContactAccountCompanyAccountingPeriod: - "tracking_categories,contact,account,company,accounting_period", - TrackingCategoriesContactAccountCompanyAccountingPeriodPaymentMethod: - "tracking_categories,contact,account,company,accounting_period,payment_method", - TrackingCategoriesContactAccountCompanyPaymentMethod: "tracking_categories,contact,account,company,payment_method", - TrackingCategoriesContactAccountPaymentMethod: "tracking_categories,contact,account,payment_method", - TrackingCategoriesContactAccountingPeriod: "tracking_categories,contact,accounting_period", - TrackingCategoriesContactAccountingPeriodPaymentMethod: - "tracking_categories,contact,accounting_period,payment_method", - TrackingCategoriesContactCompany: "tracking_categories,contact,company", - TrackingCategoriesContactCompanyAccountingPeriod: "tracking_categories,contact,company,accounting_period", - TrackingCategoriesContactCompanyAccountingPeriodPaymentMethod: - "tracking_categories,contact,company,accounting_period,payment_method", - TrackingCategoriesContactCompanyPaymentMethod: "tracking_categories,contact,company,payment_method", - TrackingCategoriesContactPaymentMethod: "tracking_categories,contact,payment_method", - TrackingCategoriesPaymentMethod: "tracking_categories,payment_method", -} as const; -export type PaymentsListRequestExpand = (typeof PaymentsListRequestExpand)[keyof typeof PaymentsListRequestExpand]; diff --git a/src/api/resources/accounting/resources/payments/types/PaymentsRetrieveRequestExpand.ts b/src/api/resources/accounting/resources/payments/types/PaymentsRetrieveRequestExpand.ts deleted file mode 100644 index ec58af34d..000000000 --- a/src/api/resources/accounting/resources/payments/types/PaymentsRetrieveRequestExpand.ts +++ /dev/null @@ -1,165 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export const PaymentsRetrieveRequestExpand = { - Account: "account", - AccountAccountingPeriod: "account,accounting_period", - AccountAccountingPeriodPaymentMethod: "account,accounting_period,payment_method", - AccountCompany: "account,company", - AccountCompanyAccountingPeriod: "account,company,accounting_period", - AccountCompanyAccountingPeriodPaymentMethod: "account,company,accounting_period,payment_method", - AccountCompanyPaymentMethod: "account,company,payment_method", - AccountPaymentMethod: "account,payment_method", - AccountingPeriod: "accounting_period", - AccountingPeriodPaymentMethod: "accounting_period,payment_method", - AppliedToLines: "applied_to_lines", - AppliedToLinesAccount: "applied_to_lines,account", - AppliedToLinesAccountAccountingPeriod: "applied_to_lines,account,accounting_period", - AppliedToLinesAccountAccountingPeriodPaymentMethod: "applied_to_lines,account,accounting_period,payment_method", - AppliedToLinesAccountCompany: "applied_to_lines,account,company", - AppliedToLinesAccountCompanyAccountingPeriod: "applied_to_lines,account,company,accounting_period", - AppliedToLinesAccountCompanyAccountingPeriodPaymentMethod: - "applied_to_lines,account,company,accounting_period,payment_method", - AppliedToLinesAccountCompanyPaymentMethod: "applied_to_lines,account,company,payment_method", - AppliedToLinesAccountPaymentMethod: "applied_to_lines,account,payment_method", - AppliedToLinesAccountingPeriod: "applied_to_lines,accounting_period", - AppliedToLinesAccountingPeriodPaymentMethod: "applied_to_lines,accounting_period,payment_method", - AppliedToLinesCompany: "applied_to_lines,company", - AppliedToLinesCompanyAccountingPeriod: "applied_to_lines,company,accounting_period", - AppliedToLinesCompanyAccountingPeriodPaymentMethod: "applied_to_lines,company,accounting_period,payment_method", - AppliedToLinesCompanyPaymentMethod: "applied_to_lines,company,payment_method", - AppliedToLinesContact: "applied_to_lines,contact", - AppliedToLinesContactAccount: "applied_to_lines,contact,account", - AppliedToLinesContactAccountAccountingPeriod: "applied_to_lines,contact,account,accounting_period", - AppliedToLinesContactAccountAccountingPeriodPaymentMethod: - "applied_to_lines,contact,account,accounting_period,payment_method", - AppliedToLinesContactAccountCompany: "applied_to_lines,contact,account,company", - AppliedToLinesContactAccountCompanyAccountingPeriod: "applied_to_lines,contact,account,company,accounting_period", - AppliedToLinesContactAccountCompanyAccountingPeriodPaymentMethod: - "applied_to_lines,contact,account,company,accounting_period,payment_method", - AppliedToLinesContactAccountCompanyPaymentMethod: "applied_to_lines,contact,account,company,payment_method", - AppliedToLinesContactAccountPaymentMethod: "applied_to_lines,contact,account,payment_method", - AppliedToLinesContactAccountingPeriod: "applied_to_lines,contact,accounting_period", - AppliedToLinesContactAccountingPeriodPaymentMethod: "applied_to_lines,contact,accounting_period,payment_method", - AppliedToLinesContactCompany: "applied_to_lines,contact,company", - AppliedToLinesContactCompanyAccountingPeriod: "applied_to_lines,contact,company,accounting_period", - AppliedToLinesContactCompanyAccountingPeriodPaymentMethod: - "applied_to_lines,contact,company,accounting_period,payment_method", - AppliedToLinesContactCompanyPaymentMethod: "applied_to_lines,contact,company,payment_method", - AppliedToLinesContactPaymentMethod: "applied_to_lines,contact,payment_method", - AppliedToLinesPaymentMethod: "applied_to_lines,payment_method", - Company: "company", - CompanyAccountingPeriod: "company,accounting_period", - CompanyAccountingPeriodPaymentMethod: "company,accounting_period,payment_method", - CompanyPaymentMethod: "company,payment_method", - Contact: "contact", - ContactAccount: "contact,account", - ContactAccountAccountingPeriod: "contact,account,accounting_period", - ContactAccountAccountingPeriodPaymentMethod: "contact,account,accounting_period,payment_method", - ContactAccountCompany: "contact,account,company", - ContactAccountCompanyAccountingPeriod: "contact,account,company,accounting_period", - ContactAccountCompanyAccountingPeriodPaymentMethod: "contact,account,company,accounting_period,payment_method", - ContactAccountCompanyPaymentMethod: "contact,account,company,payment_method", - ContactAccountPaymentMethod: "contact,account,payment_method", - ContactAccountingPeriod: "contact,accounting_period", - ContactAccountingPeriodPaymentMethod: "contact,accounting_period,payment_method", - ContactCompany: "contact,company", - ContactCompanyAccountingPeriod: "contact,company,accounting_period", - ContactCompanyAccountingPeriodPaymentMethod: "contact,company,accounting_period,payment_method", - ContactCompanyPaymentMethod: "contact,company,payment_method", - ContactPaymentMethod: "contact,payment_method", - PaymentMethod: "payment_method", - TrackingCategories: "tracking_categories", - TrackingCategoriesAccount: "tracking_categories,account", - TrackingCategoriesAccountAccountingPeriod: "tracking_categories,account,accounting_period", - TrackingCategoriesAccountAccountingPeriodPaymentMethod: - "tracking_categories,account,accounting_period,payment_method", - TrackingCategoriesAccountCompany: "tracking_categories,account,company", - TrackingCategoriesAccountCompanyAccountingPeriod: "tracking_categories,account,company,accounting_period", - TrackingCategoriesAccountCompanyAccountingPeriodPaymentMethod: - "tracking_categories,account,company,accounting_period,payment_method", - TrackingCategoriesAccountCompanyPaymentMethod: "tracking_categories,account,company,payment_method", - TrackingCategoriesAccountPaymentMethod: "tracking_categories,account,payment_method", - TrackingCategoriesAccountingPeriod: "tracking_categories,accounting_period", - TrackingCategoriesAccountingPeriodPaymentMethod: "tracking_categories,accounting_period,payment_method", - TrackingCategoriesAppliedToLines: "tracking_categories,applied_to_lines", - TrackingCategoriesAppliedToLinesAccount: "tracking_categories,applied_to_lines,account", - TrackingCategoriesAppliedToLinesAccountAccountingPeriod: - "tracking_categories,applied_to_lines,account,accounting_period", - TrackingCategoriesAppliedToLinesAccountAccountingPeriodPaymentMethod: - "tracking_categories,applied_to_lines,account,accounting_period,payment_method", - TrackingCategoriesAppliedToLinesAccountCompany: "tracking_categories,applied_to_lines,account,company", - TrackingCategoriesAppliedToLinesAccountCompanyAccountingPeriod: - "tracking_categories,applied_to_lines,account,company,accounting_period", - TrackingCategoriesAppliedToLinesAccountCompanyAccountingPeriodPaymentMethod: - "tracking_categories,applied_to_lines,account,company,accounting_period,payment_method", - TrackingCategoriesAppliedToLinesAccountCompanyPaymentMethod: - "tracking_categories,applied_to_lines,account,company,payment_method", - TrackingCategoriesAppliedToLinesAccountPaymentMethod: "tracking_categories,applied_to_lines,account,payment_method", - TrackingCategoriesAppliedToLinesAccountingPeriod: "tracking_categories,applied_to_lines,accounting_period", - TrackingCategoriesAppliedToLinesAccountingPeriodPaymentMethod: - "tracking_categories,applied_to_lines,accounting_period,payment_method", - TrackingCategoriesAppliedToLinesCompany: "tracking_categories,applied_to_lines,company", - TrackingCategoriesAppliedToLinesCompanyAccountingPeriod: - "tracking_categories,applied_to_lines,company,accounting_period", - TrackingCategoriesAppliedToLinesCompanyAccountingPeriodPaymentMethod: - "tracking_categories,applied_to_lines,company,accounting_period,payment_method", - TrackingCategoriesAppliedToLinesCompanyPaymentMethod: "tracking_categories,applied_to_lines,company,payment_method", - TrackingCategoriesAppliedToLinesContact: "tracking_categories,applied_to_lines,contact", - TrackingCategoriesAppliedToLinesContactAccount: "tracking_categories,applied_to_lines,contact,account", - TrackingCategoriesAppliedToLinesContactAccountAccountingPeriod: - "tracking_categories,applied_to_lines,contact,account,accounting_period", - TrackingCategoriesAppliedToLinesContactAccountAccountingPeriodPaymentMethod: - "tracking_categories,applied_to_lines,contact,account,accounting_period,payment_method", - TrackingCategoriesAppliedToLinesContactAccountCompany: - "tracking_categories,applied_to_lines,contact,account,company", - TrackingCategoriesAppliedToLinesContactAccountCompanyAccountingPeriod: - "tracking_categories,applied_to_lines,contact,account,company,accounting_period", - TrackingCategoriesAppliedToLinesContactAccountCompanyAccountingPeriodPaymentMethod: - "tracking_categories,applied_to_lines,contact,account,company,accounting_period,payment_method", - TrackingCategoriesAppliedToLinesContactAccountCompanyPaymentMethod: - "tracking_categories,applied_to_lines,contact,account,company,payment_method", - TrackingCategoriesAppliedToLinesContactAccountPaymentMethod: - "tracking_categories,applied_to_lines,contact,account,payment_method", - TrackingCategoriesAppliedToLinesContactAccountingPeriod: - "tracking_categories,applied_to_lines,contact,accounting_period", - TrackingCategoriesAppliedToLinesContactAccountingPeriodPaymentMethod: - "tracking_categories,applied_to_lines,contact,accounting_period,payment_method", - TrackingCategoriesAppliedToLinesContactCompany: "tracking_categories,applied_to_lines,contact,company", - TrackingCategoriesAppliedToLinesContactCompanyAccountingPeriod: - "tracking_categories,applied_to_lines,contact,company,accounting_period", - TrackingCategoriesAppliedToLinesContactCompanyAccountingPeriodPaymentMethod: - "tracking_categories,applied_to_lines,contact,company,accounting_period,payment_method", - TrackingCategoriesAppliedToLinesContactCompanyPaymentMethod: - "tracking_categories,applied_to_lines,contact,company,payment_method", - TrackingCategoriesAppliedToLinesContactPaymentMethod: "tracking_categories,applied_to_lines,contact,payment_method", - TrackingCategoriesAppliedToLinesPaymentMethod: "tracking_categories,applied_to_lines,payment_method", - TrackingCategoriesCompany: "tracking_categories,company", - TrackingCategoriesCompanyAccountingPeriod: "tracking_categories,company,accounting_period", - TrackingCategoriesCompanyAccountingPeriodPaymentMethod: - "tracking_categories,company,accounting_period,payment_method", - TrackingCategoriesCompanyPaymentMethod: "tracking_categories,company,payment_method", - TrackingCategoriesContact: "tracking_categories,contact", - TrackingCategoriesContactAccount: "tracking_categories,contact,account", - TrackingCategoriesContactAccountAccountingPeriod: "tracking_categories,contact,account,accounting_period", - TrackingCategoriesContactAccountAccountingPeriodPaymentMethod: - "tracking_categories,contact,account,accounting_period,payment_method", - TrackingCategoriesContactAccountCompany: "tracking_categories,contact,account,company", - TrackingCategoriesContactAccountCompanyAccountingPeriod: - "tracking_categories,contact,account,company,accounting_period", - TrackingCategoriesContactAccountCompanyAccountingPeriodPaymentMethod: - "tracking_categories,contact,account,company,accounting_period,payment_method", - TrackingCategoriesContactAccountCompanyPaymentMethod: "tracking_categories,contact,account,company,payment_method", - TrackingCategoriesContactAccountPaymentMethod: "tracking_categories,contact,account,payment_method", - TrackingCategoriesContactAccountingPeriod: "tracking_categories,contact,accounting_period", - TrackingCategoriesContactAccountingPeriodPaymentMethod: - "tracking_categories,contact,accounting_period,payment_method", - TrackingCategoriesContactCompany: "tracking_categories,contact,company", - TrackingCategoriesContactCompanyAccountingPeriod: "tracking_categories,contact,company,accounting_period", - TrackingCategoriesContactCompanyAccountingPeriodPaymentMethod: - "tracking_categories,contact,company,accounting_period,payment_method", - TrackingCategoriesContactCompanyPaymentMethod: "tracking_categories,contact,company,payment_method", - TrackingCategoriesContactPaymentMethod: "tracking_categories,contact,payment_method", - TrackingCategoriesPaymentMethod: "tracking_categories,payment_method", -} as const; -export type PaymentsRetrieveRequestExpand = - (typeof PaymentsRetrieveRequestExpand)[keyof typeof PaymentsRetrieveRequestExpand]; diff --git a/src/api/resources/accounting/resources/payments/types/index.ts b/src/api/resources/accounting/resources/payments/types/index.ts deleted file mode 100644 index 56e4a3693..000000000 --- a/src/api/resources/accounting/resources/payments/types/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./PaymentsListRequestExpand"; -export * from "./PaymentsRetrieveRequestExpand"; diff --git a/src/api/resources/accounting/resources/phoneNumbers/client/Client.ts b/src/api/resources/accounting/resources/phoneNumbers/client/Client.ts deleted file mode 100644 index e100bcc68..000000000 --- a/src/api/resources/accounting/resources/phoneNumbers/client/Client.ts +++ /dev/null @@ -1,108 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../BaseClient"; -import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../../../BaseClient"; -import * as core from "../../../../../../core"; -import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../../../core/headers"; -import * as environments from "../../../../../../environments"; -import { handleNonStatusCodeError } from "../../../../../../errors/handleNonStatusCodeError"; -import * as errors from "../../../../../../errors/index"; -import * as serializers from "../../../../../../serialization/index"; -import type * as Merge from "../../../../../index"; - -export declare namespace PhoneNumbersClient { - export type Options = BaseClientOptions; - - export interface RequestOptions extends BaseRequestOptions {} -} - -export class PhoneNumbersClient { - protected readonly _options: NormalizedClientOptionsWithAuth; - - constructor(options: PhoneNumbersClient.Options) { - this._options = normalizeClientOptionsWithAuth(options); - } - - /** - * Returns an `AccountingPhoneNumber` object with the given `id`. - * - * @param {string} id - * @param {Merge.accounting.PhoneNumbersRetrieveRequest} request - * @param {PhoneNumbersClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.phoneNumbers.retrieve("id", { - * includeRemoteData: true, - * includeShellData: true - * }) - */ - public retrieve( - id: string, - request: Merge.accounting.PhoneNumbersRetrieveRequest = {}, - requestOptions?: PhoneNumbersClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__retrieve(id, request, requestOptions)); - } - - private async __retrieve( - id: string, - request: Merge.accounting.PhoneNumbersRetrieveRequest = {}, - requestOptions?: PhoneNumbersClient.RequestOptions, - ): Promise> { - const { includeRemoteData, includeShellData } = request; - const _queryParams: Record = { - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - `accounting/v1/phone-numbers/${core.url.encodePathParam(id)}`, - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.AccountingPhoneNumber.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/phone-numbers/{id}", - ); - } -} diff --git a/src/api/resources/accounting/resources/phoneNumbers/client/index.ts b/src/api/resources/accounting/resources/phoneNumbers/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/api/resources/accounting/resources/phoneNumbers/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/api/resources/accounting/resources/phoneNumbers/client/requests/PhoneNumbersRetrieveRequest.ts b/src/api/resources/accounting/resources/phoneNumbers/client/requests/PhoneNumbersRetrieveRequest.ts deleted file mode 100644 index 0cedbf7d2..000000000 --- a/src/api/resources/accounting/resources/phoneNumbers/client/requests/PhoneNumbersRetrieveRequest.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * @example - * { - * includeRemoteData: true, - * includeShellData: true - * } - */ -export interface PhoneNumbersRetrieveRequest { - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; -} diff --git a/src/api/resources/accounting/resources/phoneNumbers/client/requests/index.ts b/src/api/resources/accounting/resources/phoneNumbers/client/requests/index.ts deleted file mode 100644 index 3d0b47158..000000000 --- a/src/api/resources/accounting/resources/phoneNumbers/client/requests/index.ts +++ /dev/null @@ -1 +0,0 @@ -export type { PhoneNumbersRetrieveRequest } from "./PhoneNumbersRetrieveRequest"; diff --git a/src/api/resources/accounting/resources/phoneNumbers/exports.ts b/src/api/resources/accounting/resources/phoneNumbers/exports.ts deleted file mode 100644 index 8207921c6..000000000 --- a/src/api/resources/accounting/resources/phoneNumbers/exports.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export { PhoneNumbersClient } from "./client/Client"; -export * from "./client/index"; diff --git a/src/api/resources/accounting/resources/phoneNumbers/index.ts b/src/api/resources/accounting/resources/phoneNumbers/index.ts deleted file mode 100644 index 5ec76921e..000000000 --- a/src/api/resources/accounting/resources/phoneNumbers/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./client"; diff --git a/src/api/resources/accounting/resources/projects/client/Client.ts b/src/api/resources/accounting/resources/projects/client/Client.ts deleted file mode 100644 index c7b1b6570..000000000 --- a/src/api/resources/accounting/resources/projects/client/Client.ts +++ /dev/null @@ -1,223 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../BaseClient"; -import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../../../BaseClient"; -import * as core from "../../../../../../core"; -import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../../../core/headers"; -import * as environments from "../../../../../../environments"; -import { handleNonStatusCodeError } from "../../../../../../errors/handleNonStatusCodeError"; -import * as errors from "../../../../../../errors/index"; -import * as serializers from "../../../../../../serialization/index"; -import type * as Merge from "../../../../../index"; - -export declare namespace ProjectsClient { - export type Options = BaseClientOptions; - - export interface RequestOptions extends BaseRequestOptions {} -} - -export class ProjectsClient { - protected readonly _options: NormalizedClientOptionsWithAuth; - - constructor(options: ProjectsClient.Options) { - this._options = normalizeClientOptionsWithAuth(options); - } - - /** - * Returns a list of `Project` objects. - * - * @param {Merge.accounting.ProjectsListRequest} request - * @param {ProjectsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.projects.list({ - * companyId: "company_id", - * createdAfter: new Date("2024-01-15T09:30:00.000Z"), - * createdBefore: new Date("2024-01-15T09:30:00.000Z"), - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * expand: "company", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - * modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - * pageSize: 1, - * remoteId: "remote_id" - * }) - */ - public list( - request: Merge.accounting.ProjectsListRequest = {}, - requestOptions?: ProjectsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__list(request, requestOptions)); - } - - private async __list( - request: Merge.accounting.ProjectsListRequest = {}, - requestOptions?: ProjectsClient.RequestOptions, - ): Promise> { - const { - companyId, - createdAfter, - createdBefore, - cursor, - expand, - includeDeletedData, - includeRemoteData, - includeShellData, - modifiedAfter, - modifiedBefore, - pageSize, - remoteId, - } = request; - const _queryParams: Record = { - company_id: companyId, - created_after: createdAfter?.toISOString(), - created_before: createdBefore?.toISOString(), - cursor, - expand: - expand != null - ? serializers.accounting.ProjectsListRequestExpand.jsonOrThrow(expand, { - unrecognizedObjectKeys: "strip", - }) - : undefined, - include_deleted_data: includeDeletedData, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - modified_after: modifiedAfter?.toISOString(), - modified_before: modifiedBefore?.toISOString(), - page_size: pageSize, - remote_id: remoteId, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/projects", - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaginatedProjectList.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError(_response.error, _response.rawResponse, "GET", "/accounting/v1/projects"); - } - - /** - * Returns a `Project` object with the given `id`. - * - * @param {string} id - * @param {Merge.accounting.ProjectsRetrieveRequest} request - * @param {ProjectsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.projects.retrieve("id", { - * expand: "company", - * includeRemoteData: true, - * includeShellData: true - * }) - */ - public retrieve( - id: string, - request: Merge.accounting.ProjectsRetrieveRequest = {}, - requestOptions?: ProjectsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__retrieve(id, request, requestOptions)); - } - - private async __retrieve( - id: string, - request: Merge.accounting.ProjectsRetrieveRequest = {}, - requestOptions?: ProjectsClient.RequestOptions, - ): Promise> { - const { expand, includeRemoteData, includeShellData } = request; - const _queryParams: Record = { - expand: - expand != null - ? serializers.accounting.ProjectsRetrieveRequestExpand.jsonOrThrow(expand, { - unrecognizedObjectKeys: "strip", - }) - : undefined, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - `accounting/v1/projects/${core.url.encodePathParam(id)}`, - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.Project.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError(_response.error, _response.rawResponse, "GET", "/accounting/v1/projects/{id}"); - } -} diff --git a/src/api/resources/accounting/resources/projects/client/index.ts b/src/api/resources/accounting/resources/projects/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/api/resources/accounting/resources/projects/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/api/resources/accounting/resources/projects/client/requests/ProjectsListRequest.ts b/src/api/resources/accounting/resources/projects/client/requests/ProjectsListRequest.ts deleted file mode 100644 index 99e09809a..000000000 --- a/src/api/resources/accounting/resources/projects/client/requests/ProjectsListRequest.ts +++ /dev/null @@ -1,47 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * companyId: "company_id", - * createdAfter: new Date("2024-01-15T09:30:00.000Z"), - * createdBefore: new Date("2024-01-15T09:30:00.000Z"), - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * expand: "company", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - * modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - * pageSize: 1, - * remoteId: "remote_id" - * } - */ -export interface ProjectsListRequest { - /** If provided, will only return projects for this company. */ - companyId?: string; - /** If provided, will only return objects created after this datetime. */ - createdAfter?: Date; - /** If provided, will only return objects created before this datetime. */ - createdBefore?: Date; - /** The pagination cursor value. */ - cursor?: string; - /** Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. */ - expand?: Merge.accounting.ProjectsListRequestExpand; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - includeDeletedData?: boolean; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** If provided, only objects synced by Merge after this date time will be returned. */ - modifiedAfter?: Date; - /** If provided, only objects synced by Merge before this date time will be returned. */ - modifiedBefore?: Date; - /** Number of results to return per page. */ - pageSize?: number; - /** The API provider's ID for the given object. */ - remoteId?: string; -} diff --git a/src/api/resources/accounting/resources/projects/client/requests/ProjectsRetrieveRequest.ts b/src/api/resources/accounting/resources/projects/client/requests/ProjectsRetrieveRequest.ts deleted file mode 100644 index 642b36d46..000000000 --- a/src/api/resources/accounting/resources/projects/client/requests/ProjectsRetrieveRequest.ts +++ /dev/null @@ -1,20 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * expand: "company", - * includeRemoteData: true, - * includeShellData: true - * } - */ -export interface ProjectsRetrieveRequest { - /** Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. */ - expand?: Merge.accounting.ProjectsRetrieveRequestExpand; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; -} diff --git a/src/api/resources/accounting/resources/projects/client/requests/index.ts b/src/api/resources/accounting/resources/projects/client/requests/index.ts deleted file mode 100644 index 032401dae..000000000 --- a/src/api/resources/accounting/resources/projects/client/requests/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export type { ProjectsListRequest } from "./ProjectsListRequest"; -export type { ProjectsRetrieveRequest } from "./ProjectsRetrieveRequest"; diff --git a/src/api/resources/accounting/resources/projects/exports.ts b/src/api/resources/accounting/resources/projects/exports.ts deleted file mode 100644 index 19ddc5a28..000000000 --- a/src/api/resources/accounting/resources/projects/exports.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export { ProjectsClient } from "./client/Client"; -export * from "./client/index"; diff --git a/src/api/resources/accounting/resources/projects/index.ts b/src/api/resources/accounting/resources/projects/index.ts deleted file mode 100644 index d2ec2302c..000000000 --- a/src/api/resources/accounting/resources/projects/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./client"; -export * from "./types"; diff --git a/src/api/resources/accounting/resources/projects/types/ProjectsListRequestExpand.ts b/src/api/resources/accounting/resources/projects/types/ProjectsListRequestExpand.ts deleted file mode 100644 index bebaa2565..000000000 --- a/src/api/resources/accounting/resources/projects/types/ProjectsListRequestExpand.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export const ProjectsListRequestExpand = { - Company: "company", - CompanyContact: "company,contact", - Contact: "contact", -} as const; -export type ProjectsListRequestExpand = (typeof ProjectsListRequestExpand)[keyof typeof ProjectsListRequestExpand]; diff --git a/src/api/resources/accounting/resources/projects/types/ProjectsRetrieveRequestExpand.ts b/src/api/resources/accounting/resources/projects/types/ProjectsRetrieveRequestExpand.ts deleted file mode 100644 index c02cbb059..000000000 --- a/src/api/resources/accounting/resources/projects/types/ProjectsRetrieveRequestExpand.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export const ProjectsRetrieveRequestExpand = { - Company: "company", - CompanyContact: "company,contact", - Contact: "contact", -} as const; -export type ProjectsRetrieveRequestExpand = - (typeof ProjectsRetrieveRequestExpand)[keyof typeof ProjectsRetrieveRequestExpand]; diff --git a/src/api/resources/accounting/resources/projects/types/index.ts b/src/api/resources/accounting/resources/projects/types/index.ts deleted file mode 100644 index 5ecd3d28e..000000000 --- a/src/api/resources/accounting/resources/projects/types/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./ProjectsListRequestExpand"; -export * from "./ProjectsRetrieveRequestExpand"; diff --git a/src/api/resources/accounting/resources/purchaseOrders/client/Client.ts b/src/api/resources/accounting/resources/purchaseOrders/client/Client.ts deleted file mode 100644 index 8d2c2e6d8..000000000 --- a/src/api/resources/accounting/resources/purchaseOrders/client/Client.ts +++ /dev/null @@ -1,606 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../BaseClient"; -import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../../../BaseClient"; -import * as core from "../../../../../../core"; -import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../../../core/headers"; -import * as environments from "../../../../../../environments"; -import { handleNonStatusCodeError } from "../../../../../../errors/handleNonStatusCodeError"; -import * as errors from "../../../../../../errors/index"; -import * as serializers from "../../../../../../serialization/index"; -import type * as Merge from "../../../../../index"; - -export declare namespace PurchaseOrdersClient { - export type Options = BaseClientOptions; - - export interface RequestOptions extends BaseRequestOptions {} -} - -export class PurchaseOrdersClient { - protected readonly _options: NormalizedClientOptionsWithAuth; - - constructor(options: PurchaseOrdersClient.Options) { - this._options = normalizeClientOptionsWithAuth(options); - } - - /** - * Returns a list of `PurchaseOrder` objects. - * - * @param {Merge.accounting.PurchaseOrdersListRequest} request - * @param {PurchaseOrdersClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.purchaseOrders.list({ - * companyId: "company_id", - * createdAfter: new Date("2024-01-15T09:30:00.000Z"), - * createdBefore: new Date("2024-01-15T09:30:00.000Z"), - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * expand: "accounting_period", - * includeDeletedData: true, - * includeRemoteData: true, - * includeRemoteFields: true, - * includeShellData: true, - * issueDateAfter: new Date("2024-01-15T09:30:00.000Z"), - * issueDateBefore: new Date("2024-01-15T09:30:00.000Z"), - * modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - * modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - * pageSize: 1, - * remoteFields: "status", - * remoteId: "remote_id", - * showEnumOrigins: "status" - * }) - */ - public list( - request: Merge.accounting.PurchaseOrdersListRequest = {}, - requestOptions?: PurchaseOrdersClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__list(request, requestOptions)); - } - - private async __list( - request: Merge.accounting.PurchaseOrdersListRequest = {}, - requestOptions?: PurchaseOrdersClient.RequestOptions, - ): Promise> { - const { - companyId, - createdAfter, - createdBefore, - cursor, - expand, - includeDeletedData, - includeRemoteData, - includeRemoteFields, - includeShellData, - issueDateAfter, - issueDateBefore, - modifiedAfter, - modifiedBefore, - pageSize, - remoteFields, - remoteId, - showEnumOrigins, - } = request; - const _queryParams: Record = { - company_id: companyId, - created_after: createdAfter?.toISOString(), - created_before: createdBefore?.toISOString(), - cursor, - expand: - expand != null - ? serializers.accounting.PurchaseOrdersListRequestExpand.jsonOrThrow(expand, { - unrecognizedObjectKeys: "strip", - }) - : undefined, - include_deleted_data: includeDeletedData, - include_remote_data: includeRemoteData, - include_remote_fields: includeRemoteFields, - include_shell_data: includeShellData, - issue_date_after: issueDateAfter?.toISOString(), - issue_date_before: issueDateBefore?.toISOString(), - modified_after: modifiedAfter?.toISOString(), - modified_before: modifiedBefore?.toISOString(), - page_size: pageSize, - remote_fields: remoteFields != null ? remoteFields : undefined, - remote_id: remoteId, - show_enum_origins: showEnumOrigins != null ? showEnumOrigins : undefined, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/purchase-orders", - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaginatedPurchaseOrderList.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/purchase-orders", - ); - } - - /** - * Creates a `PurchaseOrder` object with the given values. - * - * @param {Merge.accounting.PurchaseOrderEndpointRequest} request - * @param {PurchaseOrdersClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.purchaseOrders.create({ - * isDebugMode: true, - * runAsync: true, - * model: {} - * }) - */ - public create( - request: Merge.accounting.PurchaseOrderEndpointRequest, - requestOptions?: PurchaseOrdersClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__create(request, requestOptions)); - } - - private async __create( - request: Merge.accounting.PurchaseOrderEndpointRequest, - requestOptions?: PurchaseOrdersClient.RequestOptions, - ): Promise> { - const { isDebugMode, runAsync, ..._body } = request; - const _queryParams: Record = { - is_debug_mode: isDebugMode, - run_async: runAsync, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/purchase-orders", - ), - method: "POST", - headers: _headers, - contentType: "application/json", - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - requestType: "json", - body: serializers.accounting.PurchaseOrderEndpointRequest.jsonOrThrow(_body, { - unrecognizedObjectKeys: "strip", - }), - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PurchaseOrderResponse.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "POST", - "/accounting/v1/purchase-orders", - ); - } - - /** - * Returns a `PurchaseOrder` object with the given `id`. - * - * @param {string} id - * @param {Merge.accounting.PurchaseOrdersRetrieveRequest} request - * @param {PurchaseOrdersClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.purchaseOrders.retrieve("id", { - * expand: "accounting_period", - * includeRemoteData: true, - * includeRemoteFields: true, - * includeShellData: true, - * remoteFields: "status", - * showEnumOrigins: "status" - * }) - */ - public retrieve( - id: string, - request: Merge.accounting.PurchaseOrdersRetrieveRequest = {}, - requestOptions?: PurchaseOrdersClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__retrieve(id, request, requestOptions)); - } - - private async __retrieve( - id: string, - request: Merge.accounting.PurchaseOrdersRetrieveRequest = {}, - requestOptions?: PurchaseOrdersClient.RequestOptions, - ): Promise> { - const { expand, includeRemoteData, includeRemoteFields, includeShellData, remoteFields, showEnumOrigins } = - request; - const _queryParams: Record = { - expand: - expand != null - ? serializers.accounting.PurchaseOrdersRetrieveRequestExpand.jsonOrThrow(expand, { - unrecognizedObjectKeys: "strip", - }) - : undefined, - include_remote_data: includeRemoteData, - include_remote_fields: includeRemoteFields, - include_shell_data: includeShellData, - remote_fields: remoteFields != null ? remoteFields : undefined, - show_enum_origins: showEnumOrigins != null ? showEnumOrigins : undefined, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - `accounting/v1/purchase-orders/${core.url.encodePathParam(id)}`, - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PurchaseOrder.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/purchase-orders/{id}", - ); - } - - /** - * Returns a list of `RemoteFieldClass` objects. - * - * @param {Merge.accounting.PurchaseOrdersLineItemsRemoteFieldClassesListRequest} request - * @param {PurchaseOrdersClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.purchaseOrders.lineItemsRemoteFieldClassesList({ - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * isCommonModelField: true, - * isCustom: true, - * pageSize: 1 - * }) - */ - public lineItemsRemoteFieldClassesList( - request: Merge.accounting.PurchaseOrdersLineItemsRemoteFieldClassesListRequest = {}, - requestOptions?: PurchaseOrdersClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__lineItemsRemoteFieldClassesList(request, requestOptions)); - } - - private async __lineItemsRemoteFieldClassesList( - request: Merge.accounting.PurchaseOrdersLineItemsRemoteFieldClassesListRequest = {}, - requestOptions?: PurchaseOrdersClient.RequestOptions, - ): Promise> { - const { - cursor, - includeDeletedData, - includeRemoteData, - includeShellData, - isCommonModelField, - isCustom, - pageSize, - } = request; - const _queryParams: Record = { - cursor, - include_deleted_data: includeDeletedData, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - is_common_model_field: isCommonModelField, - is_custom: isCustom, - page_size: pageSize, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/purchase-orders/line-items/remote-field-classes", - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaginatedRemoteFieldClassList.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/purchase-orders/line-items/remote-field-classes", - ); - } - - /** - * Returns metadata for `PurchaseOrder` POSTs. - * - * @param {PurchaseOrdersClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.purchaseOrders.metaPostRetrieve() - */ - public metaPostRetrieve( - requestOptions?: PurchaseOrdersClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__metaPostRetrieve(requestOptions)); - } - - private async __metaPostRetrieve( - requestOptions?: PurchaseOrdersClient.RequestOptions, - ): Promise> { - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/purchase-orders/meta/post", - ), - method: "GET", - headers: _headers, - queryParameters: requestOptions?.queryParams, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.MetaResponse.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/purchase-orders/meta/post", - ); - } - - /** - * Returns a list of `RemoteFieldClass` objects. - * - * @param {Merge.accounting.PurchaseOrdersRemoteFieldClassesListRequest} request - * @param {PurchaseOrdersClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.purchaseOrders.remoteFieldClassesList({ - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * isCommonModelField: true, - * isCustom: true, - * pageSize: 1 - * }) - */ - public remoteFieldClassesList( - request: Merge.accounting.PurchaseOrdersRemoteFieldClassesListRequest = {}, - requestOptions?: PurchaseOrdersClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__remoteFieldClassesList(request, requestOptions)); - } - - private async __remoteFieldClassesList( - request: Merge.accounting.PurchaseOrdersRemoteFieldClassesListRequest = {}, - requestOptions?: PurchaseOrdersClient.RequestOptions, - ): Promise> { - const { - cursor, - includeDeletedData, - includeRemoteData, - includeShellData, - isCommonModelField, - isCustom, - pageSize, - } = request; - const _queryParams: Record = { - cursor, - include_deleted_data: includeDeletedData, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - is_common_model_field: isCommonModelField, - is_custom: isCustom, - page_size: pageSize, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/purchase-orders/remote-field-classes", - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaginatedRemoteFieldClassList.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/purchase-orders/remote-field-classes", - ); - } -} diff --git a/src/api/resources/accounting/resources/purchaseOrders/client/index.ts b/src/api/resources/accounting/resources/purchaseOrders/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/api/resources/accounting/resources/purchaseOrders/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/api/resources/accounting/resources/purchaseOrders/client/requests/PurchaseOrderEndpointRequest.ts b/src/api/resources/accounting/resources/purchaseOrders/client/requests/PurchaseOrderEndpointRequest.ts deleted file mode 100644 index 14fabeb9c..000000000 --- a/src/api/resources/accounting/resources/purchaseOrders/client/requests/PurchaseOrderEndpointRequest.ts +++ /dev/null @@ -1,19 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * isDebugMode: true, - * runAsync: true, - * model: {} - * } - */ -export interface PurchaseOrderEndpointRequest { - /** Whether to include debug fields (such as log file links) in the response. */ - isDebugMode?: boolean; - /** Whether or not third-party updates should be run asynchronously. */ - runAsync?: boolean; - model: Merge.accounting.PurchaseOrderRequest; -} diff --git a/src/api/resources/accounting/resources/purchaseOrders/client/requests/PurchaseOrdersLineItemsRemoteFieldClassesListRequest.ts b/src/api/resources/accounting/resources/purchaseOrders/client/requests/PurchaseOrdersLineItemsRemoteFieldClassesListRequest.ts deleted file mode 100644 index 3370f40ab..000000000 --- a/src/api/resources/accounting/resources/purchaseOrders/client/requests/PurchaseOrdersLineItemsRemoteFieldClassesListRequest.ts +++ /dev/null @@ -1,30 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * @example - * { - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * isCommonModelField: true, - * isCustom: true, - * pageSize: 1 - * } - */ -export interface PurchaseOrdersLineItemsRemoteFieldClassesListRequest { - /** The pagination cursor value. */ - cursor?: string; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - includeDeletedData?: boolean; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** If provided, will only return remote field classes with this is_common_model_field value */ - isCommonModelField?: boolean; - /** If provided, will only return remote fields classes with this is_custom value */ - isCustom?: boolean; - /** Number of results to return per page. */ - pageSize?: number; -} diff --git a/src/api/resources/accounting/resources/purchaseOrders/client/requests/PurchaseOrdersListRequest.ts b/src/api/resources/accounting/resources/purchaseOrders/client/requests/PurchaseOrdersListRequest.ts deleted file mode 100644 index fe219c655..000000000 --- a/src/api/resources/accounting/resources/purchaseOrders/client/requests/PurchaseOrdersListRequest.ts +++ /dev/null @@ -1,62 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * companyId: "company_id", - * createdAfter: new Date("2024-01-15T09:30:00.000Z"), - * createdBefore: new Date("2024-01-15T09:30:00.000Z"), - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * expand: "accounting_period", - * includeDeletedData: true, - * includeRemoteData: true, - * includeRemoteFields: true, - * includeShellData: true, - * issueDateAfter: new Date("2024-01-15T09:30:00.000Z"), - * issueDateBefore: new Date("2024-01-15T09:30:00.000Z"), - * modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - * modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - * pageSize: 1, - * remoteFields: "status", - * remoteId: "remote_id", - * showEnumOrigins: "status" - * } - */ -export interface PurchaseOrdersListRequest { - /** If provided, will only return purchase orders for this company. */ - companyId?: string; - /** If provided, will only return objects created after this datetime. */ - createdAfter?: Date; - /** If provided, will only return objects created before this datetime. */ - createdBefore?: Date; - /** The pagination cursor value. */ - cursor?: string; - /** Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. */ - expand?: Merge.accounting.PurchaseOrdersListRequestExpand; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - includeDeletedData?: boolean; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include all remote fields, including fields that Merge did not map to common models, in a normalized format. */ - includeRemoteFields?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** If provided, will only return objects created after this datetime. */ - issueDateAfter?: Date; - /** If provided, will only return objects created before this datetime. */ - issueDateBefore?: Date; - /** If provided, only objects synced by Merge after this date time will be returned. */ - modifiedAfter?: Date; - /** If provided, only objects synced by Merge before this date time will be returned. */ - modifiedBefore?: Date; - /** Number of results to return per page. */ - pageSize?: number; - /** Deprecated. Use show_enum_origins. */ - remoteFields?: "status"; - /** The API provider's ID for the given object. */ - remoteId?: string; - /** A comma separated list of enum field names for which you'd like the original values to be returned, instead of Merge's normalized enum values. [Learn more](https://help.merge.dev/en/articles/8950958-show_enum_origins-query-parameter) */ - showEnumOrigins?: "status"; -} diff --git a/src/api/resources/accounting/resources/purchaseOrders/client/requests/PurchaseOrdersRemoteFieldClassesListRequest.ts b/src/api/resources/accounting/resources/purchaseOrders/client/requests/PurchaseOrdersRemoteFieldClassesListRequest.ts deleted file mode 100644 index 040b08f4e..000000000 --- a/src/api/resources/accounting/resources/purchaseOrders/client/requests/PurchaseOrdersRemoteFieldClassesListRequest.ts +++ /dev/null @@ -1,30 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * @example - * { - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * isCommonModelField: true, - * isCustom: true, - * pageSize: 1 - * } - */ -export interface PurchaseOrdersRemoteFieldClassesListRequest { - /** The pagination cursor value. */ - cursor?: string; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - includeDeletedData?: boolean; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** If provided, will only return remote field classes with this is_common_model_field value */ - isCommonModelField?: boolean; - /** If provided, will only return remote fields classes with this is_custom value */ - isCustom?: boolean; - /** Number of results to return per page. */ - pageSize?: number; -} diff --git a/src/api/resources/accounting/resources/purchaseOrders/client/requests/PurchaseOrdersRetrieveRequest.ts b/src/api/resources/accounting/resources/purchaseOrders/client/requests/PurchaseOrdersRetrieveRequest.ts deleted file mode 100644 index 8f6d92e51..000000000 --- a/src/api/resources/accounting/resources/purchaseOrders/client/requests/PurchaseOrdersRetrieveRequest.ts +++ /dev/null @@ -1,29 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * expand: "accounting_period", - * includeRemoteData: true, - * includeRemoteFields: true, - * includeShellData: true, - * remoteFields: "status", - * showEnumOrigins: "status" - * } - */ -export interface PurchaseOrdersRetrieveRequest { - /** Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. */ - expand?: Merge.accounting.PurchaseOrdersRetrieveRequestExpand; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include all remote fields, including fields that Merge did not map to common models, in a normalized format. */ - includeRemoteFields?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** Deprecated. Use show_enum_origins. */ - remoteFields?: "status"; - /** A comma separated list of enum field names for which you'd like the original values to be returned, instead of Merge's normalized enum values. [Learn more](https://help.merge.dev/en/articles/8950958-show_enum_origins-query-parameter) */ - showEnumOrigins?: "status"; -} diff --git a/src/api/resources/accounting/resources/purchaseOrders/client/requests/index.ts b/src/api/resources/accounting/resources/purchaseOrders/client/requests/index.ts deleted file mode 100644 index 359e301a5..000000000 --- a/src/api/resources/accounting/resources/purchaseOrders/client/requests/index.ts +++ /dev/null @@ -1,5 +0,0 @@ -export type { PurchaseOrderEndpointRequest } from "./PurchaseOrderEndpointRequest"; -export type { PurchaseOrdersLineItemsRemoteFieldClassesListRequest } from "./PurchaseOrdersLineItemsRemoteFieldClassesListRequest"; -export type { PurchaseOrdersListRequest } from "./PurchaseOrdersListRequest"; -export type { PurchaseOrdersRemoteFieldClassesListRequest } from "./PurchaseOrdersRemoteFieldClassesListRequest"; -export type { PurchaseOrdersRetrieveRequest } from "./PurchaseOrdersRetrieveRequest"; diff --git a/src/api/resources/accounting/resources/purchaseOrders/exports.ts b/src/api/resources/accounting/resources/purchaseOrders/exports.ts deleted file mode 100644 index cbcd48570..000000000 --- a/src/api/resources/accounting/resources/purchaseOrders/exports.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export { PurchaseOrdersClient } from "./client/Client"; -export * from "./client/index"; diff --git a/src/api/resources/accounting/resources/purchaseOrders/index.ts b/src/api/resources/accounting/resources/purchaseOrders/index.ts deleted file mode 100644 index d2ec2302c..000000000 --- a/src/api/resources/accounting/resources/purchaseOrders/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./client"; -export * from "./types"; diff --git a/src/api/resources/accounting/resources/purchaseOrders/types/PurchaseOrdersListRequestExpand.ts b/src/api/resources/accounting/resources/purchaseOrders/types/PurchaseOrdersListRequestExpand.ts deleted file mode 100644 index d5b6fadc5..000000000 --- a/src/api/resources/accounting/resources/purchaseOrders/types/PurchaseOrdersListRequestExpand.ts +++ /dev/null @@ -1,165 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export const PurchaseOrdersListRequestExpand = { - AccountingPeriod: "accounting_period", - AccountingPeriodPaymentTerm: "accounting_period,payment_term", - Company: "company", - CompanyAccountingPeriod: "company,accounting_period", - CompanyAccountingPeriodPaymentTerm: "company,accounting_period,payment_term", - CompanyPaymentTerm: "company,payment_term", - DeliveryAddress: "delivery_address", - DeliveryAddressAccountingPeriod: "delivery_address,accounting_period", - DeliveryAddressAccountingPeriodPaymentTerm: "delivery_address,accounting_period,payment_term", - DeliveryAddressCompany: "delivery_address,company", - DeliveryAddressCompanyAccountingPeriod: "delivery_address,company,accounting_period", - DeliveryAddressCompanyAccountingPeriodPaymentTerm: "delivery_address,company,accounting_period,payment_term", - DeliveryAddressCompanyPaymentTerm: "delivery_address,company,payment_term", - DeliveryAddressPaymentTerm: "delivery_address,payment_term", - DeliveryAddressVendor: "delivery_address,vendor", - DeliveryAddressVendorAccountingPeriod: "delivery_address,vendor,accounting_period", - DeliveryAddressVendorAccountingPeriodPaymentTerm: "delivery_address,vendor,accounting_period,payment_term", - DeliveryAddressVendorCompany: "delivery_address,vendor,company", - DeliveryAddressVendorCompanyAccountingPeriod: "delivery_address,vendor,company,accounting_period", - DeliveryAddressVendorCompanyAccountingPeriodPaymentTerm: - "delivery_address,vendor,company,accounting_period,payment_term", - DeliveryAddressVendorCompanyPaymentTerm: "delivery_address,vendor,company,payment_term", - DeliveryAddressVendorPaymentTerm: "delivery_address,vendor,payment_term", - LineItems: "line_items", - LineItemsAccountingPeriod: "line_items,accounting_period", - LineItemsAccountingPeriodPaymentTerm: "line_items,accounting_period,payment_term", - LineItemsCompany: "line_items,company", - LineItemsCompanyAccountingPeriod: "line_items,company,accounting_period", - LineItemsCompanyAccountingPeriodPaymentTerm: "line_items,company,accounting_period,payment_term", - LineItemsCompanyPaymentTerm: "line_items,company,payment_term", - LineItemsDeliveryAddress: "line_items,delivery_address", - LineItemsDeliveryAddressAccountingPeriod: "line_items,delivery_address,accounting_period", - LineItemsDeliveryAddressAccountingPeriodPaymentTerm: "line_items,delivery_address,accounting_period,payment_term", - LineItemsDeliveryAddressCompany: "line_items,delivery_address,company", - LineItemsDeliveryAddressCompanyAccountingPeriod: "line_items,delivery_address,company,accounting_period", - LineItemsDeliveryAddressCompanyAccountingPeriodPaymentTerm: - "line_items,delivery_address,company,accounting_period,payment_term", - LineItemsDeliveryAddressCompanyPaymentTerm: "line_items,delivery_address,company,payment_term", - LineItemsDeliveryAddressPaymentTerm: "line_items,delivery_address,payment_term", - LineItemsDeliveryAddressVendor: "line_items,delivery_address,vendor", - LineItemsDeliveryAddressVendorAccountingPeriod: "line_items,delivery_address,vendor,accounting_period", - LineItemsDeliveryAddressVendorAccountingPeriodPaymentTerm: - "line_items,delivery_address,vendor,accounting_period,payment_term", - LineItemsDeliveryAddressVendorCompany: "line_items,delivery_address,vendor,company", - LineItemsDeliveryAddressVendorCompanyAccountingPeriod: - "line_items,delivery_address,vendor,company,accounting_period", - LineItemsDeliveryAddressVendorCompanyAccountingPeriodPaymentTerm: - "line_items,delivery_address,vendor,company,accounting_period,payment_term", - LineItemsDeliveryAddressVendorCompanyPaymentTerm: "line_items,delivery_address,vendor,company,payment_term", - LineItemsDeliveryAddressVendorPaymentTerm: "line_items,delivery_address,vendor,payment_term", - LineItemsPaymentTerm: "line_items,payment_term", - LineItemsTrackingCategories: "line_items,tracking_categories", - LineItemsTrackingCategoriesAccountingPeriod: "line_items,tracking_categories,accounting_period", - LineItemsTrackingCategoriesAccountingPeriodPaymentTerm: - "line_items,tracking_categories,accounting_period,payment_term", - LineItemsTrackingCategoriesCompany: "line_items,tracking_categories,company", - LineItemsTrackingCategoriesCompanyAccountingPeriod: "line_items,tracking_categories,company,accounting_period", - LineItemsTrackingCategoriesCompanyAccountingPeriodPaymentTerm: - "line_items,tracking_categories,company,accounting_period,payment_term", - LineItemsTrackingCategoriesCompanyPaymentTerm: "line_items,tracking_categories,company,payment_term", - LineItemsTrackingCategoriesDeliveryAddress: "line_items,tracking_categories,delivery_address", - LineItemsTrackingCategoriesDeliveryAddressAccountingPeriod: - "line_items,tracking_categories,delivery_address,accounting_period", - LineItemsTrackingCategoriesDeliveryAddressAccountingPeriodPaymentTerm: - "line_items,tracking_categories,delivery_address,accounting_period,payment_term", - LineItemsTrackingCategoriesDeliveryAddressCompany: "line_items,tracking_categories,delivery_address,company", - LineItemsTrackingCategoriesDeliveryAddressCompanyAccountingPeriod: - "line_items,tracking_categories,delivery_address,company,accounting_period", - LineItemsTrackingCategoriesDeliveryAddressCompanyAccountingPeriodPaymentTerm: - "line_items,tracking_categories,delivery_address,company,accounting_period,payment_term", - LineItemsTrackingCategoriesDeliveryAddressCompanyPaymentTerm: - "line_items,tracking_categories,delivery_address,company,payment_term", - LineItemsTrackingCategoriesDeliveryAddressPaymentTerm: - "line_items,tracking_categories,delivery_address,payment_term", - LineItemsTrackingCategoriesDeliveryAddressVendor: "line_items,tracking_categories,delivery_address,vendor", - LineItemsTrackingCategoriesDeliveryAddressVendorAccountingPeriod: - "line_items,tracking_categories,delivery_address,vendor,accounting_period", - LineItemsTrackingCategoriesDeliveryAddressVendorAccountingPeriodPaymentTerm: - "line_items,tracking_categories,delivery_address,vendor,accounting_period,payment_term", - LineItemsTrackingCategoriesDeliveryAddressVendorCompany: - "line_items,tracking_categories,delivery_address,vendor,company", - LineItemsTrackingCategoriesDeliveryAddressVendorCompanyAccountingPeriod: - "line_items,tracking_categories,delivery_address,vendor,company,accounting_period", - LineItemsTrackingCategoriesDeliveryAddressVendorCompanyAccountingPeriodPaymentTerm: - "line_items,tracking_categories,delivery_address,vendor,company,accounting_period,payment_term", - LineItemsTrackingCategoriesDeliveryAddressVendorCompanyPaymentTerm: - "line_items,tracking_categories,delivery_address,vendor,company,payment_term", - LineItemsTrackingCategoriesDeliveryAddressVendorPaymentTerm: - "line_items,tracking_categories,delivery_address,vendor,payment_term", - LineItemsTrackingCategoriesPaymentTerm: "line_items,tracking_categories,payment_term", - LineItemsTrackingCategoriesVendor: "line_items,tracking_categories,vendor", - LineItemsTrackingCategoriesVendorAccountingPeriod: "line_items,tracking_categories,vendor,accounting_period", - LineItemsTrackingCategoriesVendorAccountingPeriodPaymentTerm: - "line_items,tracking_categories,vendor,accounting_period,payment_term", - LineItemsTrackingCategoriesVendorCompany: "line_items,tracking_categories,vendor,company", - LineItemsTrackingCategoriesVendorCompanyAccountingPeriod: - "line_items,tracking_categories,vendor,company,accounting_period", - LineItemsTrackingCategoriesVendorCompanyAccountingPeriodPaymentTerm: - "line_items,tracking_categories,vendor,company,accounting_period,payment_term", - LineItemsTrackingCategoriesVendorCompanyPaymentTerm: "line_items,tracking_categories,vendor,company,payment_term", - LineItemsTrackingCategoriesVendorPaymentTerm: "line_items,tracking_categories,vendor,payment_term", - LineItemsVendor: "line_items,vendor", - LineItemsVendorAccountingPeriod: "line_items,vendor,accounting_period", - LineItemsVendorAccountingPeriodPaymentTerm: "line_items,vendor,accounting_period,payment_term", - LineItemsVendorCompany: "line_items,vendor,company", - LineItemsVendorCompanyAccountingPeriod: "line_items,vendor,company,accounting_period", - LineItemsVendorCompanyAccountingPeriodPaymentTerm: "line_items,vendor,company,accounting_period,payment_term", - LineItemsVendorCompanyPaymentTerm: "line_items,vendor,company,payment_term", - LineItemsVendorPaymentTerm: "line_items,vendor,payment_term", - PaymentTerm: "payment_term", - TrackingCategories: "tracking_categories", - TrackingCategoriesAccountingPeriod: "tracking_categories,accounting_period", - TrackingCategoriesAccountingPeriodPaymentTerm: "tracking_categories,accounting_period,payment_term", - TrackingCategoriesCompany: "tracking_categories,company", - TrackingCategoriesCompanyAccountingPeriod: "tracking_categories,company,accounting_period", - TrackingCategoriesCompanyAccountingPeriodPaymentTerm: "tracking_categories,company,accounting_period,payment_term", - TrackingCategoriesCompanyPaymentTerm: "tracking_categories,company,payment_term", - TrackingCategoriesDeliveryAddress: "tracking_categories,delivery_address", - TrackingCategoriesDeliveryAddressAccountingPeriod: "tracking_categories,delivery_address,accounting_period", - TrackingCategoriesDeliveryAddressAccountingPeriodPaymentTerm: - "tracking_categories,delivery_address,accounting_period,payment_term", - TrackingCategoriesDeliveryAddressCompany: "tracking_categories,delivery_address,company", - TrackingCategoriesDeliveryAddressCompanyAccountingPeriod: - "tracking_categories,delivery_address,company,accounting_period", - TrackingCategoriesDeliveryAddressCompanyAccountingPeriodPaymentTerm: - "tracking_categories,delivery_address,company,accounting_period,payment_term", - TrackingCategoriesDeliveryAddressCompanyPaymentTerm: "tracking_categories,delivery_address,company,payment_term", - TrackingCategoriesDeliveryAddressPaymentTerm: "tracking_categories,delivery_address,payment_term", - TrackingCategoriesDeliveryAddressVendor: "tracking_categories,delivery_address,vendor", - TrackingCategoriesDeliveryAddressVendorAccountingPeriod: - "tracking_categories,delivery_address,vendor,accounting_period", - TrackingCategoriesDeliveryAddressVendorAccountingPeriodPaymentTerm: - "tracking_categories,delivery_address,vendor,accounting_period,payment_term", - TrackingCategoriesDeliveryAddressVendorCompany: "tracking_categories,delivery_address,vendor,company", - TrackingCategoriesDeliveryAddressVendorCompanyAccountingPeriod: - "tracking_categories,delivery_address,vendor,company,accounting_period", - TrackingCategoriesDeliveryAddressVendorCompanyAccountingPeriodPaymentTerm: - "tracking_categories,delivery_address,vendor,company,accounting_period,payment_term", - TrackingCategoriesDeliveryAddressVendorCompanyPaymentTerm: - "tracking_categories,delivery_address,vendor,company,payment_term", - TrackingCategoriesDeliveryAddressVendorPaymentTerm: "tracking_categories,delivery_address,vendor,payment_term", - TrackingCategoriesPaymentTerm: "tracking_categories,payment_term", - TrackingCategoriesVendor: "tracking_categories,vendor", - TrackingCategoriesVendorAccountingPeriod: "tracking_categories,vendor,accounting_period", - TrackingCategoriesVendorAccountingPeriodPaymentTerm: "tracking_categories,vendor,accounting_period,payment_term", - TrackingCategoriesVendorCompany: "tracking_categories,vendor,company", - TrackingCategoriesVendorCompanyAccountingPeriod: "tracking_categories,vendor,company,accounting_period", - TrackingCategoriesVendorCompanyAccountingPeriodPaymentTerm: - "tracking_categories,vendor,company,accounting_period,payment_term", - TrackingCategoriesVendorCompanyPaymentTerm: "tracking_categories,vendor,company,payment_term", - TrackingCategoriesVendorPaymentTerm: "tracking_categories,vendor,payment_term", - Vendor: "vendor", - VendorAccountingPeriod: "vendor,accounting_period", - VendorAccountingPeriodPaymentTerm: "vendor,accounting_period,payment_term", - VendorCompany: "vendor,company", - VendorCompanyAccountingPeriod: "vendor,company,accounting_period", - VendorCompanyAccountingPeriodPaymentTerm: "vendor,company,accounting_period,payment_term", - VendorCompanyPaymentTerm: "vendor,company,payment_term", - VendorPaymentTerm: "vendor,payment_term", -} as const; -export type PurchaseOrdersListRequestExpand = - (typeof PurchaseOrdersListRequestExpand)[keyof typeof PurchaseOrdersListRequestExpand]; diff --git a/src/api/resources/accounting/resources/purchaseOrders/types/PurchaseOrdersRetrieveRequestExpand.ts b/src/api/resources/accounting/resources/purchaseOrders/types/PurchaseOrdersRetrieveRequestExpand.ts deleted file mode 100644 index 27f1410b3..000000000 --- a/src/api/resources/accounting/resources/purchaseOrders/types/PurchaseOrdersRetrieveRequestExpand.ts +++ /dev/null @@ -1,165 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export const PurchaseOrdersRetrieveRequestExpand = { - AccountingPeriod: "accounting_period", - AccountingPeriodPaymentTerm: "accounting_period,payment_term", - Company: "company", - CompanyAccountingPeriod: "company,accounting_period", - CompanyAccountingPeriodPaymentTerm: "company,accounting_period,payment_term", - CompanyPaymentTerm: "company,payment_term", - DeliveryAddress: "delivery_address", - DeliveryAddressAccountingPeriod: "delivery_address,accounting_period", - DeliveryAddressAccountingPeriodPaymentTerm: "delivery_address,accounting_period,payment_term", - DeliveryAddressCompany: "delivery_address,company", - DeliveryAddressCompanyAccountingPeriod: "delivery_address,company,accounting_period", - DeliveryAddressCompanyAccountingPeriodPaymentTerm: "delivery_address,company,accounting_period,payment_term", - DeliveryAddressCompanyPaymentTerm: "delivery_address,company,payment_term", - DeliveryAddressPaymentTerm: "delivery_address,payment_term", - DeliveryAddressVendor: "delivery_address,vendor", - DeliveryAddressVendorAccountingPeriod: "delivery_address,vendor,accounting_period", - DeliveryAddressVendorAccountingPeriodPaymentTerm: "delivery_address,vendor,accounting_period,payment_term", - DeliveryAddressVendorCompany: "delivery_address,vendor,company", - DeliveryAddressVendorCompanyAccountingPeriod: "delivery_address,vendor,company,accounting_period", - DeliveryAddressVendorCompanyAccountingPeriodPaymentTerm: - "delivery_address,vendor,company,accounting_period,payment_term", - DeliveryAddressVendorCompanyPaymentTerm: "delivery_address,vendor,company,payment_term", - DeliveryAddressVendorPaymentTerm: "delivery_address,vendor,payment_term", - LineItems: "line_items", - LineItemsAccountingPeriod: "line_items,accounting_period", - LineItemsAccountingPeriodPaymentTerm: "line_items,accounting_period,payment_term", - LineItemsCompany: "line_items,company", - LineItemsCompanyAccountingPeriod: "line_items,company,accounting_period", - LineItemsCompanyAccountingPeriodPaymentTerm: "line_items,company,accounting_period,payment_term", - LineItemsCompanyPaymentTerm: "line_items,company,payment_term", - LineItemsDeliveryAddress: "line_items,delivery_address", - LineItemsDeliveryAddressAccountingPeriod: "line_items,delivery_address,accounting_period", - LineItemsDeliveryAddressAccountingPeriodPaymentTerm: "line_items,delivery_address,accounting_period,payment_term", - LineItemsDeliveryAddressCompany: "line_items,delivery_address,company", - LineItemsDeliveryAddressCompanyAccountingPeriod: "line_items,delivery_address,company,accounting_period", - LineItemsDeliveryAddressCompanyAccountingPeriodPaymentTerm: - "line_items,delivery_address,company,accounting_period,payment_term", - LineItemsDeliveryAddressCompanyPaymentTerm: "line_items,delivery_address,company,payment_term", - LineItemsDeliveryAddressPaymentTerm: "line_items,delivery_address,payment_term", - LineItemsDeliveryAddressVendor: "line_items,delivery_address,vendor", - LineItemsDeliveryAddressVendorAccountingPeriod: "line_items,delivery_address,vendor,accounting_period", - LineItemsDeliveryAddressVendorAccountingPeriodPaymentTerm: - "line_items,delivery_address,vendor,accounting_period,payment_term", - LineItemsDeliveryAddressVendorCompany: "line_items,delivery_address,vendor,company", - LineItemsDeliveryAddressVendorCompanyAccountingPeriod: - "line_items,delivery_address,vendor,company,accounting_period", - LineItemsDeliveryAddressVendorCompanyAccountingPeriodPaymentTerm: - "line_items,delivery_address,vendor,company,accounting_period,payment_term", - LineItemsDeliveryAddressVendorCompanyPaymentTerm: "line_items,delivery_address,vendor,company,payment_term", - LineItemsDeliveryAddressVendorPaymentTerm: "line_items,delivery_address,vendor,payment_term", - LineItemsPaymentTerm: "line_items,payment_term", - LineItemsTrackingCategories: "line_items,tracking_categories", - LineItemsTrackingCategoriesAccountingPeriod: "line_items,tracking_categories,accounting_period", - LineItemsTrackingCategoriesAccountingPeriodPaymentTerm: - "line_items,tracking_categories,accounting_period,payment_term", - LineItemsTrackingCategoriesCompany: "line_items,tracking_categories,company", - LineItemsTrackingCategoriesCompanyAccountingPeriod: "line_items,tracking_categories,company,accounting_period", - LineItemsTrackingCategoriesCompanyAccountingPeriodPaymentTerm: - "line_items,tracking_categories,company,accounting_period,payment_term", - LineItemsTrackingCategoriesCompanyPaymentTerm: "line_items,tracking_categories,company,payment_term", - LineItemsTrackingCategoriesDeliveryAddress: "line_items,tracking_categories,delivery_address", - LineItemsTrackingCategoriesDeliveryAddressAccountingPeriod: - "line_items,tracking_categories,delivery_address,accounting_period", - LineItemsTrackingCategoriesDeliveryAddressAccountingPeriodPaymentTerm: - "line_items,tracking_categories,delivery_address,accounting_period,payment_term", - LineItemsTrackingCategoriesDeliveryAddressCompany: "line_items,tracking_categories,delivery_address,company", - LineItemsTrackingCategoriesDeliveryAddressCompanyAccountingPeriod: - "line_items,tracking_categories,delivery_address,company,accounting_period", - LineItemsTrackingCategoriesDeliveryAddressCompanyAccountingPeriodPaymentTerm: - "line_items,tracking_categories,delivery_address,company,accounting_period,payment_term", - LineItemsTrackingCategoriesDeliveryAddressCompanyPaymentTerm: - "line_items,tracking_categories,delivery_address,company,payment_term", - LineItemsTrackingCategoriesDeliveryAddressPaymentTerm: - "line_items,tracking_categories,delivery_address,payment_term", - LineItemsTrackingCategoriesDeliveryAddressVendor: "line_items,tracking_categories,delivery_address,vendor", - LineItemsTrackingCategoriesDeliveryAddressVendorAccountingPeriod: - "line_items,tracking_categories,delivery_address,vendor,accounting_period", - LineItemsTrackingCategoriesDeliveryAddressVendorAccountingPeriodPaymentTerm: - "line_items,tracking_categories,delivery_address,vendor,accounting_period,payment_term", - LineItemsTrackingCategoriesDeliveryAddressVendorCompany: - "line_items,tracking_categories,delivery_address,vendor,company", - LineItemsTrackingCategoriesDeliveryAddressVendorCompanyAccountingPeriod: - "line_items,tracking_categories,delivery_address,vendor,company,accounting_period", - LineItemsTrackingCategoriesDeliveryAddressVendorCompanyAccountingPeriodPaymentTerm: - "line_items,tracking_categories,delivery_address,vendor,company,accounting_period,payment_term", - LineItemsTrackingCategoriesDeliveryAddressVendorCompanyPaymentTerm: - "line_items,tracking_categories,delivery_address,vendor,company,payment_term", - LineItemsTrackingCategoriesDeliveryAddressVendorPaymentTerm: - "line_items,tracking_categories,delivery_address,vendor,payment_term", - LineItemsTrackingCategoriesPaymentTerm: "line_items,tracking_categories,payment_term", - LineItemsTrackingCategoriesVendor: "line_items,tracking_categories,vendor", - LineItemsTrackingCategoriesVendorAccountingPeriod: "line_items,tracking_categories,vendor,accounting_period", - LineItemsTrackingCategoriesVendorAccountingPeriodPaymentTerm: - "line_items,tracking_categories,vendor,accounting_period,payment_term", - LineItemsTrackingCategoriesVendorCompany: "line_items,tracking_categories,vendor,company", - LineItemsTrackingCategoriesVendorCompanyAccountingPeriod: - "line_items,tracking_categories,vendor,company,accounting_period", - LineItemsTrackingCategoriesVendorCompanyAccountingPeriodPaymentTerm: - "line_items,tracking_categories,vendor,company,accounting_period,payment_term", - LineItemsTrackingCategoriesVendorCompanyPaymentTerm: "line_items,tracking_categories,vendor,company,payment_term", - LineItemsTrackingCategoriesVendorPaymentTerm: "line_items,tracking_categories,vendor,payment_term", - LineItemsVendor: "line_items,vendor", - LineItemsVendorAccountingPeriod: "line_items,vendor,accounting_period", - LineItemsVendorAccountingPeriodPaymentTerm: "line_items,vendor,accounting_period,payment_term", - LineItemsVendorCompany: "line_items,vendor,company", - LineItemsVendorCompanyAccountingPeriod: "line_items,vendor,company,accounting_period", - LineItemsVendorCompanyAccountingPeriodPaymentTerm: "line_items,vendor,company,accounting_period,payment_term", - LineItemsVendorCompanyPaymentTerm: "line_items,vendor,company,payment_term", - LineItemsVendorPaymentTerm: "line_items,vendor,payment_term", - PaymentTerm: "payment_term", - TrackingCategories: "tracking_categories", - TrackingCategoriesAccountingPeriod: "tracking_categories,accounting_period", - TrackingCategoriesAccountingPeriodPaymentTerm: "tracking_categories,accounting_period,payment_term", - TrackingCategoriesCompany: "tracking_categories,company", - TrackingCategoriesCompanyAccountingPeriod: "tracking_categories,company,accounting_period", - TrackingCategoriesCompanyAccountingPeriodPaymentTerm: "tracking_categories,company,accounting_period,payment_term", - TrackingCategoriesCompanyPaymentTerm: "tracking_categories,company,payment_term", - TrackingCategoriesDeliveryAddress: "tracking_categories,delivery_address", - TrackingCategoriesDeliveryAddressAccountingPeriod: "tracking_categories,delivery_address,accounting_period", - TrackingCategoriesDeliveryAddressAccountingPeriodPaymentTerm: - "tracking_categories,delivery_address,accounting_period,payment_term", - TrackingCategoriesDeliveryAddressCompany: "tracking_categories,delivery_address,company", - TrackingCategoriesDeliveryAddressCompanyAccountingPeriod: - "tracking_categories,delivery_address,company,accounting_period", - TrackingCategoriesDeliveryAddressCompanyAccountingPeriodPaymentTerm: - "tracking_categories,delivery_address,company,accounting_period,payment_term", - TrackingCategoriesDeliveryAddressCompanyPaymentTerm: "tracking_categories,delivery_address,company,payment_term", - TrackingCategoriesDeliveryAddressPaymentTerm: "tracking_categories,delivery_address,payment_term", - TrackingCategoriesDeliveryAddressVendor: "tracking_categories,delivery_address,vendor", - TrackingCategoriesDeliveryAddressVendorAccountingPeriod: - "tracking_categories,delivery_address,vendor,accounting_period", - TrackingCategoriesDeliveryAddressVendorAccountingPeriodPaymentTerm: - "tracking_categories,delivery_address,vendor,accounting_period,payment_term", - TrackingCategoriesDeliveryAddressVendorCompany: "tracking_categories,delivery_address,vendor,company", - TrackingCategoriesDeliveryAddressVendorCompanyAccountingPeriod: - "tracking_categories,delivery_address,vendor,company,accounting_period", - TrackingCategoriesDeliveryAddressVendorCompanyAccountingPeriodPaymentTerm: - "tracking_categories,delivery_address,vendor,company,accounting_period,payment_term", - TrackingCategoriesDeliveryAddressVendorCompanyPaymentTerm: - "tracking_categories,delivery_address,vendor,company,payment_term", - TrackingCategoriesDeliveryAddressVendorPaymentTerm: "tracking_categories,delivery_address,vendor,payment_term", - TrackingCategoriesPaymentTerm: "tracking_categories,payment_term", - TrackingCategoriesVendor: "tracking_categories,vendor", - TrackingCategoriesVendorAccountingPeriod: "tracking_categories,vendor,accounting_period", - TrackingCategoriesVendorAccountingPeriodPaymentTerm: "tracking_categories,vendor,accounting_period,payment_term", - TrackingCategoriesVendorCompany: "tracking_categories,vendor,company", - TrackingCategoriesVendorCompanyAccountingPeriod: "tracking_categories,vendor,company,accounting_period", - TrackingCategoriesVendorCompanyAccountingPeriodPaymentTerm: - "tracking_categories,vendor,company,accounting_period,payment_term", - TrackingCategoriesVendorCompanyPaymentTerm: "tracking_categories,vendor,company,payment_term", - TrackingCategoriesVendorPaymentTerm: "tracking_categories,vendor,payment_term", - Vendor: "vendor", - VendorAccountingPeriod: "vendor,accounting_period", - VendorAccountingPeriodPaymentTerm: "vendor,accounting_period,payment_term", - VendorCompany: "vendor,company", - VendorCompanyAccountingPeriod: "vendor,company,accounting_period", - VendorCompanyAccountingPeriodPaymentTerm: "vendor,company,accounting_period,payment_term", - VendorCompanyPaymentTerm: "vendor,company,payment_term", - VendorPaymentTerm: "vendor,payment_term", -} as const; -export type PurchaseOrdersRetrieveRequestExpand = - (typeof PurchaseOrdersRetrieveRequestExpand)[keyof typeof PurchaseOrdersRetrieveRequestExpand]; diff --git a/src/api/resources/accounting/resources/purchaseOrders/types/index.ts b/src/api/resources/accounting/resources/purchaseOrders/types/index.ts deleted file mode 100644 index fd510edde..000000000 --- a/src/api/resources/accounting/resources/purchaseOrders/types/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./PurchaseOrdersListRequestExpand"; -export * from "./PurchaseOrdersRetrieveRequestExpand"; diff --git a/src/api/resources/accounting/resources/regenerateKey/client/Client.ts b/src/api/resources/accounting/resources/regenerateKey/client/Client.ts deleted file mode 100644 index 4c73dd63b..000000000 --- a/src/api/resources/accounting/resources/regenerateKey/client/Client.ts +++ /dev/null @@ -1,104 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../BaseClient"; -import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../../../BaseClient"; -import * as core from "../../../../../../core"; -import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../../../core/headers"; -import * as environments from "../../../../../../environments"; -import { handleNonStatusCodeError } from "../../../../../../errors/handleNonStatusCodeError"; -import * as errors from "../../../../../../errors/index"; -import * as serializers from "../../../../../../serialization/index"; -import type * as Merge from "../../../../../index"; - -export declare namespace RegenerateKeyClient { - export type Options = BaseClientOptions; - - export interface RequestOptions extends BaseRequestOptions {} -} - -export class RegenerateKeyClient { - protected readonly _options: NormalizedClientOptionsWithAuth; - - constructor(options: RegenerateKeyClient.Options) { - this._options = normalizeClientOptionsWithAuth(options); - } - - /** - * Exchange remote keys. - * - * @param {Merge.accounting.RemoteKeyForRegenerationRequest} request - * @param {RegenerateKeyClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.regenerateKey.create({ - * name: "Remote Deployment Key 1" - * }) - */ - public create( - request: Merge.accounting.RemoteKeyForRegenerationRequest, - requestOptions?: RegenerateKeyClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__create(request, requestOptions)); - } - - private async __create( - request: Merge.accounting.RemoteKeyForRegenerationRequest, - requestOptions?: RegenerateKeyClient.RequestOptions, - ): Promise> { - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/regenerate-key", - ), - method: "POST", - headers: _headers, - contentType: "application/json", - queryParameters: requestOptions?.queryParams, - requestType: "json", - body: serializers.accounting.RemoteKeyForRegenerationRequest.jsonOrThrow(request, { - unrecognizedObjectKeys: "strip", - }), - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.RemoteKey.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "POST", - "/accounting/v1/regenerate-key", - ); - } -} diff --git a/src/api/resources/accounting/resources/regenerateKey/client/index.ts b/src/api/resources/accounting/resources/regenerateKey/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/api/resources/accounting/resources/regenerateKey/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/api/resources/accounting/resources/regenerateKey/client/requests/RemoteKeyForRegenerationRequest.ts b/src/api/resources/accounting/resources/regenerateKey/client/requests/RemoteKeyForRegenerationRequest.ts deleted file mode 100644 index 19dc4fa80..000000000 --- a/src/api/resources/accounting/resources/regenerateKey/client/requests/RemoteKeyForRegenerationRequest.ts +++ /dev/null @@ -1,12 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * @example - * { - * name: "Remote Deployment Key 1" - * } - */ -export interface RemoteKeyForRegenerationRequest { - /** The name of the remote key */ - name: string; -} diff --git a/src/api/resources/accounting/resources/regenerateKey/client/requests/index.ts b/src/api/resources/accounting/resources/regenerateKey/client/requests/index.ts deleted file mode 100644 index 339a5503f..000000000 --- a/src/api/resources/accounting/resources/regenerateKey/client/requests/index.ts +++ /dev/null @@ -1 +0,0 @@ -export type { RemoteKeyForRegenerationRequest } from "./RemoteKeyForRegenerationRequest"; diff --git a/src/api/resources/accounting/resources/regenerateKey/exports.ts b/src/api/resources/accounting/resources/regenerateKey/exports.ts deleted file mode 100644 index f9276142f..000000000 --- a/src/api/resources/accounting/resources/regenerateKey/exports.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export { RegenerateKeyClient } from "./client/Client"; -export * from "./client/index"; diff --git a/src/api/resources/accounting/resources/regenerateKey/index.ts b/src/api/resources/accounting/resources/regenerateKey/index.ts deleted file mode 100644 index 5ec76921e..000000000 --- a/src/api/resources/accounting/resources/regenerateKey/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./client"; diff --git a/src/api/resources/accounting/resources/scopes/client/Client.ts b/src/api/resources/accounting/resources/scopes/client/Client.ts deleted file mode 100644 index bc6111784..000000000 --- a/src/api/resources/accounting/resources/scopes/client/Client.ts +++ /dev/null @@ -1,258 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../BaseClient"; -import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../../../BaseClient"; -import * as core from "../../../../../../core"; -import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../../../core/headers"; -import * as environments from "../../../../../../environments"; -import { handleNonStatusCodeError } from "../../../../../../errors/handleNonStatusCodeError"; -import * as errors from "../../../../../../errors/index"; -import * as serializers from "../../../../../../serialization/index"; -import type * as Merge from "../../../../../index"; - -export declare namespace ScopesClient { - export type Options = BaseClientOptions; - - export interface RequestOptions extends BaseRequestOptions {} -} - -export class ScopesClient { - protected readonly _options: NormalizedClientOptionsWithAuth; - - constructor(options: ScopesClient.Options) { - this._options = normalizeClientOptionsWithAuth(options); - } - - /** - * Get the default permissions for Merge Common Models and fields across all Linked Accounts of a given category. [Learn more](https://help.merge.dev/en/articles/5950052-common-model-and-field-scopes). - * - * @param {ScopesClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.scopes.defaultScopesRetrieve() - */ - public defaultScopesRetrieve( - requestOptions?: ScopesClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__defaultScopesRetrieve(requestOptions)); - } - - private async __defaultScopesRetrieve( - requestOptions?: ScopesClient.RequestOptions, - ): Promise> { - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/default-scopes", - ), - method: "GET", - headers: _headers, - queryParameters: requestOptions?.queryParams, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.CommonModelScopeApi.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError(_response.error, _response.rawResponse, "GET", "/accounting/v1/default-scopes"); - } - - /** - * Get all available permissions for Merge Common Models and fields for a single Linked Account. [Learn more](https://help.merge.dev/en/articles/5950052-common-model-and-field-scopes). - * - * @param {ScopesClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.scopes.linkedAccountScopesRetrieve() - */ - public linkedAccountScopesRetrieve( - requestOptions?: ScopesClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__linkedAccountScopesRetrieve(requestOptions)); - } - - private async __linkedAccountScopesRetrieve( - requestOptions?: ScopesClient.RequestOptions, - ): Promise> { - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/linked-account-scopes", - ), - method: "GET", - headers: _headers, - queryParameters: requestOptions?.queryParams, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.CommonModelScopeApi.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/linked-account-scopes", - ); - } - - /** - * Update permissions for any Common Model or field for a single Linked Account. Any Scopes not set in this POST request will inherit the default Scopes. [Learn more](https://help.merge.dev/en/articles/5950052-common-model-and-field-scopes) - * - * @param {Merge.accounting.LinkedAccountCommonModelScopeDeserializerRequest} request - * @param {ScopesClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.scopes.linkedAccountScopesCreate({ - * commonModels: [{ - * modelName: "Employee", - * modelPermissions: { - * "READ": { - * isEnabled: true - * }, - * "WRITE": { - * isEnabled: false - * } - * }, - * fieldPermissions: { - * enabledFields: ["avatar", "home_location"], - * disabledFields: ["work_location"] - * } - * }, { - * modelName: "Benefit", - * modelPermissions: { - * "WRITE": { - * isEnabled: false - * } - * } - * }] - * }) - */ - public linkedAccountScopesCreate( - request: Merge.accounting.LinkedAccountCommonModelScopeDeserializerRequest, - requestOptions?: ScopesClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__linkedAccountScopesCreate(request, requestOptions)); - } - - private async __linkedAccountScopesCreate( - request: Merge.accounting.LinkedAccountCommonModelScopeDeserializerRequest, - requestOptions?: ScopesClient.RequestOptions, - ): Promise> { - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/linked-account-scopes", - ), - method: "POST", - headers: _headers, - contentType: "application/json", - queryParameters: requestOptions?.queryParams, - requestType: "json", - body: serializers.accounting.LinkedAccountCommonModelScopeDeserializerRequest.jsonOrThrow(request, { - unrecognizedObjectKeys: "strip", - }), - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.CommonModelScopeApi.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "POST", - "/accounting/v1/linked-account-scopes", - ); - } -} diff --git a/src/api/resources/accounting/resources/scopes/client/index.ts b/src/api/resources/accounting/resources/scopes/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/api/resources/accounting/resources/scopes/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/api/resources/accounting/resources/scopes/client/requests/LinkedAccountCommonModelScopeDeserializerRequest.ts b/src/api/resources/accounting/resources/scopes/client/requests/LinkedAccountCommonModelScopeDeserializerRequest.ts deleted file mode 100644 index 9c36ac454..000000000 --- a/src/api/resources/accounting/resources/scopes/client/requests/LinkedAccountCommonModelScopeDeserializerRequest.ts +++ /dev/null @@ -1,35 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * commonModels: [{ - * modelName: "Employee", - * modelPermissions: { - * "READ": { - * isEnabled: true - * }, - * "WRITE": { - * isEnabled: false - * } - * }, - * fieldPermissions: { - * enabledFields: ["avatar", "home_location"], - * disabledFields: ["work_location"] - * } - * }, { - * modelName: "Benefit", - * modelPermissions: { - * "WRITE": { - * isEnabled: false - * } - * } - * }] - * } - */ -export interface LinkedAccountCommonModelScopeDeserializerRequest { - /** The common models you want to update the scopes for */ - commonModels: Merge.accounting.IndividualCommonModelScopeDeserializerRequest[]; -} diff --git a/src/api/resources/accounting/resources/scopes/client/requests/index.ts b/src/api/resources/accounting/resources/scopes/client/requests/index.ts deleted file mode 100644 index b77c0e5da..000000000 --- a/src/api/resources/accounting/resources/scopes/client/requests/index.ts +++ /dev/null @@ -1 +0,0 @@ -export type { LinkedAccountCommonModelScopeDeserializerRequest } from "./LinkedAccountCommonModelScopeDeserializerRequest"; diff --git a/src/api/resources/accounting/resources/scopes/exports.ts b/src/api/resources/accounting/resources/scopes/exports.ts deleted file mode 100644 index c641749fe..000000000 --- a/src/api/resources/accounting/resources/scopes/exports.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export { ScopesClient } from "./client/Client"; -export * from "./client/index"; diff --git a/src/api/resources/accounting/resources/scopes/index.ts b/src/api/resources/accounting/resources/scopes/index.ts deleted file mode 100644 index 5ec76921e..000000000 --- a/src/api/resources/accounting/resources/scopes/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./client"; diff --git a/src/api/resources/accounting/resources/syncStatus/client/Client.ts b/src/api/resources/accounting/resources/syncStatus/client/Client.ts deleted file mode 100644 index 3effe3b60..000000000 --- a/src/api/resources/accounting/resources/syncStatus/client/Client.ts +++ /dev/null @@ -1,100 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../BaseClient"; -import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../../../BaseClient"; -import * as core from "../../../../../../core"; -import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../../../core/headers"; -import * as environments from "../../../../../../environments"; -import { handleNonStatusCodeError } from "../../../../../../errors/handleNonStatusCodeError"; -import * as errors from "../../../../../../errors/index"; -import * as serializers from "../../../../../../serialization/index"; -import type * as Merge from "../../../../../index"; - -export declare namespace SyncStatusClient { - export type Options = BaseClientOptions; - - export interface RequestOptions extends BaseRequestOptions {} -} - -export class SyncStatusClient { - protected readonly _options: NormalizedClientOptionsWithAuth; - - constructor(options: SyncStatusClient.Options) { - this._options = normalizeClientOptionsWithAuth(options); - } - - /** - * Get sync status for the current sync and the most recently finished sync. `last_sync_start` represents the most recent time any sync began. `last_sync_finished` represents the most recent time any sync completed. These timestamps may correspond to different sync instances which may result in a sync start time being later than a separate sync completed time. To ensure you are retrieving the latest available data reference the `last_sync_finished` timestamp where `last_sync_result` is `DONE`. Possible values for `status` and `last_sync_result` are `DISABLED`, `DONE`, `FAILED`, `PARTIALLY_SYNCED`, `PAUSED`, `SYNCING`. Learn more about sync status in our [Help Center](https://help.merge.dev/en/articles/8184193-merge-sync-statuses). - * - * @param {Merge.accounting.SyncStatusListRequest} request - * @param {SyncStatusClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.syncStatus.list({ - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * pageSize: 1 - * }) - */ - public list( - request: Merge.accounting.SyncStatusListRequest = {}, - requestOptions?: SyncStatusClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__list(request, requestOptions)); - } - - private async __list( - request: Merge.accounting.SyncStatusListRequest = {}, - requestOptions?: SyncStatusClient.RequestOptions, - ): Promise> { - const { cursor, pageSize } = request; - const _queryParams: Record = { - cursor, - page_size: pageSize, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/sync-status", - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaginatedSyncStatusList.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError(_response.error, _response.rawResponse, "GET", "/accounting/v1/sync-status"); - } -} diff --git a/src/api/resources/accounting/resources/syncStatus/client/index.ts b/src/api/resources/accounting/resources/syncStatus/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/api/resources/accounting/resources/syncStatus/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/api/resources/accounting/resources/syncStatus/client/requests/SyncStatusListRequest.ts b/src/api/resources/accounting/resources/syncStatus/client/requests/SyncStatusListRequest.ts deleted file mode 100644 index 2bbace517..000000000 --- a/src/api/resources/accounting/resources/syncStatus/client/requests/SyncStatusListRequest.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * @example - * { - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * pageSize: 1 - * } - */ -export interface SyncStatusListRequest { - /** The pagination cursor value. */ - cursor?: string; - /** Number of results to return per page. */ - pageSize?: number; -} diff --git a/src/api/resources/accounting/resources/syncStatus/client/requests/index.ts b/src/api/resources/accounting/resources/syncStatus/client/requests/index.ts deleted file mode 100644 index 9c815333a..000000000 --- a/src/api/resources/accounting/resources/syncStatus/client/requests/index.ts +++ /dev/null @@ -1 +0,0 @@ -export type { SyncStatusListRequest } from "./SyncStatusListRequest"; diff --git a/src/api/resources/accounting/resources/syncStatus/exports.ts b/src/api/resources/accounting/resources/syncStatus/exports.ts deleted file mode 100644 index 9593edcc7..000000000 --- a/src/api/resources/accounting/resources/syncStatus/exports.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export { SyncStatusClient } from "./client/Client"; -export * from "./client/index"; diff --git a/src/api/resources/accounting/resources/syncStatus/index.ts b/src/api/resources/accounting/resources/syncStatus/index.ts deleted file mode 100644 index 5ec76921e..000000000 --- a/src/api/resources/accounting/resources/syncStatus/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./client"; diff --git a/src/api/resources/accounting/resources/taxRates/client/Client.ts b/src/api/resources/accounting/resources/taxRates/client/Client.ts deleted file mode 100644 index 2b365a7aa..000000000 --- a/src/api/resources/accounting/resources/taxRates/client/Client.ts +++ /dev/null @@ -1,216 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../BaseClient"; -import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../../../BaseClient"; -import * as core from "../../../../../../core"; -import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../../../core/headers"; -import * as environments from "../../../../../../environments"; -import { handleNonStatusCodeError } from "../../../../../../errors/handleNonStatusCodeError"; -import * as errors from "../../../../../../errors/index"; -import * as serializers from "../../../../../../serialization/index"; -import type * as Merge from "../../../../../index"; - -export declare namespace TaxRatesClient { - export type Options = BaseClientOptions; - - export interface RequestOptions extends BaseRequestOptions {} -} - -export class TaxRatesClient { - protected readonly _options: NormalizedClientOptionsWithAuth; - - constructor(options: TaxRatesClient.Options) { - this._options = normalizeClientOptionsWithAuth(options); - } - - /** - * Returns a list of `TaxRate` objects. - * - * @param {Merge.accounting.TaxRatesListRequest} request - * @param {TaxRatesClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.taxRates.list({ - * companyId: "company_id", - * createdAfter: new Date("2024-01-15T09:30:00.000Z"), - * createdBefore: new Date("2024-01-15T09:30:00.000Z"), - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * expand: "company", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - * modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - * name: "name", - * pageSize: 1, - * remoteId: "remote_id" - * }) - */ - public list( - request: Merge.accounting.TaxRatesListRequest = {}, - requestOptions?: TaxRatesClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__list(request, requestOptions)); - } - - private async __list( - request: Merge.accounting.TaxRatesListRequest = {}, - requestOptions?: TaxRatesClient.RequestOptions, - ): Promise> { - const { - companyId, - createdAfter, - createdBefore, - cursor, - expand, - includeDeletedData, - includeRemoteData, - includeShellData, - modifiedAfter, - modifiedBefore, - name, - pageSize, - remoteId, - } = request; - const _queryParams: Record = { - company_id: companyId, - created_after: createdAfter?.toISOString(), - created_before: createdBefore?.toISOString(), - cursor, - expand: expand != null ? expand : undefined, - include_deleted_data: includeDeletedData, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - modified_after: modifiedAfter?.toISOString(), - modified_before: modifiedBefore?.toISOString(), - name, - page_size: pageSize, - remote_id: remoteId, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/tax-rates", - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaginatedTaxRateList.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError(_response.error, _response.rawResponse, "GET", "/accounting/v1/tax-rates"); - } - - /** - * Returns a `TaxRate` object with the given `id`. - * - * @param {string} id - * @param {Merge.accounting.TaxRatesRetrieveRequest} request - * @param {TaxRatesClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.taxRates.retrieve("id", { - * expand: "company", - * includeRemoteData: true, - * includeShellData: true - * }) - */ - public retrieve( - id: string, - request: Merge.accounting.TaxRatesRetrieveRequest = {}, - requestOptions?: TaxRatesClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__retrieve(id, request, requestOptions)); - } - - private async __retrieve( - id: string, - request: Merge.accounting.TaxRatesRetrieveRequest = {}, - requestOptions?: TaxRatesClient.RequestOptions, - ): Promise> { - const { expand, includeRemoteData, includeShellData } = request; - const _queryParams: Record = { - expand: expand != null ? expand : undefined, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - `accounting/v1/tax-rates/${core.url.encodePathParam(id)}`, - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.TaxRate.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError(_response.error, _response.rawResponse, "GET", "/accounting/v1/tax-rates/{id}"); - } -} diff --git a/src/api/resources/accounting/resources/taxRates/client/index.ts b/src/api/resources/accounting/resources/taxRates/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/api/resources/accounting/resources/taxRates/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/api/resources/accounting/resources/taxRates/client/requests/TaxRatesListRequest.ts b/src/api/resources/accounting/resources/taxRates/client/requests/TaxRatesListRequest.ts deleted file mode 100644 index c9e713467..000000000 --- a/src/api/resources/accounting/resources/taxRates/client/requests/TaxRatesListRequest.ts +++ /dev/null @@ -1,48 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * @example - * { - * companyId: "company_id", - * createdAfter: new Date("2024-01-15T09:30:00.000Z"), - * createdBefore: new Date("2024-01-15T09:30:00.000Z"), - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * expand: "company", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - * modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - * name: "name", - * pageSize: 1, - * remoteId: "remote_id" - * } - */ -export interface TaxRatesListRequest { - /** If provided, will only return tax rates for this company. */ - companyId?: string; - /** If provided, will only return objects created after this datetime. */ - createdAfter?: Date; - /** If provided, will only return objects created before this datetime. */ - createdBefore?: Date; - /** The pagination cursor value. */ - cursor?: string; - /** Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. */ - expand?: "company"; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - includeDeletedData?: boolean; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** If provided, only objects synced by Merge after this date time will be returned. */ - modifiedAfter?: Date; - /** If provided, only objects synced by Merge before this date time will be returned. */ - modifiedBefore?: Date; - /** If provided, will only return TaxRates with this name. */ - name?: string; - /** Number of results to return per page. */ - pageSize?: number; - /** The API provider's ID for the given object. */ - remoteId?: string; -} diff --git a/src/api/resources/accounting/resources/taxRates/client/requests/TaxRatesRetrieveRequest.ts b/src/api/resources/accounting/resources/taxRates/client/requests/TaxRatesRetrieveRequest.ts deleted file mode 100644 index e437eed0d..000000000 --- a/src/api/resources/accounting/resources/taxRates/client/requests/TaxRatesRetrieveRequest.ts +++ /dev/null @@ -1,18 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * @example - * { - * expand: "company", - * includeRemoteData: true, - * includeShellData: true - * } - */ -export interface TaxRatesRetrieveRequest { - /** Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. */ - expand?: "company"; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; -} diff --git a/src/api/resources/accounting/resources/taxRates/client/requests/index.ts b/src/api/resources/accounting/resources/taxRates/client/requests/index.ts deleted file mode 100644 index e0df02235..000000000 --- a/src/api/resources/accounting/resources/taxRates/client/requests/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export type { TaxRatesListRequest } from "./TaxRatesListRequest"; -export type { TaxRatesRetrieveRequest } from "./TaxRatesRetrieveRequest"; diff --git a/src/api/resources/accounting/resources/taxRates/exports.ts b/src/api/resources/accounting/resources/taxRates/exports.ts deleted file mode 100644 index f85d88c21..000000000 --- a/src/api/resources/accounting/resources/taxRates/exports.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export { TaxRatesClient } from "./client/Client"; -export * from "./client/index"; diff --git a/src/api/resources/accounting/resources/taxRates/index.ts b/src/api/resources/accounting/resources/taxRates/index.ts deleted file mode 100644 index 5ec76921e..000000000 --- a/src/api/resources/accounting/resources/taxRates/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./client"; diff --git a/src/api/resources/accounting/resources/trackingCategories/client/Client.ts b/src/api/resources/accounting/resources/trackingCategories/client/Client.ts deleted file mode 100644 index 4a5dcffb2..000000000 --- a/src/api/resources/accounting/resources/trackingCategories/client/Client.ts +++ /dev/null @@ -1,252 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../BaseClient"; -import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../../../BaseClient"; -import * as core from "../../../../../../core"; -import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../../../core/headers"; -import * as environments from "../../../../../../environments"; -import { handleNonStatusCodeError } from "../../../../../../errors/handleNonStatusCodeError"; -import * as errors from "../../../../../../errors/index"; -import * as serializers from "../../../../../../serialization/index"; -import type * as Merge from "../../../../../index"; - -export declare namespace TrackingCategoriesClient { - export type Options = BaseClientOptions; - - export interface RequestOptions extends BaseRequestOptions {} -} - -export class TrackingCategoriesClient { - protected readonly _options: NormalizedClientOptionsWithAuth; - - constructor(options: TrackingCategoriesClient.Options) { - this._options = normalizeClientOptionsWithAuth(options); - } - - /** - * Returns a list of `TrackingCategory` objects. - * - * @param {Merge.accounting.TrackingCategoriesListRequest} request - * @param {TrackingCategoriesClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.trackingCategories.list({ - * categoryType: "", - * companyId: "company_id", - * createdAfter: new Date("2024-01-15T09:30:00.000Z"), - * createdBefore: new Date("2024-01-15T09:30:00.000Z"), - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * expand: "company", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - * modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - * name: "name", - * pageSize: 1, - * remoteFields: "status", - * remoteId: "remote_id", - * showEnumOrigins: "status", - * status: "" - * }) - */ - public list( - request: Merge.accounting.TrackingCategoriesListRequest = {}, - requestOptions?: TrackingCategoriesClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__list(request, requestOptions)); - } - - private async __list( - request: Merge.accounting.TrackingCategoriesListRequest = {}, - requestOptions?: TrackingCategoriesClient.RequestOptions, - ): Promise> { - const { - categoryType, - companyId, - createdAfter, - createdBefore, - cursor, - expand, - includeDeletedData, - includeRemoteData, - includeShellData, - modifiedAfter, - modifiedBefore, - name, - pageSize, - remoteFields, - remoteId, - showEnumOrigins, - status, - } = request; - const _queryParams: Record = { - category_type: - categoryType != null - ? serializers.accounting.TrackingCategoriesListRequestCategoryType.jsonOrThrow(categoryType, { - unrecognizedObjectKeys: "strip", - }) - : undefined, - company_id: companyId, - created_after: createdAfter?.toISOString(), - created_before: createdBefore?.toISOString(), - cursor, - expand: expand != null ? expand : undefined, - include_deleted_data: includeDeletedData, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - modified_after: modifiedAfter?.toISOString(), - modified_before: modifiedBefore?.toISOString(), - name, - page_size: pageSize, - remote_fields: remoteFields != null ? remoteFields : undefined, - remote_id: remoteId, - show_enum_origins: showEnumOrigins != null ? showEnumOrigins : undefined, - status: - status != null - ? serializers.accounting.TrackingCategoriesListRequestStatus.jsonOrThrow(status, { - unrecognizedObjectKeys: "strip", - }) - : undefined, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/tracking-categories", - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaginatedTrackingCategoryList.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/tracking-categories", - ); - } - - /** - * Returns a `TrackingCategory` object with the given `id`. - * - * @param {string} id - * @param {Merge.accounting.TrackingCategoriesRetrieveRequest} request - * @param {TrackingCategoriesClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.trackingCategories.retrieve("id", { - * expand: "company", - * includeRemoteData: true, - * includeShellData: true, - * remoteFields: "status", - * showEnumOrigins: "status" - * }) - */ - public retrieve( - id: string, - request: Merge.accounting.TrackingCategoriesRetrieveRequest = {}, - requestOptions?: TrackingCategoriesClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__retrieve(id, request, requestOptions)); - } - - private async __retrieve( - id: string, - request: Merge.accounting.TrackingCategoriesRetrieveRequest = {}, - requestOptions?: TrackingCategoriesClient.RequestOptions, - ): Promise> { - const { expand, includeRemoteData, includeShellData, remoteFields, showEnumOrigins } = request; - const _queryParams: Record = { - expand: expand != null ? expand : undefined, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - remote_fields: remoteFields != null ? remoteFields : undefined, - show_enum_origins: showEnumOrigins != null ? showEnumOrigins : undefined, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - `accounting/v1/tracking-categories/${core.url.encodePathParam(id)}`, - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.TrackingCategory.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/tracking-categories/{id}", - ); - } -} diff --git a/src/api/resources/accounting/resources/trackingCategories/client/index.ts b/src/api/resources/accounting/resources/trackingCategories/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/api/resources/accounting/resources/trackingCategories/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/api/resources/accounting/resources/trackingCategories/client/requests/TrackingCategoriesListRequest.ts b/src/api/resources/accounting/resources/trackingCategories/client/requests/TrackingCategoriesListRequest.ts deleted file mode 100644 index 0eb0a7c11..000000000 --- a/src/api/resources/accounting/resources/trackingCategories/client/requests/TrackingCategoriesListRequest.ts +++ /dev/null @@ -1,62 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * categoryType: "", - * companyId: "company_id", - * createdAfter: new Date("2024-01-15T09:30:00.000Z"), - * createdBefore: new Date("2024-01-15T09:30:00.000Z"), - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * expand: "company", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - * modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - * name: "name", - * pageSize: 1, - * remoteFields: "status", - * remoteId: "remote_id", - * showEnumOrigins: "status", - * status: "" - * } - */ -export interface TrackingCategoriesListRequest { - /** If provided, will only return tracking categories with this type. */ - categoryType?: Merge.accounting.TrackingCategoriesListRequestCategoryType; - /** If provided, will only return tracking categories for this company. */ - companyId?: string; - /** If provided, will only return objects created after this datetime. */ - createdAfter?: Date; - /** If provided, will only return objects created before this datetime. */ - createdBefore?: Date; - /** The pagination cursor value. */ - cursor?: string; - /** Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. */ - expand?: "company"; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - includeDeletedData?: boolean; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** If provided, only objects synced by Merge after this date time will be returned. */ - modifiedAfter?: Date; - /** If provided, only objects synced by Merge before this date time will be returned. */ - modifiedBefore?: Date; - /** If provided, will only return tracking categories with this name. */ - name?: string; - /** Number of results to return per page. */ - pageSize?: number; - /** Deprecated. Use show_enum_origins. */ - remoteFields?: "status"; - /** The API provider's ID for the given object. */ - remoteId?: string; - /** A comma separated list of enum field names for which you'd like the original values to be returned, instead of Merge's normalized enum values. [Learn more](https://help.merge.dev/en/articles/8950958-show_enum_origins-query-parameter) */ - showEnumOrigins?: "status"; - /** If provided, will only return tracking categories with this status. */ - status?: Merge.accounting.TrackingCategoriesListRequestStatus; -} diff --git a/src/api/resources/accounting/resources/trackingCategories/client/requests/TrackingCategoriesRetrieveRequest.ts b/src/api/resources/accounting/resources/trackingCategories/client/requests/TrackingCategoriesRetrieveRequest.ts deleted file mode 100644 index d03755f68..000000000 --- a/src/api/resources/accounting/resources/trackingCategories/client/requests/TrackingCategoriesRetrieveRequest.ts +++ /dev/null @@ -1,24 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * @example - * { - * expand: "company", - * includeRemoteData: true, - * includeShellData: true, - * remoteFields: "status", - * showEnumOrigins: "status" - * } - */ -export interface TrackingCategoriesRetrieveRequest { - /** Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. */ - expand?: "company"; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** Deprecated. Use show_enum_origins. */ - remoteFields?: "status"; - /** A comma separated list of enum field names for which you'd like the original values to be returned, instead of Merge's normalized enum values. [Learn more](https://help.merge.dev/en/articles/8950958-show_enum_origins-query-parameter) */ - showEnumOrigins?: "status"; -} diff --git a/src/api/resources/accounting/resources/trackingCategories/client/requests/index.ts b/src/api/resources/accounting/resources/trackingCategories/client/requests/index.ts deleted file mode 100644 index 05a0dbbbf..000000000 --- a/src/api/resources/accounting/resources/trackingCategories/client/requests/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export type { TrackingCategoriesListRequest } from "./TrackingCategoriesListRequest"; -export type { TrackingCategoriesRetrieveRequest } from "./TrackingCategoriesRetrieveRequest"; diff --git a/src/api/resources/accounting/resources/trackingCategories/exports.ts b/src/api/resources/accounting/resources/trackingCategories/exports.ts deleted file mode 100644 index 439f40e1a..000000000 --- a/src/api/resources/accounting/resources/trackingCategories/exports.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export { TrackingCategoriesClient } from "./client/Client"; -export * from "./client/index"; diff --git a/src/api/resources/accounting/resources/trackingCategories/index.ts b/src/api/resources/accounting/resources/trackingCategories/index.ts deleted file mode 100644 index d2ec2302c..000000000 --- a/src/api/resources/accounting/resources/trackingCategories/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./client"; -export * from "./types"; diff --git a/src/api/resources/accounting/resources/trackingCategories/types/TrackingCategoriesListRequestCategoryType.ts b/src/api/resources/accounting/resources/trackingCategories/types/TrackingCategoriesListRequestCategoryType.ts deleted file mode 100644 index 08749ce78..000000000 --- a/src/api/resources/accounting/resources/trackingCategories/types/TrackingCategoriesListRequestCategoryType.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export const TrackingCategoriesListRequestCategoryType = { - Empty: "", - Class: "CLASS", - Department: "DEPARTMENT", -} as const; -export type TrackingCategoriesListRequestCategoryType = - (typeof TrackingCategoriesListRequestCategoryType)[keyof typeof TrackingCategoriesListRequestCategoryType]; diff --git a/src/api/resources/accounting/resources/trackingCategories/types/TrackingCategoriesListRequestStatus.ts b/src/api/resources/accounting/resources/trackingCategories/types/TrackingCategoriesListRequestStatus.ts deleted file mode 100644 index 630afe742..000000000 --- a/src/api/resources/accounting/resources/trackingCategories/types/TrackingCategoriesListRequestStatus.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export const TrackingCategoriesListRequestStatus = { - Empty: "", - Active: "ACTIVE", - Archived: "ARCHIVED", -} as const; -export type TrackingCategoriesListRequestStatus = - (typeof TrackingCategoriesListRequestStatus)[keyof typeof TrackingCategoriesListRequestStatus]; diff --git a/src/api/resources/accounting/resources/trackingCategories/types/index.ts b/src/api/resources/accounting/resources/trackingCategories/types/index.ts deleted file mode 100644 index 7a701bc1c..000000000 --- a/src/api/resources/accounting/resources/trackingCategories/types/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./TrackingCategoriesListRequestCategoryType"; -export * from "./TrackingCategoriesListRequestStatus"; diff --git a/src/api/resources/accounting/resources/transactions/client/Client.ts b/src/api/resources/accounting/resources/transactions/client/Client.ts deleted file mode 100644 index 2d95ca7ad..000000000 --- a/src/api/resources/accounting/resources/transactions/client/Client.ts +++ /dev/null @@ -1,234 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../BaseClient"; -import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../../../BaseClient"; -import * as core from "../../../../../../core"; -import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../../../core/headers"; -import * as environments from "../../../../../../environments"; -import { handleNonStatusCodeError } from "../../../../../../errors/handleNonStatusCodeError"; -import * as errors from "../../../../../../errors/index"; -import * as serializers from "../../../../../../serialization/index"; -import type * as Merge from "../../../../../index"; - -export declare namespace TransactionsClient { - export type Options = BaseClientOptions; - - export interface RequestOptions extends BaseRequestOptions {} -} - -export class TransactionsClient { - protected readonly _options: NormalizedClientOptionsWithAuth; - - constructor(options: TransactionsClient.Options) { - this._options = normalizeClientOptionsWithAuth(options); - } - - /** - * Returns a list of `Transaction` objects. - * - * @param {Merge.accounting.TransactionsListRequest} request - * @param {TransactionsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.transactions.list({ - * companyId: "company_id", - * createdAfter: new Date("2024-01-15T09:30:00.000Z"), - * createdBefore: new Date("2024-01-15T09:30:00.000Z"), - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * expand: "account", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - * modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - * pageSize: 1, - * remoteId: "remote_id", - * transactionDateAfter: new Date("2024-01-15T09:30:00.000Z"), - * transactionDateBefore: new Date("2024-01-15T09:30:00.000Z") - * }) - */ - public list( - request: Merge.accounting.TransactionsListRequest = {}, - requestOptions?: TransactionsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__list(request, requestOptions)); - } - - private async __list( - request: Merge.accounting.TransactionsListRequest = {}, - requestOptions?: TransactionsClient.RequestOptions, - ): Promise> { - const { - companyId, - createdAfter, - createdBefore, - cursor, - expand, - includeDeletedData, - includeRemoteData, - includeShellData, - modifiedAfter, - modifiedBefore, - pageSize, - remoteId, - transactionDateAfter, - transactionDateBefore, - } = request; - const _queryParams: Record = { - company_id: companyId, - created_after: createdAfter?.toISOString(), - created_before: createdBefore?.toISOString(), - cursor, - expand: - expand != null - ? serializers.accounting.TransactionsListRequestExpand.jsonOrThrow(expand, { - unrecognizedObjectKeys: "strip", - }) - : undefined, - include_deleted_data: includeDeletedData, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - modified_after: modifiedAfter?.toISOString(), - modified_before: modifiedBefore?.toISOString(), - page_size: pageSize, - remote_id: remoteId, - transaction_date_after: transactionDateAfter?.toISOString(), - transaction_date_before: transactionDateBefore?.toISOString(), - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/transactions", - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaginatedTransactionList.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError(_response.error, _response.rawResponse, "GET", "/accounting/v1/transactions"); - } - - /** - * Returns a `Transaction` object with the given `id`. - * - * @param {string} id - * @param {Merge.accounting.TransactionsRetrieveRequest} request - * @param {TransactionsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.transactions.retrieve("id", { - * expand: "account", - * includeRemoteData: true, - * includeShellData: true - * }) - */ - public retrieve( - id: string, - request: Merge.accounting.TransactionsRetrieveRequest = {}, - requestOptions?: TransactionsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__retrieve(id, request, requestOptions)); - } - - private async __retrieve( - id: string, - request: Merge.accounting.TransactionsRetrieveRequest = {}, - requestOptions?: TransactionsClient.RequestOptions, - ): Promise> { - const { expand, includeRemoteData, includeShellData } = request; - const _queryParams: Record = { - expand: - expand != null - ? serializers.accounting.TransactionsRetrieveRequestExpand.jsonOrThrow(expand, { - unrecognizedObjectKeys: "strip", - }) - : undefined, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - `accounting/v1/transactions/${core.url.encodePathParam(id)}`, - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.Transaction.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/transactions/{id}", - ); - } -} diff --git a/src/api/resources/accounting/resources/transactions/client/index.ts b/src/api/resources/accounting/resources/transactions/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/api/resources/accounting/resources/transactions/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/api/resources/accounting/resources/transactions/client/requests/TransactionsListRequest.ts b/src/api/resources/accounting/resources/transactions/client/requests/TransactionsListRequest.ts deleted file mode 100644 index 8c11585fb..000000000 --- a/src/api/resources/accounting/resources/transactions/client/requests/TransactionsListRequest.ts +++ /dev/null @@ -1,53 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * companyId: "company_id", - * createdAfter: new Date("2024-01-15T09:30:00.000Z"), - * createdBefore: new Date("2024-01-15T09:30:00.000Z"), - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * expand: "account", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - * modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - * pageSize: 1, - * remoteId: "remote_id", - * transactionDateAfter: new Date("2024-01-15T09:30:00.000Z"), - * transactionDateBefore: new Date("2024-01-15T09:30:00.000Z") - * } - */ -export interface TransactionsListRequest { - /** If provided, will only return accounting transactions for this company. */ - companyId?: string; - /** If provided, will only return objects created after this datetime. */ - createdAfter?: Date; - /** If provided, will only return objects created before this datetime. */ - createdBefore?: Date; - /** The pagination cursor value. */ - cursor?: string; - /** Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. */ - expand?: Merge.accounting.TransactionsListRequestExpand; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - includeDeletedData?: boolean; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** If provided, only objects synced by Merge after this date time will be returned. */ - modifiedAfter?: Date; - /** If provided, only objects synced by Merge before this date time will be returned. */ - modifiedBefore?: Date; - /** Number of results to return per page. */ - pageSize?: number; - /** The API provider's ID for the given object. */ - remoteId?: string; - /** If provided, will only return objects created after this datetime. */ - transactionDateAfter?: Date; - /** If provided, will only return objects created before this datetime. */ - transactionDateBefore?: Date; -} diff --git a/src/api/resources/accounting/resources/transactions/client/requests/TransactionsRetrieveRequest.ts b/src/api/resources/accounting/resources/transactions/client/requests/TransactionsRetrieveRequest.ts deleted file mode 100644 index 472eb1ab3..000000000 --- a/src/api/resources/accounting/resources/transactions/client/requests/TransactionsRetrieveRequest.ts +++ /dev/null @@ -1,20 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * expand: "account", - * includeRemoteData: true, - * includeShellData: true - * } - */ -export interface TransactionsRetrieveRequest { - /** Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. */ - expand?: Merge.accounting.TransactionsRetrieveRequestExpand; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; -} diff --git a/src/api/resources/accounting/resources/transactions/client/requests/index.ts b/src/api/resources/accounting/resources/transactions/client/requests/index.ts deleted file mode 100644 index e7d400d15..000000000 --- a/src/api/resources/accounting/resources/transactions/client/requests/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export type { TransactionsListRequest } from "./TransactionsListRequest"; -export type { TransactionsRetrieveRequest } from "./TransactionsRetrieveRequest"; diff --git a/src/api/resources/accounting/resources/transactions/exports.ts b/src/api/resources/accounting/resources/transactions/exports.ts deleted file mode 100644 index 4e81432c9..000000000 --- a/src/api/resources/accounting/resources/transactions/exports.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export { TransactionsClient } from "./client/Client"; -export * from "./client/index"; diff --git a/src/api/resources/accounting/resources/transactions/index.ts b/src/api/resources/accounting/resources/transactions/index.ts deleted file mode 100644 index d2ec2302c..000000000 --- a/src/api/resources/accounting/resources/transactions/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./client"; -export * from "./types"; diff --git a/src/api/resources/accounting/resources/transactions/types/TransactionsListRequestExpand.ts b/src/api/resources/accounting/resources/transactions/types/TransactionsListRequestExpand.ts deleted file mode 100644 index 13d6b32ea..000000000 --- a/src/api/resources/accounting/resources/transactions/types/TransactionsListRequestExpand.ts +++ /dev/null @@ -1,74 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export const TransactionsListRequestExpand = { - Account: "account", - AccountAccountingPeriod: "account,accounting_period", - AccountCompany: "account,company", - AccountCompanyAccountingPeriod: "account,company,accounting_period", - AccountingPeriod: "accounting_period", - Company: "company", - CompanyAccountingPeriod: "company,accounting_period", - Contact: "contact", - ContactAccount: "contact,account", - ContactAccountAccountingPeriod: "contact,account,accounting_period", - ContactAccountCompany: "contact,account,company", - ContactAccountCompanyAccountingPeriod: "contact,account,company,accounting_period", - ContactAccountingPeriod: "contact,accounting_period", - ContactCompany: "contact,company", - ContactCompanyAccountingPeriod: "contact,company,accounting_period", - LineItems: "line_items", - LineItemsAccount: "line_items,account", - LineItemsAccountAccountingPeriod: "line_items,account,accounting_period", - LineItemsAccountCompany: "line_items,account,company", - LineItemsAccountCompanyAccountingPeriod: "line_items,account,company,accounting_period", - LineItemsAccountingPeriod: "line_items,accounting_period", - LineItemsCompany: "line_items,company", - LineItemsCompanyAccountingPeriod: "line_items,company,accounting_period", - LineItemsContact: "line_items,contact", - LineItemsContactAccount: "line_items,contact,account", - LineItemsContactAccountAccountingPeriod: "line_items,contact,account,accounting_period", - LineItemsContactAccountCompany: "line_items,contact,account,company", - LineItemsContactAccountCompanyAccountingPeriod: "line_items,contact,account,company,accounting_period", - LineItemsContactAccountingPeriod: "line_items,contact,accounting_period", - LineItemsContactCompany: "line_items,contact,company", - LineItemsContactCompanyAccountingPeriod: "line_items,contact,company,accounting_period", - LineItemsTrackingCategories: "line_items,tracking_categories", - LineItemsTrackingCategoriesAccount: "line_items,tracking_categories,account", - LineItemsTrackingCategoriesAccountAccountingPeriod: "line_items,tracking_categories,account,accounting_period", - LineItemsTrackingCategoriesAccountCompany: "line_items,tracking_categories,account,company", - LineItemsTrackingCategoriesAccountCompanyAccountingPeriod: - "line_items,tracking_categories,account,company,accounting_period", - LineItemsTrackingCategoriesAccountingPeriod: "line_items,tracking_categories,accounting_period", - LineItemsTrackingCategoriesCompany: "line_items,tracking_categories,company", - LineItemsTrackingCategoriesCompanyAccountingPeriod: "line_items,tracking_categories,company,accounting_period", - LineItemsTrackingCategoriesContact: "line_items,tracking_categories,contact", - LineItemsTrackingCategoriesContactAccount: "line_items,tracking_categories,contact,account", - LineItemsTrackingCategoriesContactAccountAccountingPeriod: - "line_items,tracking_categories,contact,account,accounting_period", - LineItemsTrackingCategoriesContactAccountCompany: "line_items,tracking_categories,contact,account,company", - LineItemsTrackingCategoriesContactAccountCompanyAccountingPeriod: - "line_items,tracking_categories,contact,account,company,accounting_period", - LineItemsTrackingCategoriesContactAccountingPeriod: "line_items,tracking_categories,contact,accounting_period", - LineItemsTrackingCategoriesContactCompany: "line_items,tracking_categories,contact,company", - LineItemsTrackingCategoriesContactCompanyAccountingPeriod: - "line_items,tracking_categories,contact,company,accounting_period", - TrackingCategories: "tracking_categories", - TrackingCategoriesAccount: "tracking_categories,account", - TrackingCategoriesAccountAccountingPeriod: "tracking_categories,account,accounting_period", - TrackingCategoriesAccountCompany: "tracking_categories,account,company", - TrackingCategoriesAccountCompanyAccountingPeriod: "tracking_categories,account,company,accounting_period", - TrackingCategoriesAccountingPeriod: "tracking_categories,accounting_period", - TrackingCategoriesCompany: "tracking_categories,company", - TrackingCategoriesCompanyAccountingPeriod: "tracking_categories,company,accounting_period", - TrackingCategoriesContact: "tracking_categories,contact", - TrackingCategoriesContactAccount: "tracking_categories,contact,account", - TrackingCategoriesContactAccountAccountingPeriod: "tracking_categories,contact,account,accounting_period", - TrackingCategoriesContactAccountCompany: "tracking_categories,contact,account,company", - TrackingCategoriesContactAccountCompanyAccountingPeriod: - "tracking_categories,contact,account,company,accounting_period", - TrackingCategoriesContactAccountingPeriod: "tracking_categories,contact,accounting_period", - TrackingCategoriesContactCompany: "tracking_categories,contact,company", - TrackingCategoriesContactCompanyAccountingPeriod: "tracking_categories,contact,company,accounting_period", -} as const; -export type TransactionsListRequestExpand = - (typeof TransactionsListRequestExpand)[keyof typeof TransactionsListRequestExpand]; diff --git a/src/api/resources/accounting/resources/transactions/types/TransactionsRetrieveRequestExpand.ts b/src/api/resources/accounting/resources/transactions/types/TransactionsRetrieveRequestExpand.ts deleted file mode 100644 index fe5130fb4..000000000 --- a/src/api/resources/accounting/resources/transactions/types/TransactionsRetrieveRequestExpand.ts +++ /dev/null @@ -1,74 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export const TransactionsRetrieveRequestExpand = { - Account: "account", - AccountAccountingPeriod: "account,accounting_period", - AccountCompany: "account,company", - AccountCompanyAccountingPeriod: "account,company,accounting_period", - AccountingPeriod: "accounting_period", - Company: "company", - CompanyAccountingPeriod: "company,accounting_period", - Contact: "contact", - ContactAccount: "contact,account", - ContactAccountAccountingPeriod: "contact,account,accounting_period", - ContactAccountCompany: "contact,account,company", - ContactAccountCompanyAccountingPeriod: "contact,account,company,accounting_period", - ContactAccountingPeriod: "contact,accounting_period", - ContactCompany: "contact,company", - ContactCompanyAccountingPeriod: "contact,company,accounting_period", - LineItems: "line_items", - LineItemsAccount: "line_items,account", - LineItemsAccountAccountingPeriod: "line_items,account,accounting_period", - LineItemsAccountCompany: "line_items,account,company", - LineItemsAccountCompanyAccountingPeriod: "line_items,account,company,accounting_period", - LineItemsAccountingPeriod: "line_items,accounting_period", - LineItemsCompany: "line_items,company", - LineItemsCompanyAccountingPeriod: "line_items,company,accounting_period", - LineItemsContact: "line_items,contact", - LineItemsContactAccount: "line_items,contact,account", - LineItemsContactAccountAccountingPeriod: "line_items,contact,account,accounting_period", - LineItemsContactAccountCompany: "line_items,contact,account,company", - LineItemsContactAccountCompanyAccountingPeriod: "line_items,contact,account,company,accounting_period", - LineItemsContactAccountingPeriod: "line_items,contact,accounting_period", - LineItemsContactCompany: "line_items,contact,company", - LineItemsContactCompanyAccountingPeriod: "line_items,contact,company,accounting_period", - LineItemsTrackingCategories: "line_items,tracking_categories", - LineItemsTrackingCategoriesAccount: "line_items,tracking_categories,account", - LineItemsTrackingCategoriesAccountAccountingPeriod: "line_items,tracking_categories,account,accounting_period", - LineItemsTrackingCategoriesAccountCompany: "line_items,tracking_categories,account,company", - LineItemsTrackingCategoriesAccountCompanyAccountingPeriod: - "line_items,tracking_categories,account,company,accounting_period", - LineItemsTrackingCategoriesAccountingPeriod: "line_items,tracking_categories,accounting_period", - LineItemsTrackingCategoriesCompany: "line_items,tracking_categories,company", - LineItemsTrackingCategoriesCompanyAccountingPeriod: "line_items,tracking_categories,company,accounting_period", - LineItemsTrackingCategoriesContact: "line_items,tracking_categories,contact", - LineItemsTrackingCategoriesContactAccount: "line_items,tracking_categories,contact,account", - LineItemsTrackingCategoriesContactAccountAccountingPeriod: - "line_items,tracking_categories,contact,account,accounting_period", - LineItemsTrackingCategoriesContactAccountCompany: "line_items,tracking_categories,contact,account,company", - LineItemsTrackingCategoriesContactAccountCompanyAccountingPeriod: - "line_items,tracking_categories,contact,account,company,accounting_period", - LineItemsTrackingCategoriesContactAccountingPeriod: "line_items,tracking_categories,contact,accounting_period", - LineItemsTrackingCategoriesContactCompany: "line_items,tracking_categories,contact,company", - LineItemsTrackingCategoriesContactCompanyAccountingPeriod: - "line_items,tracking_categories,contact,company,accounting_period", - TrackingCategories: "tracking_categories", - TrackingCategoriesAccount: "tracking_categories,account", - TrackingCategoriesAccountAccountingPeriod: "tracking_categories,account,accounting_period", - TrackingCategoriesAccountCompany: "tracking_categories,account,company", - TrackingCategoriesAccountCompanyAccountingPeriod: "tracking_categories,account,company,accounting_period", - TrackingCategoriesAccountingPeriod: "tracking_categories,accounting_period", - TrackingCategoriesCompany: "tracking_categories,company", - TrackingCategoriesCompanyAccountingPeriod: "tracking_categories,company,accounting_period", - TrackingCategoriesContact: "tracking_categories,contact", - TrackingCategoriesContactAccount: "tracking_categories,contact,account", - TrackingCategoriesContactAccountAccountingPeriod: "tracking_categories,contact,account,accounting_period", - TrackingCategoriesContactAccountCompany: "tracking_categories,contact,account,company", - TrackingCategoriesContactAccountCompanyAccountingPeriod: - "tracking_categories,contact,account,company,accounting_period", - TrackingCategoriesContactAccountingPeriod: "tracking_categories,contact,accounting_period", - TrackingCategoriesContactCompany: "tracking_categories,contact,company", - TrackingCategoriesContactCompanyAccountingPeriod: "tracking_categories,contact,company,accounting_period", -} as const; -export type TransactionsRetrieveRequestExpand = - (typeof TransactionsRetrieveRequestExpand)[keyof typeof TransactionsRetrieveRequestExpand]; diff --git a/src/api/resources/accounting/resources/transactions/types/index.ts b/src/api/resources/accounting/resources/transactions/types/index.ts deleted file mode 100644 index d40b559e9..000000000 --- a/src/api/resources/accounting/resources/transactions/types/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./TransactionsListRequestExpand"; -export * from "./TransactionsRetrieveRequestExpand"; diff --git a/src/api/resources/accounting/resources/vendorCredits/client/Client.ts b/src/api/resources/accounting/resources/vendorCredits/client/Client.ts deleted file mode 100644 index c4262fc32..000000000 --- a/src/api/resources/accounting/resources/vendorCredits/client/Client.ts +++ /dev/null @@ -1,389 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../BaseClient"; -import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../../../BaseClient"; -import * as core from "../../../../../../core"; -import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../../../core/headers"; -import * as environments from "../../../../../../environments"; -import { handleNonStatusCodeError } from "../../../../../../errors/handleNonStatusCodeError"; -import * as errors from "../../../../../../errors/index"; -import * as serializers from "../../../../../../serialization/index"; -import type * as Merge from "../../../../../index"; - -export declare namespace VendorCreditsClient { - export type Options = BaseClientOptions; - - export interface RequestOptions extends BaseRequestOptions {} -} - -export class VendorCreditsClient { - protected readonly _options: NormalizedClientOptionsWithAuth; - - constructor(options: VendorCreditsClient.Options) { - this._options = normalizeClientOptionsWithAuth(options); - } - - /** - * Returns a list of `VendorCredit` objects. - * - * @param {Merge.accounting.VendorCreditsListRequest} request - * @param {VendorCreditsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.vendorCredits.list({ - * companyId: "company_id", - * createdAfter: new Date("2024-01-15T09:30:00.000Z"), - * createdBefore: new Date("2024-01-15T09:30:00.000Z"), - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * expand: "accounting_period", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - * modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - * pageSize: 1, - * remoteId: "remote_id", - * transactionDateAfter: new Date("2024-01-15T09:30:00.000Z"), - * transactionDateBefore: new Date("2024-01-15T09:30:00.000Z") - * }) - */ - public list( - request: Merge.accounting.VendorCreditsListRequest = {}, - requestOptions?: VendorCreditsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__list(request, requestOptions)); - } - - private async __list( - request: Merge.accounting.VendorCreditsListRequest = {}, - requestOptions?: VendorCreditsClient.RequestOptions, - ): Promise> { - const { - companyId, - createdAfter, - createdBefore, - cursor, - expand, - includeDeletedData, - includeRemoteData, - includeShellData, - modifiedAfter, - modifiedBefore, - pageSize, - remoteId, - transactionDateAfter, - transactionDateBefore, - } = request; - const _queryParams: Record = { - company_id: companyId, - created_after: createdAfter?.toISOString(), - created_before: createdBefore?.toISOString(), - cursor, - expand: - expand != null - ? serializers.accounting.VendorCreditsListRequestExpand.jsonOrThrow(expand, { - unrecognizedObjectKeys: "strip", - }) - : undefined, - include_deleted_data: includeDeletedData, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - modified_after: modifiedAfter?.toISOString(), - modified_before: modifiedBefore?.toISOString(), - page_size: pageSize, - remote_id: remoteId, - transaction_date_after: transactionDateAfter?.toISOString(), - transaction_date_before: transactionDateBefore?.toISOString(), - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/vendor-credits", - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.PaginatedVendorCreditList.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError(_response.error, _response.rawResponse, "GET", "/accounting/v1/vendor-credits"); - } - - /** - * Creates a `VendorCredit` object with the given values. - * - * @param {Merge.accounting.VendorCreditEndpointRequest} request - * @param {VendorCreditsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.vendorCredits.create({ - * isDebugMode: true, - * runAsync: true, - * model: {} - * }) - */ - public create( - request: Merge.accounting.VendorCreditEndpointRequest, - requestOptions?: VendorCreditsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__create(request, requestOptions)); - } - - private async __create( - request: Merge.accounting.VendorCreditEndpointRequest, - requestOptions?: VendorCreditsClient.RequestOptions, - ): Promise> { - const { isDebugMode, runAsync, ..._body } = request; - const _queryParams: Record = { - is_debug_mode: isDebugMode, - run_async: runAsync, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/vendor-credits", - ), - method: "POST", - headers: _headers, - contentType: "application/json", - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - requestType: "json", - body: serializers.accounting.VendorCreditEndpointRequest.jsonOrThrow(_body, { - unrecognizedObjectKeys: "strip", - }), - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.VendorCreditResponse.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "POST", - "/accounting/v1/vendor-credits", - ); - } - - /** - * Returns a `VendorCredit` object with the given `id`. - * - * @param {string} id - * @param {Merge.accounting.VendorCreditsRetrieveRequest} request - * @param {VendorCreditsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.vendorCredits.retrieve("id", { - * expand: "accounting_period", - * includeRemoteData: true, - * includeShellData: true - * }) - */ - public retrieve( - id: string, - request: Merge.accounting.VendorCreditsRetrieveRequest = {}, - requestOptions?: VendorCreditsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__retrieve(id, request, requestOptions)); - } - - private async __retrieve( - id: string, - request: Merge.accounting.VendorCreditsRetrieveRequest = {}, - requestOptions?: VendorCreditsClient.RequestOptions, - ): Promise> { - const { expand, includeRemoteData, includeShellData } = request; - const _queryParams: Record = { - expand: - expand != null - ? serializers.accounting.VendorCreditsRetrieveRequestExpand.jsonOrThrow(expand, { - unrecognizedObjectKeys: "strip", - }) - : undefined, - include_remote_data: includeRemoteData, - include_shell_data: includeShellData, - }; - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - `accounting/v1/vendor-credits/${core.url.encodePathParam(id)}`, - ), - method: "GET", - headers: _headers, - queryParameters: { ..._queryParams, ...requestOptions?.queryParams }, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.VendorCredit.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/vendor-credits/{id}", - ); - } - - /** - * Returns metadata for `VendorCredit` POSTs. - * - * @param {VendorCreditsClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.vendorCredits.metaPostRetrieve() - */ - public metaPostRetrieve( - requestOptions?: VendorCreditsClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__metaPostRetrieve(requestOptions)); - } - - private async __metaPostRetrieve( - requestOptions?: VendorCreditsClient.RequestOptions, - ): Promise> { - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/vendor-credits/meta/post", - ), - method: "GET", - headers: _headers, - queryParameters: requestOptions?.queryParams, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.MetaResponse.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/vendor-credits/meta/post", - ); - } -} diff --git a/src/api/resources/accounting/resources/vendorCredits/client/index.ts b/src/api/resources/accounting/resources/vendorCredits/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/api/resources/accounting/resources/vendorCredits/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/api/resources/accounting/resources/vendorCredits/client/requests/VendorCreditEndpointRequest.ts b/src/api/resources/accounting/resources/vendorCredits/client/requests/VendorCreditEndpointRequest.ts deleted file mode 100644 index cccd85d9d..000000000 --- a/src/api/resources/accounting/resources/vendorCredits/client/requests/VendorCreditEndpointRequest.ts +++ /dev/null @@ -1,19 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * isDebugMode: true, - * runAsync: true, - * model: {} - * } - */ -export interface VendorCreditEndpointRequest { - /** Whether to include debug fields (such as log file links) in the response. */ - isDebugMode?: boolean; - /** Whether or not third-party updates should be run asynchronously. */ - runAsync?: boolean; - model: Merge.accounting.VendorCreditRequest; -} diff --git a/src/api/resources/accounting/resources/vendorCredits/client/requests/VendorCreditsListRequest.ts b/src/api/resources/accounting/resources/vendorCredits/client/requests/VendorCreditsListRequest.ts deleted file mode 100644 index 77985bb71..000000000 --- a/src/api/resources/accounting/resources/vendorCredits/client/requests/VendorCreditsListRequest.ts +++ /dev/null @@ -1,53 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * companyId: "company_id", - * createdAfter: new Date("2024-01-15T09:30:00.000Z"), - * createdBefore: new Date("2024-01-15T09:30:00.000Z"), - * cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - * expand: "accounting_period", - * includeDeletedData: true, - * includeRemoteData: true, - * includeShellData: true, - * modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - * modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - * pageSize: 1, - * remoteId: "remote_id", - * transactionDateAfter: new Date("2024-01-15T09:30:00.000Z"), - * transactionDateBefore: new Date("2024-01-15T09:30:00.000Z") - * } - */ -export interface VendorCreditsListRequest { - /** If provided, will only return vendor credits for this company. */ - companyId?: string; - /** If provided, will only return objects created after this datetime. */ - createdAfter?: Date; - /** If provided, will only return objects created before this datetime. */ - createdBefore?: Date; - /** The pagination cursor value. */ - cursor?: string; - /** Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. */ - expand?: Merge.accounting.VendorCreditsListRequestExpand; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - includeDeletedData?: boolean; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; - /** If provided, only objects synced by Merge after this date time will be returned. */ - modifiedAfter?: Date; - /** If provided, only objects synced by Merge before this date time will be returned. */ - modifiedBefore?: Date; - /** Number of results to return per page. */ - pageSize?: number; - /** The API provider's ID for the given object. */ - remoteId?: string; - /** If provided, will only return objects created after this datetime. */ - transactionDateAfter?: Date; - /** If provided, will only return objects created before this datetime. */ - transactionDateBefore?: Date; -} diff --git a/src/api/resources/accounting/resources/vendorCredits/client/requests/VendorCreditsRetrieveRequest.ts b/src/api/resources/accounting/resources/vendorCredits/client/requests/VendorCreditsRetrieveRequest.ts deleted file mode 100644 index df40719fc..000000000 --- a/src/api/resources/accounting/resources/vendorCredits/client/requests/VendorCreditsRetrieveRequest.ts +++ /dev/null @@ -1,20 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../index"; - -/** - * @example - * { - * expand: "accounting_period", - * includeRemoteData: true, - * includeShellData: true - * } - */ -export interface VendorCreditsRetrieveRequest { - /** Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. */ - expand?: Merge.accounting.VendorCreditsRetrieveRequestExpand; - /** Whether to include the original data Merge fetched from the third-party to produce these models. */ - includeRemoteData?: boolean; - /** Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null). */ - includeShellData?: boolean; -} diff --git a/src/api/resources/accounting/resources/vendorCredits/client/requests/index.ts b/src/api/resources/accounting/resources/vendorCredits/client/requests/index.ts deleted file mode 100644 index 442a8e886..000000000 --- a/src/api/resources/accounting/resources/vendorCredits/client/requests/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -export type { VendorCreditEndpointRequest } from "./VendorCreditEndpointRequest"; -export type { VendorCreditsListRequest } from "./VendorCreditsListRequest"; -export type { VendorCreditsRetrieveRequest } from "./VendorCreditsRetrieveRequest"; diff --git a/src/api/resources/accounting/resources/vendorCredits/exports.ts b/src/api/resources/accounting/resources/vendorCredits/exports.ts deleted file mode 100644 index a9b35e0fa..000000000 --- a/src/api/resources/accounting/resources/vendorCredits/exports.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export { VendorCreditsClient } from "./client/Client"; -export * from "./client/index"; diff --git a/src/api/resources/accounting/resources/vendorCredits/index.ts b/src/api/resources/accounting/resources/vendorCredits/index.ts deleted file mode 100644 index d2ec2302c..000000000 --- a/src/api/resources/accounting/resources/vendorCredits/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./client"; -export * from "./types"; diff --git a/src/api/resources/accounting/resources/vendorCredits/types/VendorCreditsListRequestExpand.ts b/src/api/resources/accounting/resources/vendorCredits/types/VendorCreditsListRequestExpand.ts deleted file mode 100644 index 6c319e25a..000000000 --- a/src/api/resources/accounting/resources/vendorCredits/types/VendorCreditsListRequestExpand.ts +++ /dev/null @@ -1,37 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export const VendorCreditsListRequestExpand = { - AccountingPeriod: "accounting_period", - Company: "company", - CompanyAccountingPeriod: "company,accounting_period", - Lines: "lines", - LinesAccountingPeriod: "lines,accounting_period", - LinesCompany: "lines,company", - LinesCompanyAccountingPeriod: "lines,company,accounting_period", - LinesTrackingCategories: "lines,tracking_categories", - LinesTrackingCategoriesAccountingPeriod: "lines,tracking_categories,accounting_period", - LinesTrackingCategoriesCompany: "lines,tracking_categories,company", - LinesTrackingCategoriesCompanyAccountingPeriod: "lines,tracking_categories,company,accounting_period", - LinesTrackingCategoriesVendor: "lines,tracking_categories,vendor", - LinesTrackingCategoriesVendorAccountingPeriod: "lines,tracking_categories,vendor,accounting_period", - LinesTrackingCategoriesVendorCompany: "lines,tracking_categories,vendor,company", - LinesTrackingCategoriesVendorCompanyAccountingPeriod: "lines,tracking_categories,vendor,company,accounting_period", - LinesVendor: "lines,vendor", - LinesVendorAccountingPeriod: "lines,vendor,accounting_period", - LinesVendorCompany: "lines,vendor,company", - LinesVendorCompanyAccountingPeriod: "lines,vendor,company,accounting_period", - TrackingCategories: "tracking_categories", - TrackingCategoriesAccountingPeriod: "tracking_categories,accounting_period", - TrackingCategoriesCompany: "tracking_categories,company", - TrackingCategoriesCompanyAccountingPeriod: "tracking_categories,company,accounting_period", - TrackingCategoriesVendor: "tracking_categories,vendor", - TrackingCategoriesVendorAccountingPeriod: "tracking_categories,vendor,accounting_period", - TrackingCategoriesVendorCompany: "tracking_categories,vendor,company", - TrackingCategoriesVendorCompanyAccountingPeriod: "tracking_categories,vendor,company,accounting_period", - Vendor: "vendor", - VendorAccountingPeriod: "vendor,accounting_period", - VendorCompany: "vendor,company", - VendorCompanyAccountingPeriod: "vendor,company,accounting_period", -} as const; -export type VendorCreditsListRequestExpand = - (typeof VendorCreditsListRequestExpand)[keyof typeof VendorCreditsListRequestExpand]; diff --git a/src/api/resources/accounting/resources/vendorCredits/types/VendorCreditsRetrieveRequestExpand.ts b/src/api/resources/accounting/resources/vendorCredits/types/VendorCreditsRetrieveRequestExpand.ts deleted file mode 100644 index cb9fc0593..000000000 --- a/src/api/resources/accounting/resources/vendorCredits/types/VendorCreditsRetrieveRequestExpand.ts +++ /dev/null @@ -1,37 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export const VendorCreditsRetrieveRequestExpand = { - AccountingPeriod: "accounting_period", - Company: "company", - CompanyAccountingPeriod: "company,accounting_period", - Lines: "lines", - LinesAccountingPeriod: "lines,accounting_period", - LinesCompany: "lines,company", - LinesCompanyAccountingPeriod: "lines,company,accounting_period", - LinesTrackingCategories: "lines,tracking_categories", - LinesTrackingCategoriesAccountingPeriod: "lines,tracking_categories,accounting_period", - LinesTrackingCategoriesCompany: "lines,tracking_categories,company", - LinesTrackingCategoriesCompanyAccountingPeriod: "lines,tracking_categories,company,accounting_period", - LinesTrackingCategoriesVendor: "lines,tracking_categories,vendor", - LinesTrackingCategoriesVendorAccountingPeriod: "lines,tracking_categories,vendor,accounting_period", - LinesTrackingCategoriesVendorCompany: "lines,tracking_categories,vendor,company", - LinesTrackingCategoriesVendorCompanyAccountingPeriod: "lines,tracking_categories,vendor,company,accounting_period", - LinesVendor: "lines,vendor", - LinesVendorAccountingPeriod: "lines,vendor,accounting_period", - LinesVendorCompany: "lines,vendor,company", - LinesVendorCompanyAccountingPeriod: "lines,vendor,company,accounting_period", - TrackingCategories: "tracking_categories", - TrackingCategoriesAccountingPeriod: "tracking_categories,accounting_period", - TrackingCategoriesCompany: "tracking_categories,company", - TrackingCategoriesCompanyAccountingPeriod: "tracking_categories,company,accounting_period", - TrackingCategoriesVendor: "tracking_categories,vendor", - TrackingCategoriesVendorAccountingPeriod: "tracking_categories,vendor,accounting_period", - TrackingCategoriesVendorCompany: "tracking_categories,vendor,company", - TrackingCategoriesVendorCompanyAccountingPeriod: "tracking_categories,vendor,company,accounting_period", - Vendor: "vendor", - VendorAccountingPeriod: "vendor,accounting_period", - VendorCompany: "vendor,company", - VendorCompanyAccountingPeriod: "vendor,company,accounting_period", -} as const; -export type VendorCreditsRetrieveRequestExpand = - (typeof VendorCreditsRetrieveRequestExpand)[keyof typeof VendorCreditsRetrieveRequestExpand]; diff --git a/src/api/resources/accounting/resources/vendorCredits/types/index.ts b/src/api/resources/accounting/resources/vendorCredits/types/index.ts deleted file mode 100644 index 23d33b551..000000000 --- a/src/api/resources/accounting/resources/vendorCredits/types/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./VendorCreditsListRequestExpand"; -export * from "./VendorCreditsRetrieveRequestExpand"; diff --git a/src/api/resources/accounting/resources/webhookReceivers/client/Client.ts b/src/api/resources/accounting/resources/webhookReceivers/client/Client.ts deleted file mode 100644 index ac4f5b288..000000000 --- a/src/api/resources/accounting/resources/webhookReceivers/client/Client.ts +++ /dev/null @@ -1,174 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type { BaseClientOptions, BaseRequestOptions } from "../../../../../../BaseClient"; -import { type NormalizedClientOptionsWithAuth, normalizeClientOptionsWithAuth } from "../../../../../../BaseClient"; -import * as core from "../../../../../../core"; -import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../../../core/headers"; -import * as environments from "../../../../../../environments"; -import { handleNonStatusCodeError } from "../../../../../../errors/handleNonStatusCodeError"; -import * as errors from "../../../../../../errors/index"; -import * as serializers from "../../../../../../serialization/index"; -import type * as Merge from "../../../../../index"; - -export declare namespace WebhookReceiversClient { - export type Options = BaseClientOptions; - - export interface RequestOptions extends BaseRequestOptions {} -} - -export class WebhookReceiversClient { - protected readonly _options: NormalizedClientOptionsWithAuth; - - constructor(options: WebhookReceiversClient.Options) { - this._options = normalizeClientOptionsWithAuth(options); - } - - /** - * Returns a list of `WebhookReceiver` objects. - * - * @param {WebhookReceiversClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.webhookReceivers.list() - */ - public list( - requestOptions?: WebhookReceiversClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__list(requestOptions)); - } - - private async __list( - requestOptions?: WebhookReceiversClient.RequestOptions, - ): Promise> { - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/webhook-receivers", - ), - method: "GET", - headers: _headers, - queryParameters: requestOptions?.queryParams, - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.webhookReceivers.list.Response.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "GET", - "/accounting/v1/webhook-receivers", - ); - } - - /** - * Creates a `WebhookReceiver` object with the given values. - * - * @param {Merge.accounting.WebhookReceiverRequest} request - * @param {WebhookReceiversClient.RequestOptions} requestOptions - Request-specific configuration. - * - * @example - * await client.accounting.webhookReceivers.create({ - * event: "event", - * isActive: true - * }) - */ - public create( - request: Merge.accounting.WebhookReceiverRequest, - requestOptions?: WebhookReceiversClient.RequestOptions, - ): core.HttpResponsePromise { - return core.HttpResponsePromise.fromPromise(this.__create(request, requestOptions)); - } - - private async __create( - request: Merge.accounting.WebhookReceiverRequest, - requestOptions?: WebhookReceiversClient.RequestOptions, - ): Promise> { - const _authRequest: core.AuthRequest = await this._options.authProvider.getAuthRequest(); - const _headers: core.Fetcher.Args["headers"] = mergeHeaders( - _authRequest.headers, - this._options?.headers, - mergeOnlyDefinedHeaders({ "X-Account-Token": requestOptions?.accountToken ?? this._options?.accountToken }), - requestOptions?.headers, - ); - const _response = await (this._options.fetcher ?? core.fetcher)({ - url: core.url.join( - (await core.Supplier.get(this._options.baseUrl)) ?? - (await core.Supplier.get(this._options.environment)) ?? - environments.MergeEnvironment.Production, - "accounting/v1/webhook-receivers", - ), - method: "POST", - headers: _headers, - contentType: "application/json", - queryParameters: requestOptions?.queryParams, - requestType: "json", - body: serializers.accounting.WebhookReceiverRequest.jsonOrThrow(request, { - unrecognizedObjectKeys: "strip", - }), - timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000, - maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries, - abortSignal: requestOptions?.abortSignal, - fetchFn: this._options?.fetch, - logging: this._options.logging, - }); - if (_response.ok) { - return { - data: serializers.accounting.WebhookReceiver.parseOrThrow(_response.body, { - unrecognizedObjectKeys: "passthrough", - allowUnrecognizedUnionMembers: true, - allowUnrecognizedEnumValues: true, - skipValidation: true, - breadcrumbsPrefix: ["response"], - }), - rawResponse: _response.rawResponse, - }; - } - - if (_response.error.reason === "status-code") { - throw new errors.MergeError({ - statusCode: _response.error.statusCode, - body: _response.error.body, - rawResponse: _response.rawResponse, - }); - } - - return handleNonStatusCodeError( - _response.error, - _response.rawResponse, - "POST", - "/accounting/v1/webhook-receivers", - ); - } -} diff --git a/src/api/resources/accounting/resources/webhookReceivers/client/index.ts b/src/api/resources/accounting/resources/webhookReceivers/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/api/resources/accounting/resources/webhookReceivers/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/api/resources/accounting/resources/webhookReceivers/client/requests/WebhookReceiverRequest.ts b/src/api/resources/accounting/resources/webhookReceivers/client/requests/WebhookReceiverRequest.ts deleted file mode 100644 index bcc11dbe7..000000000 --- a/src/api/resources/accounting/resources/webhookReceivers/client/requests/WebhookReceiverRequest.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * @example - * { - * event: "event", - * isActive: true - * } - */ -export interface WebhookReceiverRequest { - event: string; - isActive: boolean; - key?: string; -} diff --git a/src/api/resources/accounting/resources/webhookReceivers/client/requests/index.ts b/src/api/resources/accounting/resources/webhookReceivers/client/requests/index.ts deleted file mode 100644 index 0e668b74d..000000000 --- a/src/api/resources/accounting/resources/webhookReceivers/client/requests/index.ts +++ /dev/null @@ -1 +0,0 @@ -export type { WebhookReceiverRequest } from "./WebhookReceiverRequest"; diff --git a/src/api/resources/accounting/resources/webhookReceivers/exports.ts b/src/api/resources/accounting/resources/webhookReceivers/exports.ts deleted file mode 100644 index d0527565a..000000000 --- a/src/api/resources/accounting/resources/webhookReceivers/exports.ts +++ /dev/null @@ -1,4 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export { WebhookReceiversClient } from "./client/Client"; -export * from "./client/index"; diff --git a/src/api/resources/accounting/resources/webhookReceivers/index.ts b/src/api/resources/accounting/resources/webhookReceivers/index.ts deleted file mode 100644 index 5ec76921e..000000000 --- a/src/api/resources/accounting/resources/webhookReceivers/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./client"; diff --git a/src/api/resources/accounting/types/Account.ts b/src/api/resources/accounting/types/Account.ts deleted file mode 100644 index e16367737..000000000 --- a/src/api/resources/accounting/types/Account.ts +++ /dev/null @@ -1,393 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The Account Object - * ### Description - * An `Account` represents a category in a company’s ledger in which a financial transaction is recorded against. The aggregation of each `Account` object is often referred to as the **Chart of Accounts**. - * - * An `Account` can be classified into one of the following categories, determined through the `classification` field: - * * __Asset:__ Accounts Receivable and Bank Accounts - * * __Liability:__ Accounts Payable and Credit Card Accounts - * * __Equity:__ Treasury Accounts and Retained Earnings - * * __Revenue:__ Income and Other Income - * * __Expense:__ Cost of Goods Sold and Office Expenses - * - * ### Usage Example - * Fetch from the `LIST Accounts` endpoint and view a company's accounts. - */ -export interface Account { - id?: string; - /** The third-party API ID of the matching object. */ - remoteId?: string; - /** The datetime that this object was created by Merge. */ - createdAt?: Date; - /** The datetime that this object was modified by Merge. */ - modifiedAt?: Date; - /** The account's name. */ - name?: string; - /** The account's description. */ - description?: string; - /** - * The account's broadest grouping. - * - * * `ASSET` - ASSET - * * `EQUITY` - EQUITY - * * `EXPENSE` - EXPENSE - * * `LIABILITY` - LIABILITY - * * `REVENUE` - REVENUE - */ - classification?: Merge.accounting.AccountClassification; - /** The account's type is a narrower and more specific grouping within the account's classification. */ - type?: string; - /** - * Normalized account type- which is a narrower and more specific grouping within the account's classification. - * - * * `BANK` - BANK - * * `CREDIT_CARD` - CREDIT_CARD - * * `ACCOUNTS_PAYABLE` - ACCOUNTS_PAYABLE - * * `ACCOUNTS_RECEIVABLE` - ACCOUNTS_RECEIVABLE - * * `FIXED_ASSET` - FIXED_ASSET - * * `OTHER_ASSET` - OTHER_ASSET - * * `OTHER_CURRENT_ASSET` - OTHER_CURRENT_ASSET - * * `OTHER_EXPENSE` - OTHER_EXPENSE - * * `OTHER_INCOME` - OTHER_INCOME - * * `COST_OF_GOODS_SOLD` - COST_OF_GOODS_SOLD - * * `OTHER_CURRENT_LIABILITY` - OTHER_CURRENT_LIABILITY - * * `LONG_TERM_LIABILITY` - LONG_TERM_LIABILITY - * * `NON_POSTING` - NON_POSTING - */ - accountType?: Merge.accounting.AccountAccountType; - /** - * The account's status. - * - * * `ACTIVE` - ACTIVE - * * `PENDING` - PENDING - * * `INACTIVE` - INACTIVE - */ - status?: Merge.accounting.AccountStatus; - /** The account's current balance. */ - currentBalance?: number; - /** - * The account's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ - currency?: Merge.accounting.AccountCurrency; - /** The account's number. */ - accountNumber?: string; - /** ID of the parent account. */ - parentAccount?: string; - /** The company the account belongs to. */ - company?: string; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - remoteWasDeleted?: boolean; - fieldMappings?: Record; - remoteData?: Merge.accounting.RemoteData[]; -} diff --git a/src/api/resources/accounting/types/AccountAccountType.ts b/src/api/resources/accounting/types/AccountAccountType.ts deleted file mode 100644 index 28597bb66..000000000 --- a/src/api/resources/accounting/types/AccountAccountType.ts +++ /dev/null @@ -1,22 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * Normalized account type- which is a narrower and more specific grouping within the account's classification. - * - * * `BANK` - BANK - * * `CREDIT_CARD` - CREDIT_CARD - * * `ACCOUNTS_PAYABLE` - ACCOUNTS_PAYABLE - * * `ACCOUNTS_RECEIVABLE` - ACCOUNTS_RECEIVABLE - * * `FIXED_ASSET` - FIXED_ASSET - * * `OTHER_ASSET` - OTHER_ASSET - * * `OTHER_CURRENT_ASSET` - OTHER_CURRENT_ASSET - * * `OTHER_EXPENSE` - OTHER_EXPENSE - * * `OTHER_INCOME` - OTHER_INCOME - * * `COST_OF_GOODS_SOLD` - COST_OF_GOODS_SOLD - * * `OTHER_CURRENT_LIABILITY` - OTHER_CURRENT_LIABILITY - * * `LONG_TERM_LIABILITY` - LONG_TERM_LIABILITY - * * `NON_POSTING` - NON_POSTING - */ -export type AccountAccountType = Merge.accounting.AccountAccountTypeEnum | string; diff --git a/src/api/resources/accounting/types/AccountAccountTypeEnum.ts b/src/api/resources/accounting/types/AccountAccountTypeEnum.ts deleted file mode 100644 index 0f2b5fa7e..000000000 --- a/src/api/resources/accounting/types/AccountAccountTypeEnum.ts +++ /dev/null @@ -1,33 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * * `BANK` - BANK - * * `CREDIT_CARD` - CREDIT_CARD - * * `ACCOUNTS_PAYABLE` - ACCOUNTS_PAYABLE - * * `ACCOUNTS_RECEIVABLE` - ACCOUNTS_RECEIVABLE - * * `FIXED_ASSET` - FIXED_ASSET - * * `OTHER_ASSET` - OTHER_ASSET - * * `OTHER_CURRENT_ASSET` - OTHER_CURRENT_ASSET - * * `OTHER_EXPENSE` - OTHER_EXPENSE - * * `OTHER_INCOME` - OTHER_INCOME - * * `COST_OF_GOODS_SOLD` - COST_OF_GOODS_SOLD - * * `OTHER_CURRENT_LIABILITY` - OTHER_CURRENT_LIABILITY - * * `LONG_TERM_LIABILITY` - LONG_TERM_LIABILITY - * * `NON_POSTING` - NON_POSTING - */ -export const AccountAccountTypeEnum = { - Bank: "BANK", - CreditCard: "CREDIT_CARD", - AccountsPayable: "ACCOUNTS_PAYABLE", - AccountsReceivable: "ACCOUNTS_RECEIVABLE", - FixedAsset: "FIXED_ASSET", - OtherAsset: "OTHER_ASSET", - OtherCurrentAsset: "OTHER_CURRENT_ASSET", - OtherExpense: "OTHER_EXPENSE", - OtherIncome: "OTHER_INCOME", - CostOfGoodsSold: "COST_OF_GOODS_SOLD", - OtherCurrentLiability: "OTHER_CURRENT_LIABILITY", - LongTermLiability: "LONG_TERM_LIABILITY", - NonPosting: "NON_POSTING", -} as const; -export type AccountAccountTypeEnum = (typeof AccountAccountTypeEnum)[keyof typeof AccountAccountTypeEnum]; diff --git a/src/api/resources/accounting/types/AccountClassification.ts b/src/api/resources/accounting/types/AccountClassification.ts deleted file mode 100644 index 5e7b1c4cf..000000000 --- a/src/api/resources/accounting/types/AccountClassification.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The account's broadest grouping. - * - * * `ASSET` - ASSET - * * `EQUITY` - EQUITY - * * `EXPENSE` - EXPENSE - * * `LIABILITY` - LIABILITY - * * `REVENUE` - REVENUE - */ -export type AccountClassification = Merge.accounting.ClassificationEnum | string; diff --git a/src/api/resources/accounting/types/AccountCurrency.ts b/src/api/resources/accounting/types/AccountCurrency.ts deleted file mode 100644 index 7c505eaae..000000000 --- a/src/api/resources/accounting/types/AccountCurrency.ts +++ /dev/null @@ -1,315 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The account's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ -export type AccountCurrency = Merge.accounting.TransactionCurrencyEnum | string; diff --git a/src/api/resources/accounting/types/AccountDetails.ts b/src/api/resources/accounting/types/AccountDetails.ts deleted file mode 100644 index 844c6ba65..000000000 --- a/src/api/resources/accounting/types/AccountDetails.ts +++ /dev/null @@ -1,20 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface AccountDetails { - id?: string; - integration?: string; - integrationSlug?: string; - category?: Merge.accounting.AccountDetailsCategory; - endUserOriginId?: string; - endUserOrganizationName?: string; - endUserEmailAddress?: string; - status?: string; - webhookListenerUrl?: string; - /** Whether a Production Linked Account's credentials match another existing Production Linked Account. This field is `null` for Test Linked Accounts, incomplete Production Linked Accounts, and ignored duplicate Production Linked Account sets. */ - isDuplicate?: boolean; - accountType?: string; - /** The time at which account completes the linking flow. */ - completedAt?: Date; -} diff --git a/src/api/resources/accounting/types/AccountDetailsAndActions.ts b/src/api/resources/accounting/types/AccountDetailsAndActions.ts deleted file mode 100644 index c49d443c4..000000000 --- a/src/api/resources/accounting/types/AccountDetailsAndActions.ts +++ /dev/null @@ -1,30 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The LinkedAccount Object - * ### Description - * The `LinkedAccount` object is used to represent an end user's link with a specific integration. - * - * ### Usage Example - * View a list of your organization's `LinkedAccount` objects. - */ -export interface AccountDetailsAndActions { - id: string; - category?: Merge.accounting.AccountDetailsAndActionsCategory; - status: Merge.accounting.AccountDetailsAndActionsStatus; - statusDetail?: string; - endUserOriginId?: string; - endUserOrganizationName: string; - endUserEmailAddress: string; - /** The tenant or domain the customer has provided access to. */ - subdomain?: string; - webhookListenerUrl: string; - /** Whether a Production Linked Account's credentials match another existing Production Linked Account. This field is `null` for Test Linked Accounts, incomplete Production Linked Accounts, and ignored duplicate Production Linked Account sets. */ - isDuplicate?: boolean; - integration?: Merge.accounting.AccountDetailsAndActionsIntegration; - accountType: string; - completedAt: Date; - integrationSpecificFields?: Record; -} diff --git a/src/api/resources/accounting/types/AccountDetailsAndActionsCategory.ts b/src/api/resources/accounting/types/AccountDetailsAndActionsCategory.ts deleted file mode 100644 index f77ac979b..000000000 --- a/src/api/resources/accounting/types/AccountDetailsAndActionsCategory.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type AccountDetailsAndActionsCategory = Merge.accounting.CategoryEnum | string; diff --git a/src/api/resources/accounting/types/AccountDetailsAndActionsIntegration.ts b/src/api/resources/accounting/types/AccountDetailsAndActionsIntegration.ts deleted file mode 100644 index a31b7c879..000000000 --- a/src/api/resources/accounting/types/AccountDetailsAndActionsIntegration.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface AccountDetailsAndActionsIntegration { - name: string; - categories: Merge.accounting.CategoriesEnum[]; - image?: string; - squareImage?: string; - color: string; - slug: string; - passthroughAvailable: boolean; - availableModelOperations?: Merge.accounting.ModelOperation[]; -} diff --git a/src/api/resources/accounting/types/AccountDetailsAndActionsStatus.ts b/src/api/resources/accounting/types/AccountDetailsAndActionsStatus.ts deleted file mode 100644 index 92d416170..000000000 --- a/src/api/resources/accounting/types/AccountDetailsAndActionsStatus.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type AccountDetailsAndActionsStatus = Merge.accounting.AccountDetailsAndActionsStatusEnum | string; diff --git a/src/api/resources/accounting/types/AccountDetailsAndActionsStatusEnum.ts b/src/api/resources/accounting/types/AccountDetailsAndActionsStatusEnum.ts deleted file mode 100644 index ab1273765..000000000 --- a/src/api/resources/accounting/types/AccountDetailsAndActionsStatusEnum.ts +++ /dev/null @@ -1,16 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * * `COMPLETE` - COMPLETE - * * `INCOMPLETE` - INCOMPLETE - * * `RELINK_NEEDED` - RELINK_NEEDED - * * `IDLE` - IDLE - */ -export const AccountDetailsAndActionsStatusEnum = { - Complete: "COMPLETE", - Incomplete: "INCOMPLETE", - RelinkNeeded: "RELINK_NEEDED", - Idle: "IDLE", -} as const; -export type AccountDetailsAndActionsStatusEnum = - (typeof AccountDetailsAndActionsStatusEnum)[keyof typeof AccountDetailsAndActionsStatusEnum]; diff --git a/src/api/resources/accounting/types/AccountDetailsCategory.ts b/src/api/resources/accounting/types/AccountDetailsCategory.ts deleted file mode 100644 index 2cfca4046..000000000 --- a/src/api/resources/accounting/types/AccountDetailsCategory.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type AccountDetailsCategory = Merge.accounting.CategoryEnum | string; diff --git a/src/api/resources/accounting/types/AccountIntegration.ts b/src/api/resources/accounting/types/AccountIntegration.ts deleted file mode 100644 index cc4e04afd..000000000 --- a/src/api/resources/accounting/types/AccountIntegration.ts +++ /dev/null @@ -1,25 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface AccountIntegration { - /** Company name. */ - name: string; - /** Optional. This shortened name appears in places with limited space, usually in conjunction with the platform's logo (e.g., Merge Link menu).

Example: Workforce Now (in lieu of ADP Workforce Now), SuccessFactors (in lieu of SAP SuccessFactors) */ - abbreviatedName?: string; - /** Category or categories this integration belongs to. Multiple categories should be comma separated, i.e. [ats, hris]. */ - categories?: Merge.accounting.CategoriesEnum[]; - /** Company logo in rectangular shape. */ - image?: string; - /** Company logo in square shape. */ - squareImage?: string; - /** The color of this integration used for buttons and text throughout the app and landing pages. Choose a darker, saturated color. */ - color?: string; - slug?: string; - /** Mapping of API endpoints to documentation urls for support. Example: {'GET': [['/common-model-scopes', 'https://docs.merge.dev/accounting/common-model-scopes/#common_model_scopes_retrieve'],['/common-model-actions', 'https://docs.merge.dev/accounting/common-model-actions/#common_model_actions_retrieve']], 'POST': []} */ - apiEndpointsToDocumentationUrls?: Record; - /** Setup guide URL for third party webhook creation. Exposed in Merge Docs. */ - webhookSetupGuideUrl?: string; - /** Category or categories this integration is in beta status for. */ - categoryBetaStatus?: Record; -} diff --git a/src/api/resources/accounting/types/AccountRequest.ts b/src/api/resources/accounting/types/AccountRequest.ts deleted file mode 100644 index 4fd6c3c59..000000000 --- a/src/api/resources/accounting/types/AccountRequest.ts +++ /dev/null @@ -1,384 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The Account Object - * ### Description - * An `Account` represents a category in a company’s ledger in which a financial transaction is recorded against. The aggregation of each `Account` object is often referred to as the **Chart of Accounts**. - * - * An `Account` can be classified into one of the following categories, determined through the `classification` field: - * * __Asset:__ Accounts Receivable and Bank Accounts - * * __Liability:__ Accounts Payable and Credit Card Accounts - * * __Equity:__ Treasury Accounts and Retained Earnings - * * __Revenue:__ Income and Other Income - * * __Expense:__ Cost of Goods Sold and Office Expenses - * - * ### Usage Example - * Fetch from the `LIST Accounts` endpoint and view a company's accounts. - */ -export interface AccountRequest { - /** The account's name. */ - name?: string; - /** The account's description. */ - description?: string; - /** - * The account's broadest grouping. - * - * * `ASSET` - ASSET - * * `EQUITY` - EQUITY - * * `EXPENSE` - EXPENSE - * * `LIABILITY` - LIABILITY - * * `REVENUE` - REVENUE - */ - classification?: Merge.accounting.AccountRequestClassification; - /** The account's type is a narrower and more specific grouping within the account's classification. */ - type?: string; - /** - * Normalized account type- which is a narrower and more specific grouping within the account's classification. - * - * * `BANK` - BANK - * * `CREDIT_CARD` - CREDIT_CARD - * * `ACCOUNTS_PAYABLE` - ACCOUNTS_PAYABLE - * * `ACCOUNTS_RECEIVABLE` - ACCOUNTS_RECEIVABLE - * * `FIXED_ASSET` - FIXED_ASSET - * * `OTHER_ASSET` - OTHER_ASSET - * * `OTHER_CURRENT_ASSET` - OTHER_CURRENT_ASSET - * * `OTHER_EXPENSE` - OTHER_EXPENSE - * * `OTHER_INCOME` - OTHER_INCOME - * * `COST_OF_GOODS_SOLD` - COST_OF_GOODS_SOLD - * * `OTHER_CURRENT_LIABILITY` - OTHER_CURRENT_LIABILITY - * * `LONG_TERM_LIABILITY` - LONG_TERM_LIABILITY - * * `NON_POSTING` - NON_POSTING - */ - accountType?: Merge.accounting.AccountRequestAccountType; - /** - * The account's status. - * - * * `ACTIVE` - ACTIVE - * * `PENDING` - PENDING - * * `INACTIVE` - INACTIVE - */ - status?: Merge.accounting.AccountRequestStatus; - /** The account's current balance. */ - currentBalance?: number; - /** - * The account's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ - currency?: Merge.accounting.AccountRequestCurrency; - /** The account's number. */ - accountNumber?: string; - /** ID of the parent account. */ - parentAccount?: string; - /** The company the account belongs to. */ - company?: string; - integrationParams?: Record; - linkedAccountParams?: Record; -} diff --git a/src/api/resources/accounting/types/AccountRequestAccountType.ts b/src/api/resources/accounting/types/AccountRequestAccountType.ts deleted file mode 100644 index 17c3389fb..000000000 --- a/src/api/resources/accounting/types/AccountRequestAccountType.ts +++ /dev/null @@ -1,22 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * Normalized account type- which is a narrower and more specific grouping within the account's classification. - * - * * `BANK` - BANK - * * `CREDIT_CARD` - CREDIT_CARD - * * `ACCOUNTS_PAYABLE` - ACCOUNTS_PAYABLE - * * `ACCOUNTS_RECEIVABLE` - ACCOUNTS_RECEIVABLE - * * `FIXED_ASSET` - FIXED_ASSET - * * `OTHER_ASSET` - OTHER_ASSET - * * `OTHER_CURRENT_ASSET` - OTHER_CURRENT_ASSET - * * `OTHER_EXPENSE` - OTHER_EXPENSE - * * `OTHER_INCOME` - OTHER_INCOME - * * `COST_OF_GOODS_SOLD` - COST_OF_GOODS_SOLD - * * `OTHER_CURRENT_LIABILITY` - OTHER_CURRENT_LIABILITY - * * `LONG_TERM_LIABILITY` - LONG_TERM_LIABILITY - * * `NON_POSTING` - NON_POSTING - */ -export type AccountRequestAccountType = Merge.accounting.AccountAccountTypeEnum | string; diff --git a/src/api/resources/accounting/types/AccountRequestClassification.ts b/src/api/resources/accounting/types/AccountRequestClassification.ts deleted file mode 100644 index 5d2f98ef8..000000000 --- a/src/api/resources/accounting/types/AccountRequestClassification.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The account's broadest grouping. - * - * * `ASSET` - ASSET - * * `EQUITY` - EQUITY - * * `EXPENSE` - EXPENSE - * * `LIABILITY` - LIABILITY - * * `REVENUE` - REVENUE - */ -export type AccountRequestClassification = Merge.accounting.ClassificationEnum | string; diff --git a/src/api/resources/accounting/types/AccountRequestCurrency.ts b/src/api/resources/accounting/types/AccountRequestCurrency.ts deleted file mode 100644 index 9ab5821b2..000000000 --- a/src/api/resources/accounting/types/AccountRequestCurrency.ts +++ /dev/null @@ -1,315 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The account's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ -export type AccountRequestCurrency = Merge.accounting.TransactionCurrencyEnum | string; diff --git a/src/api/resources/accounting/types/AccountRequestStatus.ts b/src/api/resources/accounting/types/AccountRequestStatus.ts deleted file mode 100644 index 919825200..000000000 --- a/src/api/resources/accounting/types/AccountRequestStatus.ts +++ /dev/null @@ -1,12 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The account's status. - * - * * `ACTIVE` - ACTIVE - * * `PENDING` - PENDING - * * `INACTIVE` - INACTIVE - */ -export type AccountRequestStatus = Merge.accounting.AccountStatusEnum | string; diff --git a/src/api/resources/accounting/types/AccountResponse.ts b/src/api/resources/accounting/types/AccountResponse.ts deleted file mode 100644 index 2d756b662..000000000 --- a/src/api/resources/accounting/types/AccountResponse.ts +++ /dev/null @@ -1,10 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface AccountResponse { - model: Merge.accounting.Account; - warnings: Merge.accounting.WarningValidationProblem[]; - errors: Merge.accounting.ErrorValidationProblem[]; - logs?: Merge.accounting.DebugModeLog[]; -} diff --git a/src/api/resources/accounting/types/AccountStatus.ts b/src/api/resources/accounting/types/AccountStatus.ts deleted file mode 100644 index 3df1490e7..000000000 --- a/src/api/resources/accounting/types/AccountStatus.ts +++ /dev/null @@ -1,12 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The account's status. - * - * * `ACTIVE` - ACTIVE - * * `PENDING` - PENDING - * * `INACTIVE` - INACTIVE - */ -export type AccountStatus = Merge.accounting.AccountStatusEnum | string; diff --git a/src/api/resources/accounting/types/AccountStatusEnum.ts b/src/api/resources/accounting/types/AccountStatusEnum.ts deleted file mode 100644 index 9a0577abb..000000000 --- a/src/api/resources/accounting/types/AccountStatusEnum.ts +++ /dev/null @@ -1,13 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * * `ACTIVE` - ACTIVE - * * `PENDING` - PENDING - * * `INACTIVE` - INACTIVE - */ -export const AccountStatusEnum = { - Active: "ACTIVE", - Pending: "PENDING", - Inactive: "INACTIVE", -} as const; -export type AccountStatusEnum = (typeof AccountStatusEnum)[keyof typeof AccountStatusEnum]; diff --git a/src/api/resources/accounting/types/AccountToken.ts b/src/api/resources/accounting/types/AccountToken.ts deleted file mode 100644 index d3d2669d5..000000000 --- a/src/api/resources/accounting/types/AccountToken.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface AccountToken { - accountToken: string; - integration: Merge.accounting.AccountIntegration; - id: string; -} diff --git a/src/api/resources/accounting/types/AccountingAttachment.ts b/src/api/resources/accounting/types/AccountingAttachment.ts deleted file mode 100644 index 0367bbe95..000000000 --- a/src/api/resources/accounting/types/AccountingAttachment.ts +++ /dev/null @@ -1,31 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The Accounting Attachment Object - * ### Description - * The `AccountingAttachment` object is used to represent a company's attachments. - * - * ### Usage Example - * Fetch from the `LIST AccountingAttachments` endpoint and view a company's attachments. - */ -export interface AccountingAttachment { - id?: string; - /** The third-party API ID of the matching object. */ - remoteId?: string; - /** The datetime that this object was created by Merge. */ - createdAt?: Date; - /** The datetime that this object was modified by Merge. */ - modifiedAt?: Date; - /** The attachment's name. */ - fileName?: string; - /** The attachment's url. */ - fileUrl?: string; - /** The company the accounting attachment belongs to. */ - company?: string; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - remoteWasDeleted?: boolean; - fieldMappings?: Record; - remoteData?: Merge.accounting.RemoteData[]; -} diff --git a/src/api/resources/accounting/types/AccountingAttachmentRequest.ts b/src/api/resources/accounting/types/AccountingAttachmentRequest.ts deleted file mode 100644 index 2c6c87b47..000000000 --- a/src/api/resources/accounting/types/AccountingAttachmentRequest.ts +++ /dev/null @@ -1,20 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * # The Accounting Attachment Object - * ### Description - * The `AccountingAttachment` object is used to represent a company's attachments. - * - * ### Usage Example - * Fetch from the `LIST AccountingAttachments` endpoint and view a company's attachments. - */ -export interface AccountingAttachmentRequest { - /** The attachment's name. */ - fileName?: string; - /** The attachment's url. */ - fileUrl?: string; - /** The company the accounting attachment belongs to. */ - company?: string; - integrationParams?: Record; - linkedAccountParams?: Record; -} diff --git a/src/api/resources/accounting/types/AccountingAttachmentResponse.ts b/src/api/resources/accounting/types/AccountingAttachmentResponse.ts deleted file mode 100644 index 0dcc572bd..000000000 --- a/src/api/resources/accounting/types/AccountingAttachmentResponse.ts +++ /dev/null @@ -1,10 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface AccountingAttachmentResponse { - model: Merge.accounting.AccountingAttachment; - warnings: Merge.accounting.WarningValidationProblem[]; - errors: Merge.accounting.ErrorValidationProblem[]; - logs?: Merge.accounting.DebugModeLog[]; -} diff --git a/src/api/resources/accounting/types/AccountingPeriod.ts b/src/api/resources/accounting/types/AccountingPeriod.ts deleted file mode 100644 index 343e40f92..000000000 --- a/src/api/resources/accounting/types/AccountingPeriod.ts +++ /dev/null @@ -1,30 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The AccountingPeriod Object - * ### Description - * The `AccountingPeriod` object is used to define a period of time in which events occurred. - * - * ### Usage Example - * Common models like `Invoice` and `Transaction` will have `AccountingPeriod` objects which will denote when they occurred. - */ -export interface AccountingPeriod { - id?: string; - /** The third-party API ID of the matching object. */ - remoteId?: string; - /** The datetime that this object was created by Merge. */ - createdAt?: Date; - /** The datetime that this object was modified by Merge. */ - modifiedAt?: Date; - /** Name of the accounting period. */ - name?: string; - status?: Merge.accounting.AccountingPeriodStatus; - /** Beginning date of the period */ - startDate?: Date; - /** End date of the period */ - endDate?: Date; - fieldMappings?: Record; - remoteData?: Merge.accounting.RemoteData[]; -} diff --git a/src/api/resources/accounting/types/AccountingPeriodStatus.ts b/src/api/resources/accounting/types/AccountingPeriodStatus.ts deleted file mode 100644 index 02959735e..000000000 --- a/src/api/resources/accounting/types/AccountingPeriodStatus.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type AccountingPeriodStatus = Merge.accounting.Status895Enum | string; diff --git a/src/api/resources/accounting/types/AccountingPhoneNumber.ts b/src/api/resources/accounting/types/AccountingPhoneNumber.ts deleted file mode 100644 index 97dde94e9..000000000 --- a/src/api/resources/accounting/types/AccountingPhoneNumber.ts +++ /dev/null @@ -1,20 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * # The AccountingPhoneNumber Object - * ### Description - * The `AccountingPhoneNumber` object is used to represent a contact's or company's phone number. - * - * ### Usage Example - * Fetch from the `GET CompanyInfo` endpoint and view the company's phone numbers. - */ -export interface AccountingPhoneNumber { - /** The datetime that this object was created by Merge. */ - createdAt?: Date; - /** The datetime that this object was modified by Merge. */ - modifiedAt?: Date; - /** The phone number. */ - number?: string; - /** The phone number's type. */ - type?: string; -} diff --git a/src/api/resources/accounting/types/AccountingPhoneNumberRequest.ts b/src/api/resources/accounting/types/AccountingPhoneNumberRequest.ts deleted file mode 100644 index ece7522e4..000000000 --- a/src/api/resources/accounting/types/AccountingPhoneNumberRequest.ts +++ /dev/null @@ -1,18 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * # The AccountingPhoneNumber Object - * ### Description - * The `AccountingPhoneNumber` object is used to represent a contact's or company's phone number. - * - * ### Usage Example - * Fetch from the `GET CompanyInfo` endpoint and view the company's phone numbers. - */ -export interface AccountingPhoneNumberRequest { - /** The phone number. */ - number?: string; - /** The phone number's type. */ - type?: string; - integrationParams?: Record; - linkedAccountParams?: Record; -} diff --git a/src/api/resources/accounting/types/Address.ts b/src/api/resources/accounting/types/Address.ts deleted file mode 100644 index d6300dde9..000000000 --- a/src/api/resources/accounting/types/Address.ts +++ /dev/null @@ -1,291 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The Address Object - * ### Description - * The `Address` object is used to represent a contact's or company's address. - * - * ### Usage Example - * Fetch from the `GET CompanyInfo` endpoint and view the company's addresses. - */ -export interface Address { - /** The datetime that this object was created by Merge. */ - createdAt?: Date; - /** The datetime that this object was modified by Merge. */ - modifiedAt?: Date; - /** - * The address type. - * - * * `BILLING` - BILLING - * * `SHIPPING` - SHIPPING - */ - type?: Merge.accounting.AddressType; - /** Line 1 of the address's street. */ - street1?: string; - /** Line 2 of the address's street. */ - street2?: string; - /** The address's city. */ - city?: string; - /** The address's state or region. */ - state?: unknown; - /** The address's state or region. */ - countrySubdivision?: string; - /** - * The address's country. - * - * * `AF` - Afghanistan - * * `AX` - Åland Islands - * * `AL` - Albania - * * `DZ` - Algeria - * * `AS` - American Samoa - * * `AD` - Andorra - * * `AO` - Angola - * * `AI` - Anguilla - * * `AQ` - Antarctica - * * `AG` - Antigua and Barbuda - * * `AR` - Argentina - * * `AM` - Armenia - * * `AW` - Aruba - * * `AU` - Australia - * * `AT` - Austria - * * `AZ` - Azerbaijan - * * `BS` - Bahamas - * * `BH` - Bahrain - * * `BD` - Bangladesh - * * `BB` - Barbados - * * `BY` - Belarus - * * `BE` - Belgium - * * `BZ` - Belize - * * `BJ` - Benin - * * `BM` - Bermuda - * * `BT` - Bhutan - * * `BO` - Bolivia - * * `BQ` - Bonaire, Sint Eustatius and Saba - * * `BA` - Bosnia and Herzegovina - * * `BW` - Botswana - * * `BV` - Bouvet Island - * * `BR` - Brazil - * * `IO` - British Indian Ocean Territory - * * `BN` - Brunei - * * `BG` - Bulgaria - * * `BF` - Burkina Faso - * * `BI` - Burundi - * * `CV` - Cabo Verde - * * `KH` - Cambodia - * * `CM` - Cameroon - * * `CA` - Canada - * * `KY` - Cayman Islands - * * `CF` - Central African Republic - * * `TD` - Chad - * * `CL` - Chile - * * `CN` - China - * * `CX` - Christmas Island - * * `CC` - Cocos (Keeling) Islands - * * `CO` - Colombia - * * `KM` - Comoros - * * `CG` - Congo - * * `CD` - Congo (the Democratic Republic of the) - * * `CK` - Cook Islands - * * `CR` - Costa Rica - * * `CI` - Côte d'Ivoire - * * `HR` - Croatia - * * `CU` - Cuba - * * `CW` - Curaçao - * * `CY` - Cyprus - * * `CZ` - Czechia - * * `DK` - Denmark - * * `DJ` - Djibouti - * * `DM` - Dominica - * * `DO` - Dominican Republic - * * `EC` - Ecuador - * * `EG` - Egypt - * * `SV` - El Salvador - * * `GQ` - Equatorial Guinea - * * `ER` - Eritrea - * * `EE` - Estonia - * * `SZ` - Eswatini - * * `ET` - Ethiopia - * * `FK` - Falkland Islands (Malvinas) - * * `FO` - Faroe Islands - * * `FJ` - Fiji - * * `FI` - Finland - * * `FR` - France - * * `GF` - French Guiana - * * `PF` - French Polynesia - * * `TF` - French Southern Territories - * * `GA` - Gabon - * * `GM` - Gambia - * * `GE` - Georgia - * * `DE` - Germany - * * `GH` - Ghana - * * `GI` - Gibraltar - * * `GR` - Greece - * * `GL` - Greenland - * * `GD` - Grenada - * * `GP` - Guadeloupe - * * `GU` - Guam - * * `GT` - Guatemala - * * `GG` - Guernsey - * * `GN` - Guinea - * * `GW` - Guinea-Bissau - * * `GY` - Guyana - * * `HT` - Haiti - * * `HM` - Heard Island and McDonald Islands - * * `VA` - Holy See - * * `HN` - Honduras - * * `HK` - Hong Kong - * * `HU` - Hungary - * * `IS` - Iceland - * * `IN` - India - * * `ID` - Indonesia - * * `IR` - Iran - * * `IQ` - Iraq - * * `IE` - Ireland - * * `IM` - Isle of Man - * * `IL` - Israel - * * `IT` - Italy - * * `JM` - Jamaica - * * `JP` - Japan - * * `JE` - Jersey - * * `JO` - Jordan - * * `KZ` - Kazakhstan - * * `KE` - Kenya - * * `KI` - Kiribati - * * `KW` - Kuwait - * * `KG` - Kyrgyzstan - * * `LA` - Laos - * * `LV` - Latvia - * * `LB` - Lebanon - * * `LS` - Lesotho - * * `LR` - Liberia - * * `LY` - Libya - * * `LI` - Liechtenstein - * * `LT` - Lithuania - * * `LU` - Luxembourg - * * `MO` - Macao - * * `MG` - Madagascar - * * `MW` - Malawi - * * `MY` - Malaysia - * * `MV` - Maldives - * * `ML` - Mali - * * `MT` - Malta - * * `MH` - Marshall Islands - * * `MQ` - Martinique - * * `MR` - Mauritania - * * `MU` - Mauritius - * * `YT` - Mayotte - * * `MX` - Mexico - * * `FM` - Micronesia (Federated States of) - * * `MD` - Moldova - * * `MC` - Monaco - * * `MN` - Mongolia - * * `ME` - Montenegro - * * `MS` - Montserrat - * * `MA` - Morocco - * * `MZ` - Mozambique - * * `MM` - Myanmar - * * `NA` - Namibia - * * `NR` - Nauru - * * `NP` - Nepal - * * `NL` - Netherlands - * * `NC` - New Caledonia - * * `NZ` - New Zealand - * * `NI` - Nicaragua - * * `NE` - Niger - * * `NG` - Nigeria - * * `NU` - Niue - * * `NF` - Norfolk Island - * * `KP` - North Korea - * * `MK` - North Macedonia - * * `MP` - Northern Mariana Islands - * * `NO` - Norway - * * `OM` - Oman - * * `PK` - Pakistan - * * `PW` - Palau - * * `PS` - Palestine, State of - * * `PA` - Panama - * * `PG` - Papua New Guinea - * * `PY` - Paraguay - * * `PE` - Peru - * * `PH` - Philippines - * * `PN` - Pitcairn - * * `PL` - Poland - * * `PT` - Portugal - * * `PR` - Puerto Rico - * * `QA` - Qatar - * * `RE` - Réunion - * * `RO` - Romania - * * `RU` - Russia - * * `RW` - Rwanda - * * `BL` - Saint Barthélemy - * * `SH` - Saint Helena, Ascension and Tristan da Cunha - * * `KN` - Saint Kitts and Nevis - * * `LC` - Saint Lucia - * * `MF` - Saint Martin (French part) - * * `PM` - Saint Pierre and Miquelon - * * `VC` - Saint Vincent and the Grenadines - * * `WS` - Samoa - * * `SM` - San Marino - * * `ST` - Sao Tome and Principe - * * `SA` - Saudi Arabia - * * `SN` - Senegal - * * `RS` - Serbia - * * `SC` - Seychelles - * * `SL` - Sierra Leone - * * `SG` - Singapore - * * `SX` - Sint Maarten (Dutch part) - * * `SK` - Slovakia - * * `SI` - Slovenia - * * `SB` - Solomon Islands - * * `SO` - Somalia - * * `ZA` - South Africa - * * `GS` - South Georgia and the South Sandwich Islands - * * `KR` - South Korea - * * `SS` - South Sudan - * * `ES` - Spain - * * `LK` - Sri Lanka - * * `SD` - Sudan - * * `SR` - Suriname - * * `SJ` - Svalbard and Jan Mayen - * * `SE` - Sweden - * * `CH` - Switzerland - * * `SY` - Syria - * * `TW` - Taiwan - * * `TJ` - Tajikistan - * * `TZ` - Tanzania - * * `TH` - Thailand - * * `TL` - Timor-Leste - * * `TG` - Togo - * * `TK` - Tokelau - * * `TO` - Tonga - * * `TT` - Trinidad and Tobago - * * `TN` - Tunisia - * * `TR` - Turkey - * * `TM` - Turkmenistan - * * `TC` - Turks and Caicos Islands - * * `TV` - Tuvalu - * * `UG` - Uganda - * * `UA` - Ukraine - * * `AE` - United Arab Emirates - * * `GB` - United Kingdom - * * `UM` - United States Minor Outlying Islands - * * `US` - United States of America - * * `UY` - Uruguay - * * `UZ` - Uzbekistan - * * `VU` - Vanuatu - * * `VE` - Venezuela - * * `VN` - Vietnam - * * `VG` - Virgin Islands (British) - * * `VI` - Virgin Islands (U.S.) - * * `WF` - Wallis and Futuna - * * `EH` - Western Sahara - * * `YE` - Yemen - * * `ZM` - Zambia - * * `ZW` - Zimbabwe - */ - country?: Merge.accounting.AddressCountry; - /** The address's zip code. */ - zipCode?: string; -} diff --git a/src/api/resources/accounting/types/AddressCountry.ts b/src/api/resources/accounting/types/AddressCountry.ts deleted file mode 100644 index fd53643ec..000000000 --- a/src/api/resources/accounting/types/AddressCountry.ts +++ /dev/null @@ -1,258 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The address's country. - * - * * `AF` - Afghanistan - * * `AX` - Åland Islands - * * `AL` - Albania - * * `DZ` - Algeria - * * `AS` - American Samoa - * * `AD` - Andorra - * * `AO` - Angola - * * `AI` - Anguilla - * * `AQ` - Antarctica - * * `AG` - Antigua and Barbuda - * * `AR` - Argentina - * * `AM` - Armenia - * * `AW` - Aruba - * * `AU` - Australia - * * `AT` - Austria - * * `AZ` - Azerbaijan - * * `BS` - Bahamas - * * `BH` - Bahrain - * * `BD` - Bangladesh - * * `BB` - Barbados - * * `BY` - Belarus - * * `BE` - Belgium - * * `BZ` - Belize - * * `BJ` - Benin - * * `BM` - Bermuda - * * `BT` - Bhutan - * * `BO` - Bolivia - * * `BQ` - Bonaire, Sint Eustatius and Saba - * * `BA` - Bosnia and Herzegovina - * * `BW` - Botswana - * * `BV` - Bouvet Island - * * `BR` - Brazil - * * `IO` - British Indian Ocean Territory - * * `BN` - Brunei - * * `BG` - Bulgaria - * * `BF` - Burkina Faso - * * `BI` - Burundi - * * `CV` - Cabo Verde - * * `KH` - Cambodia - * * `CM` - Cameroon - * * `CA` - Canada - * * `KY` - Cayman Islands - * * `CF` - Central African Republic - * * `TD` - Chad - * * `CL` - Chile - * * `CN` - China - * * `CX` - Christmas Island - * * `CC` - Cocos (Keeling) Islands - * * `CO` - Colombia - * * `KM` - Comoros - * * `CG` - Congo - * * `CD` - Congo (the Democratic Republic of the) - * * `CK` - Cook Islands - * * `CR` - Costa Rica - * * `CI` - Côte d'Ivoire - * * `HR` - Croatia - * * `CU` - Cuba - * * `CW` - Curaçao - * * `CY` - Cyprus - * * `CZ` - Czechia - * * `DK` - Denmark - * * `DJ` - Djibouti - * * `DM` - Dominica - * * `DO` - Dominican Republic - * * `EC` - Ecuador - * * `EG` - Egypt - * * `SV` - El Salvador - * * `GQ` - Equatorial Guinea - * * `ER` - Eritrea - * * `EE` - Estonia - * * `SZ` - Eswatini - * * `ET` - Ethiopia - * * `FK` - Falkland Islands (Malvinas) - * * `FO` - Faroe Islands - * * `FJ` - Fiji - * * `FI` - Finland - * * `FR` - France - * * `GF` - French Guiana - * * `PF` - French Polynesia - * * `TF` - French Southern Territories - * * `GA` - Gabon - * * `GM` - Gambia - * * `GE` - Georgia - * * `DE` - Germany - * * `GH` - Ghana - * * `GI` - Gibraltar - * * `GR` - Greece - * * `GL` - Greenland - * * `GD` - Grenada - * * `GP` - Guadeloupe - * * `GU` - Guam - * * `GT` - Guatemala - * * `GG` - Guernsey - * * `GN` - Guinea - * * `GW` - Guinea-Bissau - * * `GY` - Guyana - * * `HT` - Haiti - * * `HM` - Heard Island and McDonald Islands - * * `VA` - Holy See - * * `HN` - Honduras - * * `HK` - Hong Kong - * * `HU` - Hungary - * * `IS` - Iceland - * * `IN` - India - * * `ID` - Indonesia - * * `IR` - Iran - * * `IQ` - Iraq - * * `IE` - Ireland - * * `IM` - Isle of Man - * * `IL` - Israel - * * `IT` - Italy - * * `JM` - Jamaica - * * `JP` - Japan - * * `JE` - Jersey - * * `JO` - Jordan - * * `KZ` - Kazakhstan - * * `KE` - Kenya - * * `KI` - Kiribati - * * `KW` - Kuwait - * * `KG` - Kyrgyzstan - * * `LA` - Laos - * * `LV` - Latvia - * * `LB` - Lebanon - * * `LS` - Lesotho - * * `LR` - Liberia - * * `LY` - Libya - * * `LI` - Liechtenstein - * * `LT` - Lithuania - * * `LU` - Luxembourg - * * `MO` - Macao - * * `MG` - Madagascar - * * `MW` - Malawi - * * `MY` - Malaysia - * * `MV` - Maldives - * * `ML` - Mali - * * `MT` - Malta - * * `MH` - Marshall Islands - * * `MQ` - Martinique - * * `MR` - Mauritania - * * `MU` - Mauritius - * * `YT` - Mayotte - * * `MX` - Mexico - * * `FM` - Micronesia (Federated States of) - * * `MD` - Moldova - * * `MC` - Monaco - * * `MN` - Mongolia - * * `ME` - Montenegro - * * `MS` - Montserrat - * * `MA` - Morocco - * * `MZ` - Mozambique - * * `MM` - Myanmar - * * `NA` - Namibia - * * `NR` - Nauru - * * `NP` - Nepal - * * `NL` - Netherlands - * * `NC` - New Caledonia - * * `NZ` - New Zealand - * * `NI` - Nicaragua - * * `NE` - Niger - * * `NG` - Nigeria - * * `NU` - Niue - * * `NF` - Norfolk Island - * * `KP` - North Korea - * * `MK` - North Macedonia - * * `MP` - Northern Mariana Islands - * * `NO` - Norway - * * `OM` - Oman - * * `PK` - Pakistan - * * `PW` - Palau - * * `PS` - Palestine, State of - * * `PA` - Panama - * * `PG` - Papua New Guinea - * * `PY` - Paraguay - * * `PE` - Peru - * * `PH` - Philippines - * * `PN` - Pitcairn - * * `PL` - Poland - * * `PT` - Portugal - * * `PR` - Puerto Rico - * * `QA` - Qatar - * * `RE` - Réunion - * * `RO` - Romania - * * `RU` - Russia - * * `RW` - Rwanda - * * `BL` - Saint Barthélemy - * * `SH` - Saint Helena, Ascension and Tristan da Cunha - * * `KN` - Saint Kitts and Nevis - * * `LC` - Saint Lucia - * * `MF` - Saint Martin (French part) - * * `PM` - Saint Pierre and Miquelon - * * `VC` - Saint Vincent and the Grenadines - * * `WS` - Samoa - * * `SM` - San Marino - * * `ST` - Sao Tome and Principe - * * `SA` - Saudi Arabia - * * `SN` - Senegal - * * `RS` - Serbia - * * `SC` - Seychelles - * * `SL` - Sierra Leone - * * `SG` - Singapore - * * `SX` - Sint Maarten (Dutch part) - * * `SK` - Slovakia - * * `SI` - Slovenia - * * `SB` - Solomon Islands - * * `SO` - Somalia - * * `ZA` - South Africa - * * `GS` - South Georgia and the South Sandwich Islands - * * `KR` - South Korea - * * `SS` - South Sudan - * * `ES` - Spain - * * `LK` - Sri Lanka - * * `SD` - Sudan - * * `SR` - Suriname - * * `SJ` - Svalbard and Jan Mayen - * * `SE` - Sweden - * * `CH` - Switzerland - * * `SY` - Syria - * * `TW` - Taiwan - * * `TJ` - Tajikistan - * * `TZ` - Tanzania - * * `TH` - Thailand - * * `TL` - Timor-Leste - * * `TG` - Togo - * * `TK` - Tokelau - * * `TO` - Tonga - * * `TT` - Trinidad and Tobago - * * `TN` - Tunisia - * * `TR` - Turkey - * * `TM` - Turkmenistan - * * `TC` - Turks and Caicos Islands - * * `TV` - Tuvalu - * * `UG` - Uganda - * * `UA` - Ukraine - * * `AE` - United Arab Emirates - * * `GB` - United Kingdom - * * `UM` - United States Minor Outlying Islands - * * `US` - United States of America - * * `UY` - Uruguay - * * `UZ` - Uzbekistan - * * `VU` - Vanuatu - * * `VE` - Venezuela - * * `VN` - Vietnam - * * `VG` - Virgin Islands (British) - * * `VI` - Virgin Islands (U.S.) - * * `WF` - Wallis and Futuna - * * `EH` - Western Sahara - * * `YE` - Yemen - * * `ZM` - Zambia - * * `ZW` - Zimbabwe - */ -export type AddressCountry = Merge.accounting.CountryEnum | string; diff --git a/src/api/resources/accounting/types/AddressRequest.ts b/src/api/resources/accounting/types/AddressRequest.ts deleted file mode 100644 index 9422fba0e..000000000 --- a/src/api/resources/accounting/types/AddressRequest.ts +++ /dev/null @@ -1,287 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The Address Object - * ### Description - * The `Address` object is used to represent a contact's or company's address. - * - * ### Usage Example - * Fetch from the `GET CompanyInfo` endpoint and view the company's addresses. - */ -export interface AddressRequest { - /** - * The address type. - * - * * `BILLING` - BILLING - * * `SHIPPING` - SHIPPING - */ - type?: Merge.accounting.AddressRequestType; - /** Line 1 of the address's street. */ - street1?: string; - /** Line 2 of the address's street. */ - street2?: string; - /** The address's city. */ - city?: string; - /** The address's state or region. */ - countrySubdivision?: string; - /** - * The address's country. - * - * * `AF` - Afghanistan - * * `AX` - Åland Islands - * * `AL` - Albania - * * `DZ` - Algeria - * * `AS` - American Samoa - * * `AD` - Andorra - * * `AO` - Angola - * * `AI` - Anguilla - * * `AQ` - Antarctica - * * `AG` - Antigua and Barbuda - * * `AR` - Argentina - * * `AM` - Armenia - * * `AW` - Aruba - * * `AU` - Australia - * * `AT` - Austria - * * `AZ` - Azerbaijan - * * `BS` - Bahamas - * * `BH` - Bahrain - * * `BD` - Bangladesh - * * `BB` - Barbados - * * `BY` - Belarus - * * `BE` - Belgium - * * `BZ` - Belize - * * `BJ` - Benin - * * `BM` - Bermuda - * * `BT` - Bhutan - * * `BO` - Bolivia - * * `BQ` - Bonaire, Sint Eustatius and Saba - * * `BA` - Bosnia and Herzegovina - * * `BW` - Botswana - * * `BV` - Bouvet Island - * * `BR` - Brazil - * * `IO` - British Indian Ocean Territory - * * `BN` - Brunei - * * `BG` - Bulgaria - * * `BF` - Burkina Faso - * * `BI` - Burundi - * * `CV` - Cabo Verde - * * `KH` - Cambodia - * * `CM` - Cameroon - * * `CA` - Canada - * * `KY` - Cayman Islands - * * `CF` - Central African Republic - * * `TD` - Chad - * * `CL` - Chile - * * `CN` - China - * * `CX` - Christmas Island - * * `CC` - Cocos (Keeling) Islands - * * `CO` - Colombia - * * `KM` - Comoros - * * `CG` - Congo - * * `CD` - Congo (the Democratic Republic of the) - * * `CK` - Cook Islands - * * `CR` - Costa Rica - * * `CI` - Côte d'Ivoire - * * `HR` - Croatia - * * `CU` - Cuba - * * `CW` - Curaçao - * * `CY` - Cyprus - * * `CZ` - Czechia - * * `DK` - Denmark - * * `DJ` - Djibouti - * * `DM` - Dominica - * * `DO` - Dominican Republic - * * `EC` - Ecuador - * * `EG` - Egypt - * * `SV` - El Salvador - * * `GQ` - Equatorial Guinea - * * `ER` - Eritrea - * * `EE` - Estonia - * * `SZ` - Eswatini - * * `ET` - Ethiopia - * * `FK` - Falkland Islands (Malvinas) - * * `FO` - Faroe Islands - * * `FJ` - Fiji - * * `FI` - Finland - * * `FR` - France - * * `GF` - French Guiana - * * `PF` - French Polynesia - * * `TF` - French Southern Territories - * * `GA` - Gabon - * * `GM` - Gambia - * * `GE` - Georgia - * * `DE` - Germany - * * `GH` - Ghana - * * `GI` - Gibraltar - * * `GR` - Greece - * * `GL` - Greenland - * * `GD` - Grenada - * * `GP` - Guadeloupe - * * `GU` - Guam - * * `GT` - Guatemala - * * `GG` - Guernsey - * * `GN` - Guinea - * * `GW` - Guinea-Bissau - * * `GY` - Guyana - * * `HT` - Haiti - * * `HM` - Heard Island and McDonald Islands - * * `VA` - Holy See - * * `HN` - Honduras - * * `HK` - Hong Kong - * * `HU` - Hungary - * * `IS` - Iceland - * * `IN` - India - * * `ID` - Indonesia - * * `IR` - Iran - * * `IQ` - Iraq - * * `IE` - Ireland - * * `IM` - Isle of Man - * * `IL` - Israel - * * `IT` - Italy - * * `JM` - Jamaica - * * `JP` - Japan - * * `JE` - Jersey - * * `JO` - Jordan - * * `KZ` - Kazakhstan - * * `KE` - Kenya - * * `KI` - Kiribati - * * `KW` - Kuwait - * * `KG` - Kyrgyzstan - * * `LA` - Laos - * * `LV` - Latvia - * * `LB` - Lebanon - * * `LS` - Lesotho - * * `LR` - Liberia - * * `LY` - Libya - * * `LI` - Liechtenstein - * * `LT` - Lithuania - * * `LU` - Luxembourg - * * `MO` - Macao - * * `MG` - Madagascar - * * `MW` - Malawi - * * `MY` - Malaysia - * * `MV` - Maldives - * * `ML` - Mali - * * `MT` - Malta - * * `MH` - Marshall Islands - * * `MQ` - Martinique - * * `MR` - Mauritania - * * `MU` - Mauritius - * * `YT` - Mayotte - * * `MX` - Mexico - * * `FM` - Micronesia (Federated States of) - * * `MD` - Moldova - * * `MC` - Monaco - * * `MN` - Mongolia - * * `ME` - Montenegro - * * `MS` - Montserrat - * * `MA` - Morocco - * * `MZ` - Mozambique - * * `MM` - Myanmar - * * `NA` - Namibia - * * `NR` - Nauru - * * `NP` - Nepal - * * `NL` - Netherlands - * * `NC` - New Caledonia - * * `NZ` - New Zealand - * * `NI` - Nicaragua - * * `NE` - Niger - * * `NG` - Nigeria - * * `NU` - Niue - * * `NF` - Norfolk Island - * * `KP` - North Korea - * * `MK` - North Macedonia - * * `MP` - Northern Mariana Islands - * * `NO` - Norway - * * `OM` - Oman - * * `PK` - Pakistan - * * `PW` - Palau - * * `PS` - Palestine, State of - * * `PA` - Panama - * * `PG` - Papua New Guinea - * * `PY` - Paraguay - * * `PE` - Peru - * * `PH` - Philippines - * * `PN` - Pitcairn - * * `PL` - Poland - * * `PT` - Portugal - * * `PR` - Puerto Rico - * * `QA` - Qatar - * * `RE` - Réunion - * * `RO` - Romania - * * `RU` - Russia - * * `RW` - Rwanda - * * `BL` - Saint Barthélemy - * * `SH` - Saint Helena, Ascension and Tristan da Cunha - * * `KN` - Saint Kitts and Nevis - * * `LC` - Saint Lucia - * * `MF` - Saint Martin (French part) - * * `PM` - Saint Pierre and Miquelon - * * `VC` - Saint Vincent and the Grenadines - * * `WS` - Samoa - * * `SM` - San Marino - * * `ST` - Sao Tome and Principe - * * `SA` - Saudi Arabia - * * `SN` - Senegal - * * `RS` - Serbia - * * `SC` - Seychelles - * * `SL` - Sierra Leone - * * `SG` - Singapore - * * `SX` - Sint Maarten (Dutch part) - * * `SK` - Slovakia - * * `SI` - Slovenia - * * `SB` - Solomon Islands - * * `SO` - Somalia - * * `ZA` - South Africa - * * `GS` - South Georgia and the South Sandwich Islands - * * `KR` - South Korea - * * `SS` - South Sudan - * * `ES` - Spain - * * `LK` - Sri Lanka - * * `SD` - Sudan - * * `SR` - Suriname - * * `SJ` - Svalbard and Jan Mayen - * * `SE` - Sweden - * * `CH` - Switzerland - * * `SY` - Syria - * * `TW` - Taiwan - * * `TJ` - Tajikistan - * * `TZ` - Tanzania - * * `TH` - Thailand - * * `TL` - Timor-Leste - * * `TG` - Togo - * * `TK` - Tokelau - * * `TO` - Tonga - * * `TT` - Trinidad and Tobago - * * `TN` - Tunisia - * * `TR` - Turkey - * * `TM` - Turkmenistan - * * `TC` - Turks and Caicos Islands - * * `TV` - Tuvalu - * * `UG` - Uganda - * * `UA` - Ukraine - * * `AE` - United Arab Emirates - * * `GB` - United Kingdom - * * `UM` - United States Minor Outlying Islands - * * `US` - United States of America - * * `UY` - Uruguay - * * `UZ` - Uzbekistan - * * `VU` - Vanuatu - * * `VE` - Venezuela - * * `VN` - Vietnam - * * `VG` - Virgin Islands (British) - * * `VI` - Virgin Islands (U.S.) - * * `WF` - Wallis and Futuna - * * `EH` - Western Sahara - * * `YE` - Yemen - * * `ZM` - Zambia - * * `ZW` - Zimbabwe - */ - country?: Merge.accounting.AddressRequestCountry; - /** The address's zip code. */ - zipCode?: string; - integrationParams?: Record; - linkedAccountParams?: Record; -} diff --git a/src/api/resources/accounting/types/AddressRequestCountry.ts b/src/api/resources/accounting/types/AddressRequestCountry.ts deleted file mode 100644 index 3406cd24d..000000000 --- a/src/api/resources/accounting/types/AddressRequestCountry.ts +++ /dev/null @@ -1,258 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The address's country. - * - * * `AF` - Afghanistan - * * `AX` - Åland Islands - * * `AL` - Albania - * * `DZ` - Algeria - * * `AS` - American Samoa - * * `AD` - Andorra - * * `AO` - Angola - * * `AI` - Anguilla - * * `AQ` - Antarctica - * * `AG` - Antigua and Barbuda - * * `AR` - Argentina - * * `AM` - Armenia - * * `AW` - Aruba - * * `AU` - Australia - * * `AT` - Austria - * * `AZ` - Azerbaijan - * * `BS` - Bahamas - * * `BH` - Bahrain - * * `BD` - Bangladesh - * * `BB` - Barbados - * * `BY` - Belarus - * * `BE` - Belgium - * * `BZ` - Belize - * * `BJ` - Benin - * * `BM` - Bermuda - * * `BT` - Bhutan - * * `BO` - Bolivia - * * `BQ` - Bonaire, Sint Eustatius and Saba - * * `BA` - Bosnia and Herzegovina - * * `BW` - Botswana - * * `BV` - Bouvet Island - * * `BR` - Brazil - * * `IO` - British Indian Ocean Territory - * * `BN` - Brunei - * * `BG` - Bulgaria - * * `BF` - Burkina Faso - * * `BI` - Burundi - * * `CV` - Cabo Verde - * * `KH` - Cambodia - * * `CM` - Cameroon - * * `CA` - Canada - * * `KY` - Cayman Islands - * * `CF` - Central African Republic - * * `TD` - Chad - * * `CL` - Chile - * * `CN` - China - * * `CX` - Christmas Island - * * `CC` - Cocos (Keeling) Islands - * * `CO` - Colombia - * * `KM` - Comoros - * * `CG` - Congo - * * `CD` - Congo (the Democratic Republic of the) - * * `CK` - Cook Islands - * * `CR` - Costa Rica - * * `CI` - Côte d'Ivoire - * * `HR` - Croatia - * * `CU` - Cuba - * * `CW` - Curaçao - * * `CY` - Cyprus - * * `CZ` - Czechia - * * `DK` - Denmark - * * `DJ` - Djibouti - * * `DM` - Dominica - * * `DO` - Dominican Republic - * * `EC` - Ecuador - * * `EG` - Egypt - * * `SV` - El Salvador - * * `GQ` - Equatorial Guinea - * * `ER` - Eritrea - * * `EE` - Estonia - * * `SZ` - Eswatini - * * `ET` - Ethiopia - * * `FK` - Falkland Islands (Malvinas) - * * `FO` - Faroe Islands - * * `FJ` - Fiji - * * `FI` - Finland - * * `FR` - France - * * `GF` - French Guiana - * * `PF` - French Polynesia - * * `TF` - French Southern Territories - * * `GA` - Gabon - * * `GM` - Gambia - * * `GE` - Georgia - * * `DE` - Germany - * * `GH` - Ghana - * * `GI` - Gibraltar - * * `GR` - Greece - * * `GL` - Greenland - * * `GD` - Grenada - * * `GP` - Guadeloupe - * * `GU` - Guam - * * `GT` - Guatemala - * * `GG` - Guernsey - * * `GN` - Guinea - * * `GW` - Guinea-Bissau - * * `GY` - Guyana - * * `HT` - Haiti - * * `HM` - Heard Island and McDonald Islands - * * `VA` - Holy See - * * `HN` - Honduras - * * `HK` - Hong Kong - * * `HU` - Hungary - * * `IS` - Iceland - * * `IN` - India - * * `ID` - Indonesia - * * `IR` - Iran - * * `IQ` - Iraq - * * `IE` - Ireland - * * `IM` - Isle of Man - * * `IL` - Israel - * * `IT` - Italy - * * `JM` - Jamaica - * * `JP` - Japan - * * `JE` - Jersey - * * `JO` - Jordan - * * `KZ` - Kazakhstan - * * `KE` - Kenya - * * `KI` - Kiribati - * * `KW` - Kuwait - * * `KG` - Kyrgyzstan - * * `LA` - Laos - * * `LV` - Latvia - * * `LB` - Lebanon - * * `LS` - Lesotho - * * `LR` - Liberia - * * `LY` - Libya - * * `LI` - Liechtenstein - * * `LT` - Lithuania - * * `LU` - Luxembourg - * * `MO` - Macao - * * `MG` - Madagascar - * * `MW` - Malawi - * * `MY` - Malaysia - * * `MV` - Maldives - * * `ML` - Mali - * * `MT` - Malta - * * `MH` - Marshall Islands - * * `MQ` - Martinique - * * `MR` - Mauritania - * * `MU` - Mauritius - * * `YT` - Mayotte - * * `MX` - Mexico - * * `FM` - Micronesia (Federated States of) - * * `MD` - Moldova - * * `MC` - Monaco - * * `MN` - Mongolia - * * `ME` - Montenegro - * * `MS` - Montserrat - * * `MA` - Morocco - * * `MZ` - Mozambique - * * `MM` - Myanmar - * * `NA` - Namibia - * * `NR` - Nauru - * * `NP` - Nepal - * * `NL` - Netherlands - * * `NC` - New Caledonia - * * `NZ` - New Zealand - * * `NI` - Nicaragua - * * `NE` - Niger - * * `NG` - Nigeria - * * `NU` - Niue - * * `NF` - Norfolk Island - * * `KP` - North Korea - * * `MK` - North Macedonia - * * `MP` - Northern Mariana Islands - * * `NO` - Norway - * * `OM` - Oman - * * `PK` - Pakistan - * * `PW` - Palau - * * `PS` - Palestine, State of - * * `PA` - Panama - * * `PG` - Papua New Guinea - * * `PY` - Paraguay - * * `PE` - Peru - * * `PH` - Philippines - * * `PN` - Pitcairn - * * `PL` - Poland - * * `PT` - Portugal - * * `PR` - Puerto Rico - * * `QA` - Qatar - * * `RE` - Réunion - * * `RO` - Romania - * * `RU` - Russia - * * `RW` - Rwanda - * * `BL` - Saint Barthélemy - * * `SH` - Saint Helena, Ascension and Tristan da Cunha - * * `KN` - Saint Kitts and Nevis - * * `LC` - Saint Lucia - * * `MF` - Saint Martin (French part) - * * `PM` - Saint Pierre and Miquelon - * * `VC` - Saint Vincent and the Grenadines - * * `WS` - Samoa - * * `SM` - San Marino - * * `ST` - Sao Tome and Principe - * * `SA` - Saudi Arabia - * * `SN` - Senegal - * * `RS` - Serbia - * * `SC` - Seychelles - * * `SL` - Sierra Leone - * * `SG` - Singapore - * * `SX` - Sint Maarten (Dutch part) - * * `SK` - Slovakia - * * `SI` - Slovenia - * * `SB` - Solomon Islands - * * `SO` - Somalia - * * `ZA` - South Africa - * * `GS` - South Georgia and the South Sandwich Islands - * * `KR` - South Korea - * * `SS` - South Sudan - * * `ES` - Spain - * * `LK` - Sri Lanka - * * `SD` - Sudan - * * `SR` - Suriname - * * `SJ` - Svalbard and Jan Mayen - * * `SE` - Sweden - * * `CH` - Switzerland - * * `SY` - Syria - * * `TW` - Taiwan - * * `TJ` - Tajikistan - * * `TZ` - Tanzania - * * `TH` - Thailand - * * `TL` - Timor-Leste - * * `TG` - Togo - * * `TK` - Tokelau - * * `TO` - Tonga - * * `TT` - Trinidad and Tobago - * * `TN` - Tunisia - * * `TR` - Turkey - * * `TM` - Turkmenistan - * * `TC` - Turks and Caicos Islands - * * `TV` - Tuvalu - * * `UG` - Uganda - * * `UA` - Ukraine - * * `AE` - United Arab Emirates - * * `GB` - United Kingdom - * * `UM` - United States Minor Outlying Islands - * * `US` - United States of America - * * `UY` - Uruguay - * * `UZ` - Uzbekistan - * * `VU` - Vanuatu - * * `VE` - Venezuela - * * `VN` - Vietnam - * * `VG` - Virgin Islands (British) - * * `VI` - Virgin Islands (U.S.) - * * `WF` - Wallis and Futuna - * * `EH` - Western Sahara - * * `YE` - Yemen - * * `ZM` - Zambia - * * `ZW` - Zimbabwe - */ -export type AddressRequestCountry = Merge.accounting.CountryEnum | string; diff --git a/src/api/resources/accounting/types/AddressRequestType.ts b/src/api/resources/accounting/types/AddressRequestType.ts deleted file mode 100644 index 0d64a7ee7..000000000 --- a/src/api/resources/accounting/types/AddressRequestType.ts +++ /dev/null @@ -1,11 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The address type. - * - * * `BILLING` - BILLING - * * `SHIPPING` - SHIPPING - */ -export type AddressRequestType = Merge.accounting.AddressTypeEnum | string; diff --git a/src/api/resources/accounting/types/AddressType.ts b/src/api/resources/accounting/types/AddressType.ts deleted file mode 100644 index d642e700a..000000000 --- a/src/api/resources/accounting/types/AddressType.ts +++ /dev/null @@ -1,11 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The address type. - * - * * `BILLING` - BILLING - * * `SHIPPING` - SHIPPING - */ -export type AddressType = Merge.accounting.AddressTypeEnum | string; diff --git a/src/api/resources/accounting/types/AddressTypeEnum.ts b/src/api/resources/accounting/types/AddressTypeEnum.ts deleted file mode 100644 index 6258b1416..000000000 --- a/src/api/resources/accounting/types/AddressTypeEnum.ts +++ /dev/null @@ -1,11 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * * `BILLING` - BILLING - * * `SHIPPING` - SHIPPING - */ -export const AddressTypeEnum = { - Billing: "BILLING", - Shipping: "SHIPPING", -} as const; -export type AddressTypeEnum = (typeof AddressTypeEnum)[keyof typeof AddressTypeEnum]; diff --git a/src/api/resources/accounting/types/AdvancedMetadata.ts b/src/api/resources/accounting/types/AdvancedMetadata.ts deleted file mode 100644 index e5877563c..000000000 --- a/src/api/resources/accounting/types/AdvancedMetadata.ts +++ /dev/null @@ -1,10 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export interface AdvancedMetadata { - id: string; - displayName?: string; - description?: string; - isRequired?: boolean; - isCustom?: boolean; - fieldChoices?: unknown[]; -} diff --git a/src/api/resources/accounting/types/AsyncPassthroughReciept.ts b/src/api/resources/accounting/types/AsyncPassthroughReciept.ts deleted file mode 100644 index d8bace047..000000000 --- a/src/api/resources/accounting/types/AsyncPassthroughReciept.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export interface AsyncPassthroughReciept { - asyncPassthroughReceiptId: string; -} diff --git a/src/api/resources/accounting/types/AsyncPostTask.ts b/src/api/resources/accounting/types/AsyncPostTask.ts deleted file mode 100644 index b2a2e1157..000000000 --- a/src/api/resources/accounting/types/AsyncPostTask.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface AsyncPostTask { - status: Merge.accounting.AsyncPostTaskStatus; - result: Merge.accounting.AsyncPostTaskResult; -} diff --git a/src/api/resources/accounting/types/AsyncPostTaskResult.ts b/src/api/resources/accounting/types/AsyncPostTaskResult.ts deleted file mode 100644 index 8a1bad2aa..000000000 --- a/src/api/resources/accounting/types/AsyncPostTaskResult.ts +++ /dev/null @@ -1,6 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export interface AsyncPostTaskResult { - statusCode?: number; - response?: Record; -} diff --git a/src/api/resources/accounting/types/AsyncPostTaskStatus.ts b/src/api/resources/accounting/types/AsyncPostTaskStatus.ts deleted file mode 100644 index a9d9344f3..000000000 --- a/src/api/resources/accounting/types/AsyncPostTaskStatus.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type AsyncPostTaskStatus = Merge.accounting.AsyncPostTaskStatusEnum | string; diff --git a/src/api/resources/accounting/types/AsyncPostTaskStatusEnum.ts b/src/api/resources/accounting/types/AsyncPostTaskStatusEnum.ts deleted file mode 100644 index edc72365b..000000000 --- a/src/api/resources/accounting/types/AsyncPostTaskStatusEnum.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * * `QUEUED` - QUEUED - * * `IN_PROGRESS` - IN_PROGRESS - * * `COMPLETED` - COMPLETED - * * `FAILURE` - FAILURE - */ -export const AsyncPostTaskStatusEnum = { - Queued: "QUEUED", - InProgress: "IN_PROGRESS", - Completed: "COMPLETED", - Failure: "FAILURE", -} as const; -export type AsyncPostTaskStatusEnum = (typeof AsyncPostTaskStatusEnum)[keyof typeof AsyncPostTaskStatusEnum]; diff --git a/src/api/resources/accounting/types/AuditLogEvent.ts b/src/api/resources/accounting/types/AuditLogEvent.ts deleted file mode 100644 index 655a1e991..000000000 --- a/src/api/resources/accounting/types/AuditLogEvent.ts +++ /dev/null @@ -1,73 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface AuditLogEvent { - id?: string; - /** The User's full name at the time of this Event occurring. */ - userName?: string; - /** The User's email at the time of this Event occurring. */ - userEmail?: string; - /** - * Designates the role of the user (or SYSTEM/API if action not taken by a user) at the time of this Event occurring. - * - * * `ADMIN` - ADMIN - * * `DEVELOPER` - DEVELOPER - * * `MEMBER` - MEMBER - * * `API` - API - * * `SYSTEM` - SYSTEM - * * `MERGE_TEAM` - MERGE_TEAM - */ - role: Merge.accounting.AuditLogEventRole; - ipAddress: string; - /** - * Designates the type of event that occurred. - * - * * `CREATED_REMOTE_PRODUCTION_API_KEY` - CREATED_REMOTE_PRODUCTION_API_KEY - * * `DELETED_REMOTE_PRODUCTION_API_KEY` - DELETED_REMOTE_PRODUCTION_API_KEY - * * `CREATED_TEST_API_KEY` - CREATED_TEST_API_KEY - * * `DELETED_TEST_API_KEY` - DELETED_TEST_API_KEY - * * `REGENERATED_PRODUCTION_API_KEY` - REGENERATED_PRODUCTION_API_KEY - * * `REGENERATED_WEBHOOK_SIGNATURE` - REGENERATED_WEBHOOK_SIGNATURE - * * `INVITED_USER` - INVITED_USER - * * `TWO_FACTOR_AUTH_ENABLED` - TWO_FACTOR_AUTH_ENABLED - * * `TWO_FACTOR_AUTH_DISABLED` - TWO_FACTOR_AUTH_DISABLED - * * `DELETED_LINKED_ACCOUNT` - DELETED_LINKED_ACCOUNT - * * `DELETED_ALL_COMMON_MODELS_FOR_LINKED_ACCOUNT` - DELETED_ALL_COMMON_MODELS_FOR_LINKED_ACCOUNT - * * `CREATED_DESTINATION` - CREATED_DESTINATION - * * `DELETED_DESTINATION` - DELETED_DESTINATION - * * `CHANGED_DESTINATION` - CHANGED_DESTINATION - * * `CHANGED_SCOPES` - CHANGED_SCOPES - * * `CHANGED_PERSONAL_INFORMATION` - CHANGED_PERSONAL_INFORMATION - * * `CHANGED_ORGANIZATION_SETTINGS` - CHANGED_ORGANIZATION_SETTINGS - * * `ENABLED_INTEGRATION` - ENABLED_INTEGRATION - * * `DISABLED_INTEGRATION` - DISABLED_INTEGRATION - * * `ENABLED_CATEGORY` - ENABLED_CATEGORY - * * `DISABLED_CATEGORY` - DISABLED_CATEGORY - * * `CHANGED_PASSWORD` - CHANGED_PASSWORD - * * `RESET_PASSWORD` - RESET_PASSWORD - * * `ENABLED_REDACT_UNMAPPED_DATA_FOR_ORGANIZATION` - ENABLED_REDACT_UNMAPPED_DATA_FOR_ORGANIZATION - * * `ENABLED_REDACT_UNMAPPED_DATA_FOR_LINKED_ACCOUNT` - ENABLED_REDACT_UNMAPPED_DATA_FOR_LINKED_ACCOUNT - * * `DISABLED_REDACT_UNMAPPED_DATA_FOR_ORGANIZATION` - DISABLED_REDACT_UNMAPPED_DATA_FOR_ORGANIZATION - * * `DISABLED_REDACT_UNMAPPED_DATA_FOR_LINKED_ACCOUNT` - DISABLED_REDACT_UNMAPPED_DATA_FOR_LINKED_ACCOUNT - * * `CREATED_INTEGRATION_WIDE_FIELD_MAPPING` - CREATED_INTEGRATION_WIDE_FIELD_MAPPING - * * `CREATED_LINKED_ACCOUNT_FIELD_MAPPING` - CREATED_LINKED_ACCOUNT_FIELD_MAPPING - * * `CHANGED_INTEGRATION_WIDE_FIELD_MAPPING` - CHANGED_INTEGRATION_WIDE_FIELD_MAPPING - * * `CHANGED_LINKED_ACCOUNT_FIELD_MAPPING` - CHANGED_LINKED_ACCOUNT_FIELD_MAPPING - * * `DELETED_INTEGRATION_WIDE_FIELD_MAPPING` - DELETED_INTEGRATION_WIDE_FIELD_MAPPING - * * `DELETED_LINKED_ACCOUNT_FIELD_MAPPING` - DELETED_LINKED_ACCOUNT_FIELD_MAPPING - * * `CREATED_LINKED_ACCOUNT_COMMON_MODEL_OVERRIDE` - CREATED_LINKED_ACCOUNT_COMMON_MODEL_OVERRIDE - * * `CHANGED_LINKED_ACCOUNT_COMMON_MODEL_OVERRIDE` - CHANGED_LINKED_ACCOUNT_COMMON_MODEL_OVERRIDE - * * `DELETED_LINKED_ACCOUNT_COMMON_MODEL_OVERRIDE` - DELETED_LINKED_ACCOUNT_COMMON_MODEL_OVERRIDE - * * `FORCED_LINKED_ACCOUNT_RESYNC` - FORCED_LINKED_ACCOUNT_RESYNC - * * `MUTED_ISSUE` - MUTED_ISSUE - * * `GENERATED_MAGIC_LINK` - GENERATED_MAGIC_LINK - * * `ENABLED_MERGE_WEBHOOK` - ENABLED_MERGE_WEBHOOK - * * `DISABLED_MERGE_WEBHOOK` - DISABLED_MERGE_WEBHOOK - * * `MERGE_WEBHOOK_TARGET_CHANGED` - MERGE_WEBHOOK_TARGET_CHANGED - * * `END_USER_CREDENTIALS_ACCESSED` - END_USER_CREDENTIALS_ACCESSED - */ - eventType: Merge.accounting.AuditLogEventEventType; - eventDescription: string; - createdAt?: Date; -} diff --git a/src/api/resources/accounting/types/AuditLogEventEventType.ts b/src/api/resources/accounting/types/AuditLogEventEventType.ts deleted file mode 100644 index 4145d2f13..000000000 --- a/src/api/resources/accounting/types/AuditLogEventEventType.ts +++ /dev/null @@ -1,52 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * Designates the type of event that occurred. - * - * * `CREATED_REMOTE_PRODUCTION_API_KEY` - CREATED_REMOTE_PRODUCTION_API_KEY - * * `DELETED_REMOTE_PRODUCTION_API_KEY` - DELETED_REMOTE_PRODUCTION_API_KEY - * * `CREATED_TEST_API_KEY` - CREATED_TEST_API_KEY - * * `DELETED_TEST_API_KEY` - DELETED_TEST_API_KEY - * * `REGENERATED_PRODUCTION_API_KEY` - REGENERATED_PRODUCTION_API_KEY - * * `REGENERATED_WEBHOOK_SIGNATURE` - REGENERATED_WEBHOOK_SIGNATURE - * * `INVITED_USER` - INVITED_USER - * * `TWO_FACTOR_AUTH_ENABLED` - TWO_FACTOR_AUTH_ENABLED - * * `TWO_FACTOR_AUTH_DISABLED` - TWO_FACTOR_AUTH_DISABLED - * * `DELETED_LINKED_ACCOUNT` - DELETED_LINKED_ACCOUNT - * * `DELETED_ALL_COMMON_MODELS_FOR_LINKED_ACCOUNT` - DELETED_ALL_COMMON_MODELS_FOR_LINKED_ACCOUNT - * * `CREATED_DESTINATION` - CREATED_DESTINATION - * * `DELETED_DESTINATION` - DELETED_DESTINATION - * * `CHANGED_DESTINATION` - CHANGED_DESTINATION - * * `CHANGED_SCOPES` - CHANGED_SCOPES - * * `CHANGED_PERSONAL_INFORMATION` - CHANGED_PERSONAL_INFORMATION - * * `CHANGED_ORGANIZATION_SETTINGS` - CHANGED_ORGANIZATION_SETTINGS - * * `ENABLED_INTEGRATION` - ENABLED_INTEGRATION - * * `DISABLED_INTEGRATION` - DISABLED_INTEGRATION - * * `ENABLED_CATEGORY` - ENABLED_CATEGORY - * * `DISABLED_CATEGORY` - DISABLED_CATEGORY - * * `CHANGED_PASSWORD` - CHANGED_PASSWORD - * * `RESET_PASSWORD` - RESET_PASSWORD - * * `ENABLED_REDACT_UNMAPPED_DATA_FOR_ORGANIZATION` - ENABLED_REDACT_UNMAPPED_DATA_FOR_ORGANIZATION - * * `ENABLED_REDACT_UNMAPPED_DATA_FOR_LINKED_ACCOUNT` - ENABLED_REDACT_UNMAPPED_DATA_FOR_LINKED_ACCOUNT - * * `DISABLED_REDACT_UNMAPPED_DATA_FOR_ORGANIZATION` - DISABLED_REDACT_UNMAPPED_DATA_FOR_ORGANIZATION - * * `DISABLED_REDACT_UNMAPPED_DATA_FOR_LINKED_ACCOUNT` - DISABLED_REDACT_UNMAPPED_DATA_FOR_LINKED_ACCOUNT - * * `CREATED_INTEGRATION_WIDE_FIELD_MAPPING` - CREATED_INTEGRATION_WIDE_FIELD_MAPPING - * * `CREATED_LINKED_ACCOUNT_FIELD_MAPPING` - CREATED_LINKED_ACCOUNT_FIELD_MAPPING - * * `CHANGED_INTEGRATION_WIDE_FIELD_MAPPING` - CHANGED_INTEGRATION_WIDE_FIELD_MAPPING - * * `CHANGED_LINKED_ACCOUNT_FIELD_MAPPING` - CHANGED_LINKED_ACCOUNT_FIELD_MAPPING - * * `DELETED_INTEGRATION_WIDE_FIELD_MAPPING` - DELETED_INTEGRATION_WIDE_FIELD_MAPPING - * * `DELETED_LINKED_ACCOUNT_FIELD_MAPPING` - DELETED_LINKED_ACCOUNT_FIELD_MAPPING - * * `CREATED_LINKED_ACCOUNT_COMMON_MODEL_OVERRIDE` - CREATED_LINKED_ACCOUNT_COMMON_MODEL_OVERRIDE - * * `CHANGED_LINKED_ACCOUNT_COMMON_MODEL_OVERRIDE` - CHANGED_LINKED_ACCOUNT_COMMON_MODEL_OVERRIDE - * * `DELETED_LINKED_ACCOUNT_COMMON_MODEL_OVERRIDE` - DELETED_LINKED_ACCOUNT_COMMON_MODEL_OVERRIDE - * * `FORCED_LINKED_ACCOUNT_RESYNC` - FORCED_LINKED_ACCOUNT_RESYNC - * * `MUTED_ISSUE` - MUTED_ISSUE - * * `GENERATED_MAGIC_LINK` - GENERATED_MAGIC_LINK - * * `ENABLED_MERGE_WEBHOOK` - ENABLED_MERGE_WEBHOOK - * * `DISABLED_MERGE_WEBHOOK` - DISABLED_MERGE_WEBHOOK - * * `MERGE_WEBHOOK_TARGET_CHANGED` - MERGE_WEBHOOK_TARGET_CHANGED - * * `END_USER_CREDENTIALS_ACCESSED` - END_USER_CREDENTIALS_ACCESSED - */ -export type AuditLogEventEventType = Merge.accounting.EventTypeEnum | string; diff --git a/src/api/resources/accounting/types/AuditLogEventRole.ts b/src/api/resources/accounting/types/AuditLogEventRole.ts deleted file mode 100644 index 0bd2199d6..000000000 --- a/src/api/resources/accounting/types/AuditLogEventRole.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * Designates the role of the user (or SYSTEM/API if action not taken by a user) at the time of this Event occurring. - * - * * `ADMIN` - ADMIN - * * `DEVELOPER` - DEVELOPER - * * `MEMBER` - MEMBER - * * `API` - API - * * `SYSTEM` - SYSTEM - * * `MERGE_TEAM` - MERGE_TEAM - */ -export type AuditLogEventRole = Merge.accounting.RoleEnum | string; diff --git a/src/api/resources/accounting/types/AvailableActions.ts b/src/api/resources/accounting/types/AvailableActions.ts deleted file mode 100644 index f8b9167ed..000000000 --- a/src/api/resources/accounting/types/AvailableActions.ts +++ /dev/null @@ -1,17 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The AvailableActions Object - * ### Description - * The `Activity` object is used to see all available model/operation combinations for an integration. - * - * ### Usage Example - * Fetch all the actions available for the `Zenefits` integration. - */ -export interface AvailableActions { - integration: Merge.accounting.AccountIntegration; - passthroughAvailable: boolean; - availableModelOperations?: Merge.accounting.ModelOperation[]; -} diff --git a/src/api/resources/accounting/types/BalanceSheet.ts b/src/api/resources/accounting/types/BalanceSheet.ts deleted file mode 100644 index 84d2a8c6c..000000000 --- a/src/api/resources/accounting/types/BalanceSheet.ts +++ /dev/null @@ -1,349 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The BalanceSheet Object - * ### Description - * The `BalanceSheet` object shows a company’s assets, liabilities, and equity. Assets should be equal to liability and equity combined. This shows the company’s financial health at a specific point in time. - * - * ### Usage Example - * Fetch from the `LIST BalanceSheets` endpoint and view a company's balance sheets. - */ -export interface BalanceSheet { - id?: string; - /** The third-party API ID of the matching object. */ - remoteId?: string; - /** The datetime that this object was created by Merge. */ - createdAt?: Date; - /** The datetime that this object was modified by Merge. */ - modifiedAt?: Date; - /** The balance sheet's name. */ - name?: string; - /** - * The balance sheet's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ - currency?: Merge.accounting.BalanceSheetCurrency; - /** `Company` object for the given `BalanceSheet` object. */ - company?: Merge.accounting.BalanceSheetCompany; - /** The balance sheet's date. The balance sheet data will reflect the company's financial position this point in time. */ - date?: Date; - /** The balance sheet's net assets. */ - netAssets?: number; - assets?: Merge.accounting.ReportItem[]; - liabilities?: Merge.accounting.ReportItem[]; - equity?: Merge.accounting.ReportItem[]; - /** The time that balance sheet was generated by the accounting system. */ - remoteGeneratedAt?: Date; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - remoteWasDeleted?: boolean; - fieldMappings?: Record; - remoteData?: Merge.accounting.RemoteData[]; -} diff --git a/src/api/resources/accounting/types/BalanceSheetCompany.ts b/src/api/resources/accounting/types/BalanceSheetCompany.ts deleted file mode 100644 index ccdec5cd1..000000000 --- a/src/api/resources/accounting/types/BalanceSheetCompany.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * `Company` object for the given `BalanceSheet` object. - */ -export type BalanceSheetCompany = string | Merge.accounting.CompanyInfo; diff --git a/src/api/resources/accounting/types/BalanceSheetCurrency.ts b/src/api/resources/accounting/types/BalanceSheetCurrency.ts deleted file mode 100644 index ceee1a96c..000000000 --- a/src/api/resources/accounting/types/BalanceSheetCurrency.ts +++ /dev/null @@ -1,315 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The balance sheet's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ -export type BalanceSheetCurrency = Merge.accounting.TransactionCurrencyEnum | string; diff --git a/src/api/resources/accounting/types/BankFeedAccount.ts b/src/api/resources/accounting/types/BankFeedAccount.ts deleted file mode 100644 index 108e94a09..000000000 --- a/src/api/resources/accounting/types/BankFeedAccount.ts +++ /dev/null @@ -1,364 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The BankFeedAccount Object - * ### Description - * The `BankFeedAccount` object represents a bank feed account, detailing various attributes including account identifiers, names, currency, and balance information. This object is central to managing and tracking bank feed accounts within the system. - * - * ### Usage Example - * Fetch from the `GET BankFeedAccount` endpoint to view details of a bank feed account. - */ -export interface BankFeedAccount { - id?: string; - /** The third-party API ID of the matching object. */ - remoteId?: string; - /** The datetime that this object was created by Merge. */ - createdAt?: Date; - /** The datetime that this object was modified by Merge. */ - modifiedAt?: Date; - /** The unique identifier of the source account from our customer’s platform. */ - sourceAccountId?: string; - /** The unique identifier of the target account from the third party software. */ - targetAccountId?: string; - /** The name of the source account as stored in our customer’s platform. */ - sourceAccountName?: string; - /** The human-readable account number of the source account as stored in our customer’s platform. */ - sourceAccountNumber?: string; - /** The name of the target account from the third party software. */ - targetAccountName?: string; - /** - * The currency code of the bank feed. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ - currency?: Merge.accounting.BankFeedAccountCurrency; - /** - * The status of the bank feed. - * - * * `ACTIVE` - ACTIVE - * * `INACTIVE` - INACTIVE - */ - feedStatus?: Merge.accounting.BankFeedAccountFeedStatus; - /** The start date of the bank feed’s transactions. */ - feedStartDate?: Date; - /** The current balance of funds in the source account. */ - sourceAccountBalance?: number; - /** - * The type of the account. - * - * * `BANK` - BANK - * * `CREDIT_CARD` - CREDIT_CARD - */ - accountType?: Merge.accounting.BankFeedAccountAccountType; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - remoteWasDeleted?: boolean; - fieldMappings?: Record; - remoteData?: (Record | undefined)[]; -} diff --git a/src/api/resources/accounting/types/BankFeedAccountAccountType.ts b/src/api/resources/accounting/types/BankFeedAccountAccountType.ts deleted file mode 100644 index 2bfa1fce5..000000000 --- a/src/api/resources/accounting/types/BankFeedAccountAccountType.ts +++ /dev/null @@ -1,11 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The type of the account. - * - * * `BANK` - BANK - * * `CREDIT_CARD` - CREDIT_CARD - */ -export type BankFeedAccountAccountType = Merge.accounting.BankFeedAccountAccountTypeEnum | string; diff --git a/src/api/resources/accounting/types/BankFeedAccountAccountTypeEnum.ts b/src/api/resources/accounting/types/BankFeedAccountAccountTypeEnum.ts deleted file mode 100644 index ecacd49ff..000000000 --- a/src/api/resources/accounting/types/BankFeedAccountAccountTypeEnum.ts +++ /dev/null @@ -1,12 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * * `BANK` - BANK - * * `CREDIT_CARD` - CREDIT_CARD - */ -export const BankFeedAccountAccountTypeEnum = { - Bank: "BANK", - CreditCard: "CREDIT_CARD", -} as const; -export type BankFeedAccountAccountTypeEnum = - (typeof BankFeedAccountAccountTypeEnum)[keyof typeof BankFeedAccountAccountTypeEnum]; diff --git a/src/api/resources/accounting/types/BankFeedAccountCurrency.ts b/src/api/resources/accounting/types/BankFeedAccountCurrency.ts deleted file mode 100644 index c97dee017..000000000 --- a/src/api/resources/accounting/types/BankFeedAccountCurrency.ts +++ /dev/null @@ -1,315 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The currency code of the bank feed. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ -export type BankFeedAccountCurrency = Merge.accounting.TransactionCurrencyEnum | string; diff --git a/src/api/resources/accounting/types/BankFeedAccountFeedStatus.ts b/src/api/resources/accounting/types/BankFeedAccountFeedStatus.ts deleted file mode 100644 index bdd8a3ecd..000000000 --- a/src/api/resources/accounting/types/BankFeedAccountFeedStatus.ts +++ /dev/null @@ -1,11 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The status of the bank feed. - * - * * `ACTIVE` - ACTIVE - * * `INACTIVE` - INACTIVE - */ -export type BankFeedAccountFeedStatus = Merge.accounting.FeedStatusEnum | string; diff --git a/src/api/resources/accounting/types/BankFeedAccountRequest.ts b/src/api/resources/accounting/types/BankFeedAccountRequest.ts deleted file mode 100644 index b90479cab..000000000 --- a/src/api/resources/accounting/types/BankFeedAccountRequest.ts +++ /dev/null @@ -1,355 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The BankFeedAccount Object - * ### Description - * The `BankFeedAccount` object represents a bank feed account, detailing various attributes including account identifiers, names, currency, and balance information. This object is central to managing and tracking bank feed accounts within the system. - * - * ### Usage Example - * Fetch from the `GET BankFeedAccount` endpoint to view details of a bank feed account. - */ -export interface BankFeedAccountRequest { - /** The unique identifier of the source account from our customer’s platform. */ - sourceAccountId?: string; - /** The unique identifier of the target account from the third party software. */ - targetAccountId?: string; - /** The name of the source account as stored in our customer’s platform. */ - sourceAccountName?: string; - /** The human-readable account number of the source account as stored in our customer’s platform. */ - sourceAccountNumber?: string; - /** The name of the target account from the third party software. */ - targetAccountName?: string; - /** - * The currency code of the bank feed. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ - currency?: Merge.accounting.BankFeedAccountRequestCurrency; - /** - * The status of the bank feed. - * - * * `ACTIVE` - ACTIVE - * * `INACTIVE` - INACTIVE - */ - feedStatus?: Merge.accounting.BankFeedAccountRequestFeedStatus; - /** The start date of the bank feed’s transactions. */ - feedStartDate?: Date; - /** The current balance of funds in the source account. */ - sourceAccountBalance?: number; - /** - * The type of the account. - * - * * `BANK` - BANK - * * `CREDIT_CARD` - CREDIT_CARD - */ - accountType?: Merge.accounting.BankFeedAccountRequestAccountType; - integrationParams?: Record; - linkedAccountParams?: Record; -} diff --git a/src/api/resources/accounting/types/BankFeedAccountRequestAccountType.ts b/src/api/resources/accounting/types/BankFeedAccountRequestAccountType.ts deleted file mode 100644 index 4008c7fd3..000000000 --- a/src/api/resources/accounting/types/BankFeedAccountRequestAccountType.ts +++ /dev/null @@ -1,11 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The type of the account. - * - * * `BANK` - BANK - * * `CREDIT_CARD` - CREDIT_CARD - */ -export type BankFeedAccountRequestAccountType = Merge.accounting.BankFeedAccountAccountTypeEnum | string; diff --git a/src/api/resources/accounting/types/BankFeedAccountRequestCurrency.ts b/src/api/resources/accounting/types/BankFeedAccountRequestCurrency.ts deleted file mode 100644 index cc0802137..000000000 --- a/src/api/resources/accounting/types/BankFeedAccountRequestCurrency.ts +++ /dev/null @@ -1,315 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The currency code of the bank feed. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ -export type BankFeedAccountRequestCurrency = Merge.accounting.TransactionCurrencyEnum | string; diff --git a/src/api/resources/accounting/types/BankFeedAccountRequestFeedStatus.ts b/src/api/resources/accounting/types/BankFeedAccountRequestFeedStatus.ts deleted file mode 100644 index 7dc3a4db5..000000000 --- a/src/api/resources/accounting/types/BankFeedAccountRequestFeedStatus.ts +++ /dev/null @@ -1,11 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The status of the bank feed. - * - * * `ACTIVE` - ACTIVE - * * `INACTIVE` - INACTIVE - */ -export type BankFeedAccountRequestFeedStatus = Merge.accounting.FeedStatusEnum | string; diff --git a/src/api/resources/accounting/types/BankFeedAccountResponse.ts b/src/api/resources/accounting/types/BankFeedAccountResponse.ts deleted file mode 100644 index 7154b34b6..000000000 --- a/src/api/resources/accounting/types/BankFeedAccountResponse.ts +++ /dev/null @@ -1,10 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface BankFeedAccountResponse { - model: Merge.accounting.BankFeedAccount; - warnings: Merge.accounting.WarningValidationProblem[]; - errors: Merge.accounting.ErrorValidationProblem[]; - logs?: Merge.accounting.DebugModeLog[]; -} diff --git a/src/api/resources/accounting/types/BankFeedTransaction.ts b/src/api/resources/accounting/types/BankFeedTransaction.ts deleted file mode 100644 index 0f428adce..000000000 --- a/src/api/resources/accounting/types/BankFeedTransaction.ts +++ /dev/null @@ -1,48 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The BankFeedTransaction Object - * ### Description - * The `BankFeedTransaction` object is used to represent transactions linked to a bank feed account. This includes details about the transaction such as the date, amount, description, and type. - * - * ### Usage Example - * Fetch from the `GET BankFeedTransaction` endpoint to view details of a transaction associated with a bank feed account. - */ -export interface BankFeedTransaction { - id?: string; - /** The third-party API ID of the matching object. */ - remoteId?: string; - /** The datetime that this object was created by Merge. */ - createdAt?: Date; - /** The datetime that this object was modified by Merge. */ - modifiedAt?: Date; - /** The bank feed account associated with the transaction. */ - bankFeedAccount?: Merge.accounting.BankFeedTransactionBankFeedAccount; - /** The date that the transaction occurred. */ - transactionDate?: Date; - /** The date the transaction was posted to the bank account. */ - postedDate?: Date; - /** The amount of the transaction. */ - amount?: number; - /** The description of the transaction. */ - description?: string; - /** The underlying type of the transaction. */ - transactionType?: string; - /** The person or merchant who initiated the transaction, or alternatively, to whom the transaction was paid. */ - payee?: string; - /** - * If the transaction is of type debit or credit. - * - * * `CREDIT` - CREDIT - * * `DEBIT` - DEBIT - */ - creditOrDebit?: Merge.accounting.BankFeedTransactionCreditOrDebit; - /** The customer’s identifier for the transaction. */ - sourceTransactionId?: string; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - remoteWasDeleted?: boolean; - /** Whether or not this transaction has been processed by the external system. For example, NetSuite writes this field as True when the SuiteApp has processed the transaction. */ - isProcessed?: boolean; -} diff --git a/src/api/resources/accounting/types/BankFeedTransactionBankFeedAccount.ts b/src/api/resources/accounting/types/BankFeedTransactionBankFeedAccount.ts deleted file mode 100644 index 20ebc53ff..000000000 --- a/src/api/resources/accounting/types/BankFeedTransactionBankFeedAccount.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The bank feed account associated with the transaction. - */ -export type BankFeedTransactionBankFeedAccount = string | Merge.accounting.BankFeedAccount; diff --git a/src/api/resources/accounting/types/BankFeedTransactionCreditOrDebit.ts b/src/api/resources/accounting/types/BankFeedTransactionCreditOrDebit.ts deleted file mode 100644 index 7e2cc7f73..000000000 --- a/src/api/resources/accounting/types/BankFeedTransactionCreditOrDebit.ts +++ /dev/null @@ -1,11 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * If the transaction is of type debit or credit. - * - * * `CREDIT` - CREDIT - * * `DEBIT` - DEBIT - */ -export type BankFeedTransactionCreditOrDebit = Merge.accounting.CreditOrDebitEnum | string; diff --git a/src/api/resources/accounting/types/BankFeedTransactionRequestRequest.ts b/src/api/resources/accounting/types/BankFeedTransactionRequestRequest.ts deleted file mode 100644 index 1afc570d4..000000000 --- a/src/api/resources/accounting/types/BankFeedTransactionRequestRequest.ts +++ /dev/null @@ -1,39 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The BankFeedTransaction Object - * ### Description - * The `BankFeedTransaction` object is used to represent transactions linked to a bank feed account. This includes details about the transaction such as the date, amount, description, and type. - * - * ### Usage Example - * Fetch from the `GET BankFeedTransaction` endpoint to view details of a transaction associated with a bank feed account. - */ -export interface BankFeedTransactionRequestRequest { - /** The bank feed account associated with the transaction. */ - bankFeedAccount?: Merge.accounting.BankFeedTransactionRequestRequestBankFeedAccount; - /** The date that the transaction occurred. */ - transactionDate?: Date; - /** The date the transaction was posted to the bank account. */ - postedDate?: Date; - /** The amount of the transaction. */ - amount?: number; - /** The description of the transaction. */ - description?: string; - /** The underlying type of the transaction. */ - transactionType?: string; - /** The person or merchant who initiated the transaction, or alternatively, to whom the transaction was paid. */ - payee?: string; - /** - * If the transaction is of type debit or credit. - * - * * `CREDIT` - CREDIT - * * `DEBIT` - DEBIT - */ - creditOrDebit?: Merge.accounting.BankFeedTransactionRequestRequestCreditOrDebit; - /** The customer’s identifier for the transaction. */ - sourceTransactionId?: string; - integrationParams?: Record; - linkedAccountParams?: Record; -} diff --git a/src/api/resources/accounting/types/BankFeedTransactionRequestRequestBankFeedAccount.ts b/src/api/resources/accounting/types/BankFeedTransactionRequestRequestBankFeedAccount.ts deleted file mode 100644 index d1e9ad07d..000000000 --- a/src/api/resources/accounting/types/BankFeedTransactionRequestRequestBankFeedAccount.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The bank feed account associated with the transaction. - */ -export type BankFeedTransactionRequestRequestBankFeedAccount = string | Merge.accounting.BankFeedAccount; diff --git a/src/api/resources/accounting/types/BankFeedTransactionRequestRequestCreditOrDebit.ts b/src/api/resources/accounting/types/BankFeedTransactionRequestRequestCreditOrDebit.ts deleted file mode 100644 index ec0ced09a..000000000 --- a/src/api/resources/accounting/types/BankFeedTransactionRequestRequestCreditOrDebit.ts +++ /dev/null @@ -1,11 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * If the transaction is of type debit or credit. - * - * * `CREDIT` - CREDIT - * * `DEBIT` - DEBIT - */ -export type BankFeedTransactionRequestRequestCreditOrDebit = Merge.accounting.CreditOrDebitEnum | string; diff --git a/src/api/resources/accounting/types/BankFeedTransactionResponse.ts b/src/api/resources/accounting/types/BankFeedTransactionResponse.ts deleted file mode 100644 index 451f57f8d..000000000 --- a/src/api/resources/accounting/types/BankFeedTransactionResponse.ts +++ /dev/null @@ -1,10 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface BankFeedTransactionResponse { - model: Merge.accounting.BankFeedTransaction; - warnings: Merge.accounting.WarningValidationProblem[]; - errors: Merge.accounting.ErrorValidationProblem[]; - logs?: Merge.accounting.DebugModeLog[]; -} diff --git a/src/api/resources/accounting/types/CashFlowStatement.ts b/src/api/resources/accounting/types/CashFlowStatement.ts deleted file mode 100644 index a740af53d..000000000 --- a/src/api/resources/accounting/types/CashFlowStatement.ts +++ /dev/null @@ -1,353 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The CashFlowStatement Object - * ### Description - * The `CashFlowStatement` object shows operating activities, investing activities, and financing activities over a period of time (month, quarter, or year). - * - * ### Usage Example - * Fetch from the `LIST CashFlowStatements` endpoint and view a company's cash flow statements. - */ -export interface CashFlowStatement { - id?: string; - /** The third-party API ID of the matching object. */ - remoteId?: string; - /** The datetime that this object was created by Merge. */ - createdAt?: Date; - /** The datetime that this object was modified by Merge. */ - modifiedAt?: Date; - /** The cash flow statement's name. */ - name?: string; - /** - * The cash flow statement's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ - currency?: Merge.accounting.CashFlowStatementCurrency; - /** The company the cash flow statement belongs to. */ - company?: Merge.accounting.CashFlowStatementCompany; - /** The cash flow statement's start period. */ - startPeriod?: Date; - /** The cash flow statement's end period. */ - endPeriod?: Date; - /** Cash and cash equivalents at the beginning of the cash flow statement's period. */ - cashAtBeginningOfPeriod?: number; - /** Cash and cash equivalents at the beginning of the cash flow statement's period. */ - cashAtEndOfPeriod?: number; - operatingActivities?: Merge.accounting.ReportItem[]; - investingActivities?: Merge.accounting.ReportItem[]; - financingActivities?: Merge.accounting.ReportItem[]; - /** The time that cash flow statement was generated by the accounting system. */ - remoteGeneratedAt?: Date; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - remoteWasDeleted?: boolean; - fieldMappings?: Record; - remoteData?: Merge.accounting.RemoteData[]; -} diff --git a/src/api/resources/accounting/types/CashFlowStatementCompany.ts b/src/api/resources/accounting/types/CashFlowStatementCompany.ts deleted file mode 100644 index d9f8ca8e0..000000000 --- a/src/api/resources/accounting/types/CashFlowStatementCompany.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The company the cash flow statement belongs to. - */ -export type CashFlowStatementCompany = string | Merge.accounting.CompanyInfo; diff --git a/src/api/resources/accounting/types/CashFlowStatementCurrency.ts b/src/api/resources/accounting/types/CashFlowStatementCurrency.ts deleted file mode 100644 index 538a167aa..000000000 --- a/src/api/resources/accounting/types/CashFlowStatementCurrency.ts +++ /dev/null @@ -1,315 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The cash flow statement's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ -export type CashFlowStatementCurrency = Merge.accounting.TransactionCurrencyEnum | string; diff --git a/src/api/resources/accounting/types/CategoriesEnum.ts b/src/api/resources/accounting/types/CategoriesEnum.ts deleted file mode 100644 index fadfd2764..000000000 --- a/src/api/resources/accounting/types/CategoriesEnum.ts +++ /dev/null @@ -1,21 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * * `hris` - hris - * * `ats` - ats - * * `accounting` - accounting - * * `ticketing` - ticketing - * * `crm` - crm - * * `mktg` - mktg - * * `filestorage` - filestorage - */ -export const CategoriesEnum = { - Hris: "hris", - Ats: "ats", - Accounting: "accounting", - Ticketing: "ticketing", - Crm: "crm", - Mktg: "mktg", - Filestorage: "filestorage", -} as const; -export type CategoriesEnum = (typeof CategoriesEnum)[keyof typeof CategoriesEnum]; diff --git a/src/api/resources/accounting/types/CategoryEnum.ts b/src/api/resources/accounting/types/CategoryEnum.ts deleted file mode 100644 index f2cd1da08..000000000 --- a/src/api/resources/accounting/types/CategoryEnum.ts +++ /dev/null @@ -1,21 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * * `hris` - hris - * * `ats` - ats - * * `accounting` - accounting - * * `ticketing` - ticketing - * * `crm` - crm - * * `mktg` - mktg - * * `filestorage` - filestorage - */ -export const CategoryEnum = { - Hris: "hris", - Ats: "ats", - Accounting: "accounting", - Ticketing: "ticketing", - Crm: "crm", - Mktg: "mktg", - Filestorage: "filestorage", -} as const; -export type CategoryEnum = (typeof CategoryEnum)[keyof typeof CategoryEnum]; diff --git a/src/api/resources/accounting/types/CategoryTypeEnum.ts b/src/api/resources/accounting/types/CategoryTypeEnum.ts deleted file mode 100644 index 0458e15ee..000000000 --- a/src/api/resources/accounting/types/CategoryTypeEnum.ts +++ /dev/null @@ -1,11 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * * `CLASS` - CLASS - * * `DEPARTMENT` - DEPARTMENT - */ -export const CategoryTypeEnum = { - Class: "CLASS", - Department: "DEPARTMENT", -} as const; -export type CategoryTypeEnum = (typeof CategoryTypeEnum)[keyof typeof CategoryTypeEnum]; diff --git a/src/api/resources/accounting/types/ClassificationEnum.ts b/src/api/resources/accounting/types/ClassificationEnum.ts deleted file mode 100644 index 06fead26f..000000000 --- a/src/api/resources/accounting/types/ClassificationEnum.ts +++ /dev/null @@ -1,17 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * * `ASSET` - ASSET - * * `EQUITY` - EQUITY - * * `EXPENSE` - EXPENSE - * * `LIABILITY` - LIABILITY - * * `REVENUE` - REVENUE - */ -export const ClassificationEnum = { - Asset: "ASSET", - Equity: "EQUITY", - Expense: "EXPENSE", - Liability: "LIABILITY", - Revenue: "REVENUE", -} as const; -export type ClassificationEnum = (typeof ClassificationEnum)[keyof typeof ClassificationEnum]; diff --git a/src/api/resources/accounting/types/CommonModelScopeApi.ts b/src/api/resources/accounting/types/CommonModelScopeApi.ts deleted file mode 100644 index 5aae863dc..000000000 --- a/src/api/resources/accounting/types/CommonModelScopeApi.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface CommonModelScopeApi { - /** The common models you want to update the scopes for */ - commonModels: Merge.accounting.IndividualCommonModelScopeDeserializer[]; -} diff --git a/src/api/resources/accounting/types/CommonModelScopesBodyRequest.ts b/src/api/resources/accounting/types/CommonModelScopesBodyRequest.ts deleted file mode 100644 index d68b41637..000000000 --- a/src/api/resources/accounting/types/CommonModelScopesBodyRequest.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface CommonModelScopesBodyRequest { - modelId: string; - enabledActions: Merge.accounting.EnabledActionsEnum[]; - disabledFields: string[]; -} diff --git a/src/api/resources/accounting/types/CompanyInfo.ts b/src/api/resources/accounting/types/CompanyInfo.ts deleted file mode 100644 index cfd881763..000000000 --- a/src/api/resources/accounting/types/CompanyInfo.ts +++ /dev/null @@ -1,352 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The CompanyInfo Object - * ### Description - * The `CompanyInfo` object contains information about the company of the linked account. If the company has multiple entities (also known as subsidiaries), each entity may show up as a single `CompanyInfo` record. - * - * ### Usage Example - * Fetch from the `GET CompanyInfo` endpoint and view a company's information. - */ -export interface CompanyInfo { - id?: string; - /** The third-party API ID of the matching object. */ - remoteId?: string; - /** The datetime that this object was created by Merge. */ - createdAt?: Date; - /** The datetime that this object was modified by Merge. */ - modifiedAt?: Date; - /** The company's name. */ - name?: string; - /** The company's legal name. */ - legalName?: string; - /** The company's tax number. */ - taxNumber?: string; - /** The company's fiscal year end month. */ - fiscalYearEndMonth?: number; - /** The company's fiscal year end day. */ - fiscalYearEndDay?: number; - /** - * The currency set in the company's accounting platform. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ - currency?: Merge.accounting.CompanyInfoCurrency; - /** When the third party's company was created. */ - remoteCreatedAt?: Date; - /** The company's urls. */ - urls?: (string | undefined)[]; - addresses?: Merge.accounting.Address[]; - phoneNumbers?: Merge.accounting.AccountingPhoneNumber[]; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - remoteWasDeleted?: boolean; - fieldMappings?: Record; - remoteData?: Merge.accounting.RemoteData[]; -} diff --git a/src/api/resources/accounting/types/CompanyInfoCurrency.ts b/src/api/resources/accounting/types/CompanyInfoCurrency.ts deleted file mode 100644 index 13284e2ae..000000000 --- a/src/api/resources/accounting/types/CompanyInfoCurrency.ts +++ /dev/null @@ -1,315 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The currency set in the company's accounting platform. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ -export type CompanyInfoCurrency = Merge.accounting.TransactionCurrencyEnum | string; diff --git a/src/api/resources/accounting/types/ComponentTypeEnum.ts b/src/api/resources/accounting/types/ComponentTypeEnum.ts deleted file mode 100644 index 3f13b796f..000000000 --- a/src/api/resources/accounting/types/ComponentTypeEnum.ts +++ /dev/null @@ -1,11 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * * `SALES` - SALES - * * `PURCHASE` - PURCHASE - */ -export const ComponentTypeEnum = { - Sales: "SALES", - Purchase: "PURCHASE", -} as const; -export type ComponentTypeEnum = (typeof ComponentTypeEnum)[keyof typeof ComponentTypeEnum]; diff --git a/src/api/resources/accounting/types/Contact.ts b/src/api/resources/accounting/types/Contact.ts deleted file mode 100644 index 3a0553407..000000000 --- a/src/api/resources/accounting/types/Contact.ts +++ /dev/null @@ -1,55 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The Contact Object - * ### Description - * A `Contact` is an individual or business entity to which products and services are sold to or purchased from. The `Contact` model contains both Customers, in which products and services are sold to, and Vendors (or Suppliers), in which products and services are purchased from. - * * A `Contact` is a Vendor/Supplier if the `is_supplier` property is true. - * * A `Contact` is a customer if the `is_customer` property is true. - * - * ### Usage Example - * Fetch from the `LIST Contacts` endpoint and view a company's contacts. - */ -export interface Contact { - id?: string; - /** The third-party API ID of the matching object. */ - remoteId?: string; - /** The datetime that this object was created by Merge. */ - createdAt?: Date; - /** The datetime that this object was modified by Merge. */ - modifiedAt?: Date; - /** The contact's name. */ - name?: string; - /** Whether the contact is a supplier. */ - isSupplier?: boolean; - /** Whether the contact is a customer. */ - isCustomer?: boolean; - /** The contact's email address. */ - emailAddress?: string; - /** The contact's tax number. */ - taxNumber?: string; - /** - * The contact's status - * - * * `ACTIVE` - ACTIVE - * * `ARCHIVED` - ARCHIVED - */ - status?: Merge.accounting.ContactStatus; - /** The currency the contact's transactions are in. */ - currency?: string; - /** When the third party's contact was updated. */ - remoteUpdatedAt?: Date; - /** The company the contact belongs to. */ - company?: string; - /** `Address` object IDs for the given `Contacts` object. */ - addresses?: (Merge.accounting.ContactAddressesItem | undefined)[]; - /** `AccountingPhoneNumber` object for the given `Contacts` object. */ - phoneNumbers?: Merge.accounting.AccountingPhoneNumber[]; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - remoteWasDeleted?: boolean; - fieldMappings?: Record; - remoteData?: Merge.accounting.RemoteData[]; - remoteFields?: Merge.accounting.RemoteField[]; -} diff --git a/src/api/resources/accounting/types/ContactAddressesItem.ts b/src/api/resources/accounting/types/ContactAddressesItem.ts deleted file mode 100644 index 696e98992..000000000 --- a/src/api/resources/accounting/types/ContactAddressesItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type ContactAddressesItem = string | Merge.accounting.Address; diff --git a/src/api/resources/accounting/types/ContactRequest.ts b/src/api/resources/accounting/types/ContactRequest.ts deleted file mode 100644 index 901daa67e..000000000 --- a/src/api/resources/accounting/types/ContactRequest.ts +++ /dev/null @@ -1,44 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The Contact Object - * ### Description - * A `Contact` is an individual or business entity to which products and services are sold to or purchased from. The `Contact` model contains both Customers, in which products and services are sold to, and Vendors (or Suppliers), in which products and services are purchased from. - * * A `Contact` is a Vendor/Supplier if the `is_supplier` property is true. - * * A `Contact` is a customer if the `is_customer` property is true. - * - * ### Usage Example - * Fetch from the `LIST Contacts` endpoint and view a company's contacts. - */ -export interface ContactRequest { - /** The contact's name. */ - name?: string; - /** Whether the contact is a supplier. */ - isSupplier?: boolean; - /** Whether the contact is a customer. */ - isCustomer?: boolean; - /** The contact's email address. */ - emailAddress?: string; - /** The contact's tax number. */ - taxNumber?: string; - /** - * The contact's status - * - * * `ACTIVE` - ACTIVE - * * `ARCHIVED` - ARCHIVED - */ - status?: Merge.accounting.ContactRequestStatus; - /** The currency the contact's transactions are in. */ - currency?: string; - /** The company the contact belongs to. */ - company?: string; - /** `Address` object IDs for the given `Contacts` object. */ - addresses?: (Merge.accounting.ContactRequestAddressesItem | undefined)[]; - /** `AccountingPhoneNumber` object for the given `Contacts` object. */ - phoneNumbers?: Merge.accounting.AccountingPhoneNumberRequest[]; - integrationParams?: Record; - linkedAccountParams?: Record; - remoteFields?: Merge.accounting.RemoteFieldRequest[]; -} diff --git a/src/api/resources/accounting/types/ContactRequestAddressesItem.ts b/src/api/resources/accounting/types/ContactRequestAddressesItem.ts deleted file mode 100644 index 8a5e26c67..000000000 --- a/src/api/resources/accounting/types/ContactRequestAddressesItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type ContactRequestAddressesItem = string | Merge.accounting.Address; diff --git a/src/api/resources/accounting/types/ContactRequestStatus.ts b/src/api/resources/accounting/types/ContactRequestStatus.ts deleted file mode 100644 index d479eba24..000000000 --- a/src/api/resources/accounting/types/ContactRequestStatus.ts +++ /dev/null @@ -1,11 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The contact's status - * - * * `ACTIVE` - ACTIVE - * * `ARCHIVED` - ARCHIVED - */ -export type ContactRequestStatus = Merge.accounting.Status7D1Enum | string; diff --git a/src/api/resources/accounting/types/ContactResponse.ts b/src/api/resources/accounting/types/ContactResponse.ts deleted file mode 100644 index 739be2a06..000000000 --- a/src/api/resources/accounting/types/ContactResponse.ts +++ /dev/null @@ -1,10 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface ContactResponse { - model: Merge.accounting.Contact; - warnings: Merge.accounting.WarningValidationProblem[]; - errors: Merge.accounting.ErrorValidationProblem[]; - logs?: Merge.accounting.DebugModeLog[]; -} diff --git a/src/api/resources/accounting/types/ContactStatus.ts b/src/api/resources/accounting/types/ContactStatus.ts deleted file mode 100644 index 3a52cd75c..000000000 --- a/src/api/resources/accounting/types/ContactStatus.ts +++ /dev/null @@ -1,11 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The contact's status - * - * * `ACTIVE` - ACTIVE - * * `ARCHIVED` - ARCHIVED - */ -export type ContactStatus = Merge.accounting.Status7D1Enum | string; diff --git a/src/api/resources/accounting/types/CountryEnum.ts b/src/api/resources/accounting/types/CountryEnum.ts deleted file mode 100644 index cbfdf589a..000000000 --- a/src/api/resources/accounting/types/CountryEnum.ts +++ /dev/null @@ -1,505 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * * `AF` - Afghanistan - * * `AX` - Åland Islands - * * `AL` - Albania - * * `DZ` - Algeria - * * `AS` - American Samoa - * * `AD` - Andorra - * * `AO` - Angola - * * `AI` - Anguilla - * * `AQ` - Antarctica - * * `AG` - Antigua and Barbuda - * * `AR` - Argentina - * * `AM` - Armenia - * * `AW` - Aruba - * * `AU` - Australia - * * `AT` - Austria - * * `AZ` - Azerbaijan - * * `BS` - Bahamas - * * `BH` - Bahrain - * * `BD` - Bangladesh - * * `BB` - Barbados - * * `BY` - Belarus - * * `BE` - Belgium - * * `BZ` - Belize - * * `BJ` - Benin - * * `BM` - Bermuda - * * `BT` - Bhutan - * * `BO` - Bolivia - * * `BQ` - Bonaire, Sint Eustatius and Saba - * * `BA` - Bosnia and Herzegovina - * * `BW` - Botswana - * * `BV` - Bouvet Island - * * `BR` - Brazil - * * `IO` - British Indian Ocean Territory - * * `BN` - Brunei - * * `BG` - Bulgaria - * * `BF` - Burkina Faso - * * `BI` - Burundi - * * `CV` - Cabo Verde - * * `KH` - Cambodia - * * `CM` - Cameroon - * * `CA` - Canada - * * `KY` - Cayman Islands - * * `CF` - Central African Republic - * * `TD` - Chad - * * `CL` - Chile - * * `CN` - China - * * `CX` - Christmas Island - * * `CC` - Cocos (Keeling) Islands - * * `CO` - Colombia - * * `KM` - Comoros - * * `CG` - Congo - * * `CD` - Congo (the Democratic Republic of the) - * * `CK` - Cook Islands - * * `CR` - Costa Rica - * * `CI` - Côte d'Ivoire - * * `HR` - Croatia - * * `CU` - Cuba - * * `CW` - Curaçao - * * `CY` - Cyprus - * * `CZ` - Czechia - * * `DK` - Denmark - * * `DJ` - Djibouti - * * `DM` - Dominica - * * `DO` - Dominican Republic - * * `EC` - Ecuador - * * `EG` - Egypt - * * `SV` - El Salvador - * * `GQ` - Equatorial Guinea - * * `ER` - Eritrea - * * `EE` - Estonia - * * `SZ` - Eswatini - * * `ET` - Ethiopia - * * `FK` - Falkland Islands (Malvinas) - * * `FO` - Faroe Islands - * * `FJ` - Fiji - * * `FI` - Finland - * * `FR` - France - * * `GF` - French Guiana - * * `PF` - French Polynesia - * * `TF` - French Southern Territories - * * `GA` - Gabon - * * `GM` - Gambia - * * `GE` - Georgia - * * `DE` - Germany - * * `GH` - Ghana - * * `GI` - Gibraltar - * * `GR` - Greece - * * `GL` - Greenland - * * `GD` - Grenada - * * `GP` - Guadeloupe - * * `GU` - Guam - * * `GT` - Guatemala - * * `GG` - Guernsey - * * `GN` - Guinea - * * `GW` - Guinea-Bissau - * * `GY` - Guyana - * * `HT` - Haiti - * * `HM` - Heard Island and McDonald Islands - * * `VA` - Holy See - * * `HN` - Honduras - * * `HK` - Hong Kong - * * `HU` - Hungary - * * `IS` - Iceland - * * `IN` - India - * * `ID` - Indonesia - * * `IR` - Iran - * * `IQ` - Iraq - * * `IE` - Ireland - * * `IM` - Isle of Man - * * `IL` - Israel - * * `IT` - Italy - * * `JM` - Jamaica - * * `JP` - Japan - * * `JE` - Jersey - * * `JO` - Jordan - * * `KZ` - Kazakhstan - * * `KE` - Kenya - * * `KI` - Kiribati - * * `KW` - Kuwait - * * `KG` - Kyrgyzstan - * * `LA` - Laos - * * `LV` - Latvia - * * `LB` - Lebanon - * * `LS` - Lesotho - * * `LR` - Liberia - * * `LY` - Libya - * * `LI` - Liechtenstein - * * `LT` - Lithuania - * * `LU` - Luxembourg - * * `MO` - Macao - * * `MG` - Madagascar - * * `MW` - Malawi - * * `MY` - Malaysia - * * `MV` - Maldives - * * `ML` - Mali - * * `MT` - Malta - * * `MH` - Marshall Islands - * * `MQ` - Martinique - * * `MR` - Mauritania - * * `MU` - Mauritius - * * `YT` - Mayotte - * * `MX` - Mexico - * * `FM` - Micronesia (Federated States of) - * * `MD` - Moldova - * * `MC` - Monaco - * * `MN` - Mongolia - * * `ME` - Montenegro - * * `MS` - Montserrat - * * `MA` - Morocco - * * `MZ` - Mozambique - * * `MM` - Myanmar - * * `NA` - Namibia - * * `NR` - Nauru - * * `NP` - Nepal - * * `NL` - Netherlands - * * `NC` - New Caledonia - * * `NZ` - New Zealand - * * `NI` - Nicaragua - * * `NE` - Niger - * * `NG` - Nigeria - * * `NU` - Niue - * * `NF` - Norfolk Island - * * `KP` - North Korea - * * `MK` - North Macedonia - * * `MP` - Northern Mariana Islands - * * `NO` - Norway - * * `OM` - Oman - * * `PK` - Pakistan - * * `PW` - Palau - * * `PS` - Palestine, State of - * * `PA` - Panama - * * `PG` - Papua New Guinea - * * `PY` - Paraguay - * * `PE` - Peru - * * `PH` - Philippines - * * `PN` - Pitcairn - * * `PL` - Poland - * * `PT` - Portugal - * * `PR` - Puerto Rico - * * `QA` - Qatar - * * `RE` - Réunion - * * `RO` - Romania - * * `RU` - Russia - * * `RW` - Rwanda - * * `BL` - Saint Barthélemy - * * `SH` - Saint Helena, Ascension and Tristan da Cunha - * * `KN` - Saint Kitts and Nevis - * * `LC` - Saint Lucia - * * `MF` - Saint Martin (French part) - * * `PM` - Saint Pierre and Miquelon - * * `VC` - Saint Vincent and the Grenadines - * * `WS` - Samoa - * * `SM` - San Marino - * * `ST` - Sao Tome and Principe - * * `SA` - Saudi Arabia - * * `SN` - Senegal - * * `RS` - Serbia - * * `SC` - Seychelles - * * `SL` - Sierra Leone - * * `SG` - Singapore - * * `SX` - Sint Maarten (Dutch part) - * * `SK` - Slovakia - * * `SI` - Slovenia - * * `SB` - Solomon Islands - * * `SO` - Somalia - * * `ZA` - South Africa - * * `GS` - South Georgia and the South Sandwich Islands - * * `KR` - South Korea - * * `SS` - South Sudan - * * `ES` - Spain - * * `LK` - Sri Lanka - * * `SD` - Sudan - * * `SR` - Suriname - * * `SJ` - Svalbard and Jan Mayen - * * `SE` - Sweden - * * `CH` - Switzerland - * * `SY` - Syria - * * `TW` - Taiwan - * * `TJ` - Tajikistan - * * `TZ` - Tanzania - * * `TH` - Thailand - * * `TL` - Timor-Leste - * * `TG` - Togo - * * `TK` - Tokelau - * * `TO` - Tonga - * * `TT` - Trinidad and Tobago - * * `TN` - Tunisia - * * `TR` - Turkey - * * `TM` - Turkmenistan - * * `TC` - Turks and Caicos Islands - * * `TV` - Tuvalu - * * `UG` - Uganda - * * `UA` - Ukraine - * * `AE` - United Arab Emirates - * * `GB` - United Kingdom - * * `UM` - United States Minor Outlying Islands - * * `US` - United States of America - * * `UY` - Uruguay - * * `UZ` - Uzbekistan - * * `VU` - Vanuatu - * * `VE` - Venezuela - * * `VN` - Vietnam - * * `VG` - Virgin Islands (British) - * * `VI` - Virgin Islands (U.S.) - * * `WF` - Wallis and Futuna - * * `EH` - Western Sahara - * * `YE` - Yemen - * * `ZM` - Zambia - * * `ZW` - Zimbabwe - */ -export const CountryEnum = { - Af: "AF", - Ax: "AX", - Al: "AL", - Dz: "DZ", - As: "AS", - Ad: "AD", - Ao: "AO", - Ai: "AI", - Aq: "AQ", - Ag: "AG", - Ar: "AR", - Am: "AM", - Aw: "AW", - Au: "AU", - At: "AT", - Az: "AZ", - Bs: "BS", - Bh: "BH", - Bd: "BD", - Bb: "BB", - By: "BY", - Be: "BE", - Bz: "BZ", - Bj: "BJ", - Bm: "BM", - Bt: "BT", - Bo: "BO", - Bq: "BQ", - Ba: "BA", - Bw: "BW", - Bv: "BV", - Br: "BR", - Io: "IO", - Bn: "BN", - Bg: "BG", - Bf: "BF", - Bi: "BI", - Cv: "CV", - Kh: "KH", - Cm: "CM", - Ca: "CA", - Ky: "KY", - Cf: "CF", - Td: "TD", - Cl: "CL", - Cn: "CN", - Cx: "CX", - Cc: "CC", - Co: "CO", - Km: "KM", - Cg: "CG", - Cd: "CD", - Ck: "CK", - Cr: "CR", - Ci: "CI", - Hr: "HR", - Cu: "CU", - Cw: "CW", - Cy: "CY", - Cz: "CZ", - Dk: "DK", - Dj: "DJ", - Dm: "DM", - Do: "DO", - Ec: "EC", - Eg: "EG", - Sv: "SV", - Gq: "GQ", - Er: "ER", - Ee: "EE", - Sz: "SZ", - Et: "ET", - Fk: "FK", - Fo: "FO", - Fj: "FJ", - Fi: "FI", - Fr: "FR", - Gf: "GF", - Pf: "PF", - Tf: "TF", - Ga: "GA", - Gm: "GM", - Ge: "GE", - De: "DE", - Gh: "GH", - Gi: "GI", - Gr: "GR", - Gl: "GL", - Gd: "GD", - Gp: "GP", - Gu: "GU", - Gt: "GT", - Gg: "GG", - Gn: "GN", - Gw: "GW", - Gy: "GY", - Ht: "HT", - Hm: "HM", - Va: "VA", - Hn: "HN", - Hk: "HK", - Hu: "HU", - Is: "IS", - In: "IN", - Id: "ID", - Ir: "IR", - Iq: "IQ", - Ie: "IE", - Im: "IM", - Il: "IL", - It: "IT", - Jm: "JM", - Jp: "JP", - Je: "JE", - Jo: "JO", - Kz: "KZ", - Ke: "KE", - Ki: "KI", - Kw: "KW", - Kg: "KG", - La: "LA", - Lv: "LV", - Lb: "LB", - Ls: "LS", - Lr: "LR", - Ly: "LY", - Li: "LI", - Lt: "LT", - Lu: "LU", - Mo: "MO", - Mg: "MG", - Mw: "MW", - My: "MY", - Mv: "MV", - Ml: "ML", - Mt: "MT", - Mh: "MH", - Mq: "MQ", - Mr: "MR", - Mu: "MU", - Yt: "YT", - Mx: "MX", - Fm: "FM", - Md: "MD", - Mc: "MC", - Mn: "MN", - Me: "ME", - Ms: "MS", - Ma: "MA", - Mz: "MZ", - Mm: "MM", - Na: "NA", - Nr: "NR", - Np: "NP", - Nl: "NL", - Nc: "NC", - Nz: "NZ", - Ni: "NI", - Ne: "NE", - Ng: "NG", - Nu: "NU", - Nf: "NF", - Kp: "KP", - Mk: "MK", - Mp: "MP", - No: "NO", - Om: "OM", - Pk: "PK", - Pw: "PW", - Ps: "PS", - Pa: "PA", - Pg: "PG", - Py: "PY", - Pe: "PE", - Ph: "PH", - Pn: "PN", - Pl: "PL", - Pt: "PT", - Pr: "PR", - Qa: "QA", - Re: "RE", - Ro: "RO", - Ru: "RU", - Rw: "RW", - Bl: "BL", - Sh: "SH", - Kn: "KN", - Lc: "LC", - Mf: "MF", - Pm: "PM", - Vc: "VC", - Ws: "WS", - Sm: "SM", - St: "ST", - Sa: "SA", - Sn: "SN", - Rs: "RS", - Sc: "SC", - Sl: "SL", - Sg: "SG", - Sx: "SX", - Sk: "SK", - Si: "SI", - Sb: "SB", - So: "SO", - Za: "ZA", - Gs: "GS", - Kr: "KR", - Ss: "SS", - Es: "ES", - Lk: "LK", - Sd: "SD", - Sr: "SR", - Sj: "SJ", - Se: "SE", - Ch: "CH", - Sy: "SY", - Tw: "TW", - Tj: "TJ", - Tz: "TZ", - Th: "TH", - Tl: "TL", - Tg: "TG", - Tk: "TK", - To: "TO", - Tt: "TT", - Tn: "TN", - Tr: "TR", - Tm: "TM", - Tc: "TC", - Tv: "TV", - Ug: "UG", - Ua: "UA", - Ae: "AE", - Gb: "GB", - Um: "UM", - Us: "US", - Uy: "UY", - Uz: "UZ", - Vu: "VU", - Ve: "VE", - Vn: "VN", - Vg: "VG", - Vi: "VI", - Wf: "WF", - Eh: "EH", - Ye: "YE", - Zm: "ZM", - Zw: "ZW", -} as const; -export type CountryEnum = (typeof CountryEnum)[keyof typeof CountryEnum]; diff --git a/src/api/resources/accounting/types/CreditNote.ts b/src/api/resources/accounting/types/CreditNote.ts deleted file mode 100644 index 9acb522e2..000000000 --- a/src/api/resources/accounting/types/CreditNote.ts +++ /dev/null @@ -1,374 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The CreditNote Object - * ### Description - * A `CreditNote` is transaction issued to a customer, indicating a reduction or cancellation of the amount owed by the customer. It is most generally used as an adjustment note used to rectify errors, returns, or overpayments related to a sales transaction. A `CreditNote` can be applied to *Accounts Receivable* Invoices to decrease the overall amount of the Invoice. - * - * ### Usage Example - * Fetch from the `LIST CreditNotes` endpoint and view a company's credit notes. - */ -export interface CreditNote { - id?: string; - /** The third-party API ID of the matching object. */ - remoteId?: string; - /** The datetime that this object was created by Merge. */ - createdAt?: Date; - /** The datetime that this object was modified by Merge. */ - modifiedAt?: Date; - /** The credit note's transaction date. */ - transactionDate?: Date; - /** - * The credit note's status. - * - * * `SUBMITTED` - SUBMITTED - * * `AUTHORIZED` - AUTHORIZED - * * `PAID` - PAID - */ - status?: Merge.accounting.CreditNoteStatus; - /** The credit note's number. */ - number?: string; - /** The credit note's contact. */ - contact?: Merge.accounting.CreditNoteContact; - /** The company the credit note belongs to. */ - company?: Merge.accounting.CreditNoteCompany; - /** The credit note's exchange rate. */ - exchangeRate?: string; - /** The credit note's total amount. */ - totalAmount?: number; - /** The amount of value remaining in the credit note that the customer can use. */ - remainingCredit?: number; - /** If the transaction is inclusive or exclusive of tax. `True` if inclusive, `False` if exclusive. */ - inclusiveOfTax?: boolean; - lineItems?: Merge.accounting.CreditNoteLineItem[]; - trackingCategories?: (Merge.accounting.CreditNoteTrackingCategoriesItem | undefined)[]; - /** - * The credit note's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ - currency?: Merge.accounting.CreditNoteCurrency; - /** When the third party's credit note was created. */ - remoteCreatedAt?: Date; - /** When the third party's credit note was updated. */ - remoteUpdatedAt?: Date; - /** Array of `Payment` object IDs */ - payments?: (Merge.accounting.CreditNotePaymentsItem | undefined)[]; - /** A list of the Payment Applied to Lines common models related to a given Invoice, Credit Note, or Journal Entry. */ - appliedPayments?: (Merge.accounting.CreditNoteAppliedPaymentsItem | undefined)[]; - /** The accounting period that the CreditNote was generated in. */ - accountingPeriod?: Merge.accounting.CreditNoteAccountingPeriod; - /** A list of the CreditNote Applied to Lines common models related to a given Credit Note */ - appliedToLines?: Merge.accounting.CreditNoteApplyLineForCreditNote[]; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - remoteWasDeleted?: boolean; - fieldMappings?: Record; - remoteData?: Merge.accounting.RemoteData[]; -} diff --git a/src/api/resources/accounting/types/CreditNoteAccountingPeriod.ts b/src/api/resources/accounting/types/CreditNoteAccountingPeriod.ts deleted file mode 100644 index bfb3f02a2..000000000 --- a/src/api/resources/accounting/types/CreditNoteAccountingPeriod.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The accounting period that the CreditNote was generated in. - */ -export type CreditNoteAccountingPeriod = string | Merge.accounting.AccountingPeriod; diff --git a/src/api/resources/accounting/types/CreditNoteAppliedPaymentsItem.ts b/src/api/resources/accounting/types/CreditNoteAppliedPaymentsItem.ts deleted file mode 100644 index 54511ff80..000000000 --- a/src/api/resources/accounting/types/CreditNoteAppliedPaymentsItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type CreditNoteAppliedPaymentsItem = string | Merge.accounting.PaymentLineItem; diff --git a/src/api/resources/accounting/types/CreditNoteApplyLineForCreditNote.ts b/src/api/resources/accounting/types/CreditNoteApplyLineForCreditNote.ts deleted file mode 100644 index c3c8cc9c2..000000000 --- a/src/api/resources/accounting/types/CreditNoteApplyLineForCreditNote.ts +++ /dev/null @@ -1,27 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The CreditNoteApplyLine Object - * ### Description - * The `CreditNoteApplyLine` is attached to the CreditNote model. - * - * ### Usage Example - * Fetch from the `GET CreditNote` endpoint and view the invoice's applied to lines. - */ -export interface CreditNoteApplyLineForCreditNote { - /** The third-party API ID of the matching object. */ - remoteId?: string; - /** The datetime that this object was created by Merge. */ - createdAt?: Date; - /** The datetime that this object was modified by Merge. */ - modifiedAt?: Date; - invoice?: Merge.accounting.CreditNoteApplyLineForCreditNoteInvoice; - /** Date that the credit note is applied to the invoice. */ - appliedDate?: Date; - /** The amount of the Credit Note applied to the invoice. */ - appliedAmount?: string; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - remoteWasDeleted?: boolean; -} diff --git a/src/api/resources/accounting/types/CreditNoteApplyLineForCreditNoteInvoice.ts b/src/api/resources/accounting/types/CreditNoteApplyLineForCreditNoteInvoice.ts deleted file mode 100644 index 0b93a7d40..000000000 --- a/src/api/resources/accounting/types/CreditNoteApplyLineForCreditNoteInvoice.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type CreditNoteApplyLineForCreditNoteInvoice = string | Merge.accounting.Invoice; diff --git a/src/api/resources/accounting/types/CreditNoteApplyLineForCreditNoteRequest.ts b/src/api/resources/accounting/types/CreditNoteApplyLineForCreditNoteRequest.ts deleted file mode 100644 index d11cda366..000000000 --- a/src/api/resources/accounting/types/CreditNoteApplyLineForCreditNoteRequest.ts +++ /dev/null @@ -1,23 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The CreditNoteApplyLine Object - * ### Description - * The `CreditNoteApplyLine` is attached to the CreditNote model. - * - * ### Usage Example - * Fetch from the `GET CreditNote` endpoint and view the invoice's applied to lines. - */ -export interface CreditNoteApplyLineForCreditNoteRequest { - /** The third-party API ID of the matching object. */ - remoteId?: string; - invoice?: Merge.accounting.CreditNoteApplyLineForCreditNoteRequestInvoice; - /** Date that the credit note is applied to the invoice. */ - appliedDate?: Date; - /** The amount of the Credit Note applied to the invoice. */ - appliedAmount?: string; - integrationParams?: Record; - linkedAccountParams?: Record; -} diff --git a/src/api/resources/accounting/types/CreditNoteApplyLineForCreditNoteRequestInvoice.ts b/src/api/resources/accounting/types/CreditNoteApplyLineForCreditNoteRequestInvoice.ts deleted file mode 100644 index 9017ebbe2..000000000 --- a/src/api/resources/accounting/types/CreditNoteApplyLineForCreditNoteRequestInvoice.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type CreditNoteApplyLineForCreditNoteRequestInvoice = string | Merge.accounting.Invoice; diff --git a/src/api/resources/accounting/types/CreditNoteApplyLineForInvoice.ts b/src/api/resources/accounting/types/CreditNoteApplyLineForInvoice.ts deleted file mode 100644 index e82e588a3..000000000 --- a/src/api/resources/accounting/types/CreditNoteApplyLineForInvoice.ts +++ /dev/null @@ -1,27 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The CreditNoteApplyLine Object - * ### Description - * The `CreditNoteApplyLine` is attached to the CreditNote model. - * - * ### Usage Example - * Fetch from the `GET CreditNote` endpoint and view the invoice's applied to lines. - */ -export interface CreditNoteApplyLineForInvoice { - /** The third-party API ID of the matching object. */ - remoteId?: string; - /** The datetime that this object was created by Merge. */ - createdAt?: Date; - /** The datetime that this object was modified by Merge. */ - modifiedAt?: Date; - creditNote?: Merge.accounting.CreditNoteApplyLineForInvoiceCreditNote; - /** Date that the credit note is applied to the invoice. */ - appliedDate?: Date; - /** The amount of the Credit Note applied to the invoice. */ - appliedAmount?: string; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - remoteWasDeleted?: boolean; -} diff --git a/src/api/resources/accounting/types/CreditNoteApplyLineForInvoiceCreditNote.ts b/src/api/resources/accounting/types/CreditNoteApplyLineForInvoiceCreditNote.ts deleted file mode 100644 index d7a4a280f..000000000 --- a/src/api/resources/accounting/types/CreditNoteApplyLineForInvoiceCreditNote.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type CreditNoteApplyLineForInvoiceCreditNote = string | Merge.accounting.CreditNote; diff --git a/src/api/resources/accounting/types/CreditNoteCompany.ts b/src/api/resources/accounting/types/CreditNoteCompany.ts deleted file mode 100644 index 452ffaa15..000000000 --- a/src/api/resources/accounting/types/CreditNoteCompany.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The company the credit note belongs to. - */ -export type CreditNoteCompany = string | Merge.accounting.CompanyInfo; diff --git a/src/api/resources/accounting/types/CreditNoteContact.ts b/src/api/resources/accounting/types/CreditNoteContact.ts deleted file mode 100644 index f2c443ebb..000000000 --- a/src/api/resources/accounting/types/CreditNoteContact.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The credit note's contact. - */ -export type CreditNoteContact = string | Merge.accounting.Contact; diff --git a/src/api/resources/accounting/types/CreditNoteCurrency.ts b/src/api/resources/accounting/types/CreditNoteCurrency.ts deleted file mode 100644 index b180b2f41..000000000 --- a/src/api/resources/accounting/types/CreditNoteCurrency.ts +++ /dev/null @@ -1,315 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The credit note's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ -export type CreditNoteCurrency = Merge.accounting.TransactionCurrencyEnum | string; diff --git a/src/api/resources/accounting/types/CreditNoteLineItem.ts b/src/api/resources/accounting/types/CreditNoteLineItem.ts deleted file mode 100644 index b47ac78d1..000000000 --- a/src/api/resources/accounting/types/CreditNoteLineItem.ts +++ /dev/null @@ -1,49 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The CreditNoteLineItem Object - * ### Description - * The `CreditNoteLineItem` object is used to represent a credit note's line items. - * - * ### Usage Example - * Fetch from the `GET CreditNote` endpoint and view the credit note's line items. - */ -export interface CreditNoteLineItem { - id?: string; - /** The third-party API ID of the matching object. */ - remoteId?: string; - /** The datetime that this object was created by Merge. */ - createdAt?: Date; - /** The datetime that this object was modified by Merge. */ - modifiedAt?: Date; - item?: Merge.accounting.CreditNoteLineItemItem; - /** The credit note line item's name. */ - name?: string; - /** The description of the item that is owed. */ - description?: string; - /** The credit note line item's quantity. */ - quantity?: string; - /** The credit note line item's memo. */ - memo?: string; - /** The credit note line item's unit price. */ - unitPrice?: string; - /** The tax rate that applies to this line item. */ - taxRate?: string; - /** The credit note line item's total. */ - totalLineAmount?: string; - /** The credit note line item's associated tracking category. */ - trackingCategory?: string; - /** The credit note line item's associated tracking categories. */ - trackingCategories?: (string | undefined)[]; - /** The credit note line item's account. */ - account?: string; - /** The company the credit note belongs to. */ - company?: Merge.accounting.CreditNoteLineItemCompany; - /** The credit note's contact. */ - contact?: Merge.accounting.CreditNoteLineItemContact; - project?: Merge.accounting.CreditNoteLineItemProject; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - remoteWasDeleted?: boolean; -} diff --git a/src/api/resources/accounting/types/CreditNoteLineItemCompany.ts b/src/api/resources/accounting/types/CreditNoteLineItemCompany.ts deleted file mode 100644 index 7b63282c8..000000000 --- a/src/api/resources/accounting/types/CreditNoteLineItemCompany.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The company the credit note belongs to. - */ -export type CreditNoteLineItemCompany = string | Merge.accounting.CompanyInfo; diff --git a/src/api/resources/accounting/types/CreditNoteLineItemContact.ts b/src/api/resources/accounting/types/CreditNoteLineItemContact.ts deleted file mode 100644 index 4a14ae4cd..000000000 --- a/src/api/resources/accounting/types/CreditNoteLineItemContact.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The credit note's contact. - */ -export type CreditNoteLineItemContact = string | Merge.accounting.Contact; diff --git a/src/api/resources/accounting/types/CreditNoteLineItemItem.ts b/src/api/resources/accounting/types/CreditNoteLineItemItem.ts deleted file mode 100644 index ef7684b1a..000000000 --- a/src/api/resources/accounting/types/CreditNoteLineItemItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type CreditNoteLineItemItem = string | Merge.accounting.Item; diff --git a/src/api/resources/accounting/types/CreditNoteLineItemProject.ts b/src/api/resources/accounting/types/CreditNoteLineItemProject.ts deleted file mode 100644 index 9cd08ca3e..000000000 --- a/src/api/resources/accounting/types/CreditNoteLineItemProject.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type CreditNoteLineItemProject = string | Merge.accounting.Project; diff --git a/src/api/resources/accounting/types/CreditNoteLineItemRequest.ts b/src/api/resources/accounting/types/CreditNoteLineItemRequest.ts deleted file mode 100644 index e413eef6d..000000000 --- a/src/api/resources/accounting/types/CreditNoteLineItemRequest.ts +++ /dev/null @@ -1,44 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The CreditNoteLineItem Object - * ### Description - * The `CreditNoteLineItem` object is used to represent a credit note's line items. - * - * ### Usage Example - * Fetch from the `GET CreditNote` endpoint and view the credit note's line items. - */ -export interface CreditNoteLineItemRequest { - /** The third-party API ID of the matching object. */ - remoteId?: string; - item?: Merge.accounting.CreditNoteLineItemRequestItem; - /** The credit note line item's name. */ - name?: string; - /** The description of the item that is owed. */ - description?: string; - /** The credit note line item's quantity. */ - quantity?: string; - /** The credit note line item's memo. */ - memo?: string; - /** The credit note line item's unit price. */ - unitPrice?: string; - /** The tax rate that applies to this line item. */ - taxRate?: string; - /** The credit note line item's total. */ - totalLineAmount?: string; - /** The credit note line item's associated tracking category. */ - trackingCategory?: string; - /** The credit note line item's associated tracking categories. */ - trackingCategories?: (string | undefined)[]; - /** The credit note line item's account. */ - account?: string; - /** The company the credit note belongs to. */ - company?: Merge.accounting.CreditNoteLineItemRequestCompany; - /** The credit note's contact. */ - contact?: Merge.accounting.CreditNoteLineItemRequestContact; - project?: Merge.accounting.CreditNoteLineItemRequestProject; - integrationParams?: Record; - linkedAccountParams?: Record; -} diff --git a/src/api/resources/accounting/types/CreditNoteLineItemRequestCompany.ts b/src/api/resources/accounting/types/CreditNoteLineItemRequestCompany.ts deleted file mode 100644 index 5505a79b7..000000000 --- a/src/api/resources/accounting/types/CreditNoteLineItemRequestCompany.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The company the credit note belongs to. - */ -export type CreditNoteLineItemRequestCompany = string | Merge.accounting.CompanyInfo; diff --git a/src/api/resources/accounting/types/CreditNoteLineItemRequestContact.ts b/src/api/resources/accounting/types/CreditNoteLineItemRequestContact.ts deleted file mode 100644 index 27340dad3..000000000 --- a/src/api/resources/accounting/types/CreditNoteLineItemRequestContact.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The credit note's contact. - */ -export type CreditNoteLineItemRequestContact = string | Merge.accounting.Contact; diff --git a/src/api/resources/accounting/types/CreditNoteLineItemRequestItem.ts b/src/api/resources/accounting/types/CreditNoteLineItemRequestItem.ts deleted file mode 100644 index fab22e093..000000000 --- a/src/api/resources/accounting/types/CreditNoteLineItemRequestItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type CreditNoteLineItemRequestItem = string | Merge.accounting.Item; diff --git a/src/api/resources/accounting/types/CreditNoteLineItemRequestProject.ts b/src/api/resources/accounting/types/CreditNoteLineItemRequestProject.ts deleted file mode 100644 index a046646b9..000000000 --- a/src/api/resources/accounting/types/CreditNoteLineItemRequestProject.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type CreditNoteLineItemRequestProject = string | Merge.accounting.Contact; diff --git a/src/api/resources/accounting/types/CreditNotePaymentsItem.ts b/src/api/resources/accounting/types/CreditNotePaymentsItem.ts deleted file mode 100644 index 00aac28ab..000000000 --- a/src/api/resources/accounting/types/CreditNotePaymentsItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type CreditNotePaymentsItem = string | Merge.accounting.Payment; diff --git a/src/api/resources/accounting/types/CreditNoteRequest.ts b/src/api/resources/accounting/types/CreditNoteRequest.ts deleted file mode 100644 index 059a17b07..000000000 --- a/src/api/resources/accounting/types/CreditNoteRequest.ts +++ /dev/null @@ -1,361 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The CreditNote Object - * ### Description - * A `CreditNote` is transaction issued to a customer, indicating a reduction or cancellation of the amount owed by the customer. It is most generally used as an adjustment note used to rectify errors, returns, or overpayments related to a sales transaction. A `CreditNote` can be applied to *Accounts Receivable* Invoices to decrease the overall amount of the Invoice. - * - * ### Usage Example - * Fetch from the `LIST CreditNotes` endpoint and view a company's credit notes. - */ -export interface CreditNoteRequest { - /** The credit note's transaction date. */ - transactionDate?: Date; - /** - * The credit note's status. - * - * * `SUBMITTED` - SUBMITTED - * * `AUTHORIZED` - AUTHORIZED - * * `PAID` - PAID - */ - status?: Merge.accounting.CreditNoteRequestStatus; - /** The credit note's number. */ - number?: string; - /** The credit note's contact. */ - contact?: Merge.accounting.CreditNoteRequestContact; - /** The company the credit note belongs to. */ - company?: Merge.accounting.CreditNoteRequestCompany; - /** The credit note's exchange rate. */ - exchangeRate?: string; - /** The credit note's total amount. */ - totalAmount?: number; - /** The amount of value remaining in the credit note that the customer can use. */ - remainingCredit?: number; - /** If the transaction is inclusive or exclusive of tax. `True` if inclusive, `False` if exclusive. */ - inclusiveOfTax?: boolean; - lineItems?: Merge.accounting.CreditNoteRequestLineItemsItem[]; - trackingCategories?: (Merge.accounting.CreditNoteRequestTrackingCategoriesItem | undefined)[]; - /** - * The credit note's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ - currency?: Merge.accounting.CreditNoteRequestCurrency; - /** Array of `Payment` object IDs */ - payments?: (Merge.accounting.CreditNoteRequestPaymentsItem | undefined)[]; - /** A list of the Payment Applied to Lines common models related to a given Invoice, Credit Note, or Journal Entry. */ - appliedPayments?: (Merge.accounting.CreditNoteRequestAppliedPaymentsItem | undefined)[]; - /** The accounting period that the CreditNote was generated in. */ - accountingPeriod?: Merge.accounting.CreditNoteRequestAccountingPeriod; - /** A list of the CreditNote Applied to Lines common models related to a given Credit Note */ - appliedToLines?: Merge.accounting.CreditNoteApplyLineForCreditNoteRequest[]; - integrationParams?: Record; - linkedAccountParams?: Record; -} diff --git a/src/api/resources/accounting/types/CreditNoteRequestAccountingPeriod.ts b/src/api/resources/accounting/types/CreditNoteRequestAccountingPeriod.ts deleted file mode 100644 index c1cf3defc..000000000 --- a/src/api/resources/accounting/types/CreditNoteRequestAccountingPeriod.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The accounting period that the CreditNote was generated in. - */ -export type CreditNoteRequestAccountingPeriod = string | Merge.accounting.AccountingPeriod; diff --git a/src/api/resources/accounting/types/CreditNoteRequestAppliedPaymentsItem.ts b/src/api/resources/accounting/types/CreditNoteRequestAppliedPaymentsItem.ts deleted file mode 100644 index b76318666..000000000 --- a/src/api/resources/accounting/types/CreditNoteRequestAppliedPaymentsItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type CreditNoteRequestAppliedPaymentsItem = string | Merge.accounting.PaymentLineItem; diff --git a/src/api/resources/accounting/types/CreditNoteRequestCompany.ts b/src/api/resources/accounting/types/CreditNoteRequestCompany.ts deleted file mode 100644 index 0831b6155..000000000 --- a/src/api/resources/accounting/types/CreditNoteRequestCompany.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The company the credit note belongs to. - */ -export type CreditNoteRequestCompany = string | Merge.accounting.CompanyInfo; diff --git a/src/api/resources/accounting/types/CreditNoteRequestContact.ts b/src/api/resources/accounting/types/CreditNoteRequestContact.ts deleted file mode 100644 index dee348da6..000000000 --- a/src/api/resources/accounting/types/CreditNoteRequestContact.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The credit note's contact. - */ -export type CreditNoteRequestContact = string | Merge.accounting.Contact; diff --git a/src/api/resources/accounting/types/CreditNoteRequestCurrency.ts b/src/api/resources/accounting/types/CreditNoteRequestCurrency.ts deleted file mode 100644 index 2e0ce3f74..000000000 --- a/src/api/resources/accounting/types/CreditNoteRequestCurrency.ts +++ /dev/null @@ -1,315 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The credit note's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ -export type CreditNoteRequestCurrency = Merge.accounting.TransactionCurrencyEnum | string; diff --git a/src/api/resources/accounting/types/CreditNoteRequestLineItemsItem.ts b/src/api/resources/accounting/types/CreditNoteRequestLineItemsItem.ts deleted file mode 100644 index 1cbad2fd5..000000000 --- a/src/api/resources/accounting/types/CreditNoteRequestLineItemsItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type CreditNoteRequestLineItemsItem = string | Merge.accounting.CreditNoteLineItemRequest; diff --git a/src/api/resources/accounting/types/CreditNoteRequestPaymentsItem.ts b/src/api/resources/accounting/types/CreditNoteRequestPaymentsItem.ts deleted file mode 100644 index 323043b1b..000000000 --- a/src/api/resources/accounting/types/CreditNoteRequestPaymentsItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type CreditNoteRequestPaymentsItem = string | Merge.accounting.Payment; diff --git a/src/api/resources/accounting/types/CreditNoteRequestStatus.ts b/src/api/resources/accounting/types/CreditNoteRequestStatus.ts deleted file mode 100644 index 83fa2e239..000000000 --- a/src/api/resources/accounting/types/CreditNoteRequestStatus.ts +++ /dev/null @@ -1,12 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The credit note's status. - * - * * `SUBMITTED` - SUBMITTED - * * `AUTHORIZED` - AUTHORIZED - * * `PAID` - PAID - */ -export type CreditNoteRequestStatus = Merge.accounting.CreditNoteStatusEnum | string; diff --git a/src/api/resources/accounting/types/CreditNoteRequestTrackingCategoriesItem.ts b/src/api/resources/accounting/types/CreditNoteRequestTrackingCategoriesItem.ts deleted file mode 100644 index 3719da474..000000000 --- a/src/api/resources/accounting/types/CreditNoteRequestTrackingCategoriesItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type CreditNoteRequestTrackingCategoriesItem = string | Merge.accounting.TrackingCategory; diff --git a/src/api/resources/accounting/types/CreditNoteResponse.ts b/src/api/resources/accounting/types/CreditNoteResponse.ts deleted file mode 100644 index e984315dd..000000000 --- a/src/api/resources/accounting/types/CreditNoteResponse.ts +++ /dev/null @@ -1,10 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface CreditNoteResponse { - model: Merge.accounting.CreditNote; - warnings: Merge.accounting.WarningValidationProblem[]; - errors: Merge.accounting.ErrorValidationProblem[]; - logs?: Merge.accounting.DebugModeLog[]; -} diff --git a/src/api/resources/accounting/types/CreditNoteStatus.ts b/src/api/resources/accounting/types/CreditNoteStatus.ts deleted file mode 100644 index 28be874e4..000000000 --- a/src/api/resources/accounting/types/CreditNoteStatus.ts +++ /dev/null @@ -1,12 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The credit note's status. - * - * * `SUBMITTED` - SUBMITTED - * * `AUTHORIZED` - AUTHORIZED - * * `PAID` - PAID - */ -export type CreditNoteStatus = Merge.accounting.CreditNoteStatusEnum | string; diff --git a/src/api/resources/accounting/types/CreditNoteStatusEnum.ts b/src/api/resources/accounting/types/CreditNoteStatusEnum.ts deleted file mode 100644 index f1190b7a5..000000000 --- a/src/api/resources/accounting/types/CreditNoteStatusEnum.ts +++ /dev/null @@ -1,13 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * * `SUBMITTED` - SUBMITTED - * * `AUTHORIZED` - AUTHORIZED - * * `PAID` - PAID - */ -export const CreditNoteStatusEnum = { - Submitted: "SUBMITTED", - Authorized: "AUTHORIZED", - Paid: "PAID", -} as const; -export type CreditNoteStatusEnum = (typeof CreditNoteStatusEnum)[keyof typeof CreditNoteStatusEnum]; diff --git a/src/api/resources/accounting/types/CreditNoteTrackingCategoriesItem.ts b/src/api/resources/accounting/types/CreditNoteTrackingCategoriesItem.ts deleted file mode 100644 index 24401898b..000000000 --- a/src/api/resources/accounting/types/CreditNoteTrackingCategoriesItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type CreditNoteTrackingCategoriesItem = string | Merge.accounting.TrackingCategory; diff --git a/src/api/resources/accounting/types/CreditOrDebitEnum.ts b/src/api/resources/accounting/types/CreditOrDebitEnum.ts deleted file mode 100644 index 884781c64..000000000 --- a/src/api/resources/accounting/types/CreditOrDebitEnum.ts +++ /dev/null @@ -1,11 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * * `CREDIT` - CREDIT - * * `DEBIT` - DEBIT - */ -export const CreditOrDebitEnum = { - Credit: "CREDIT", - Debit: "DEBIT", -} as const; -export type CreditOrDebitEnum = (typeof CreditOrDebitEnum)[keyof typeof CreditOrDebitEnum]; diff --git a/src/api/resources/accounting/types/DataPassthroughRequest.ts b/src/api/resources/accounting/types/DataPassthroughRequest.ts deleted file mode 100644 index c4883175a..000000000 --- a/src/api/resources/accounting/types/DataPassthroughRequest.ts +++ /dev/null @@ -1,28 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The DataPassthrough Object - * ### Description - * The `DataPassthrough` object is used to send information to an otherwise-unsupported third-party endpoint. - * - * ### Usage Example - * Create a `DataPassthrough` to get team hierarchies from your Rippling integration. - */ -export interface DataPassthroughRequest { - method: Merge.accounting.DataPassthroughRequestMethod; - /** The path of the request in the third party's platform. */ - path: string; - /** An optional override of the third party's base url for the request. */ - baseUrlOverride?: string; - /** The data with the request. You must include a `request_format` parameter matching the data's format */ - data?: string; - /** Pass an array of `MultipartFormField` objects in here instead of using the `data` param if `request_format` is set to `MULTIPART`. */ - multipartFormData?: Merge.accounting.MultipartFormFieldRequest[]; - /** The headers to use for the request (Merge will handle the account's authorization headers). `Content-Type` header is required for passthrough. Choose content type corresponding to expected format of receiving server. */ - headers?: Record; - requestFormat?: Merge.accounting.RequestFormatEnum; - /** Optional. If true, the response will always be an object of the form `{"type": T, "value": ...}` where `T` will be one of `string, boolean, number, null, array, object`. */ - normalizeResponse?: boolean; -} diff --git a/src/api/resources/accounting/types/DataPassthroughRequestMethod.ts b/src/api/resources/accounting/types/DataPassthroughRequestMethod.ts deleted file mode 100644 index 1c2fc3cad..000000000 --- a/src/api/resources/accounting/types/DataPassthroughRequestMethod.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type DataPassthroughRequestMethod = Merge.accounting.MethodEnum | string; diff --git a/src/api/resources/accounting/types/DebugModeLog.ts b/src/api/resources/accounting/types/DebugModeLog.ts deleted file mode 100644 index ab62d7a01..000000000 --- a/src/api/resources/accounting/types/DebugModeLog.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface DebugModeLog { - logId: string; - dashboardView: string; - logSummary: Merge.accounting.DebugModelLogSummary; -} diff --git a/src/api/resources/accounting/types/DebugModelLogSummary.ts b/src/api/resources/accounting/types/DebugModelLogSummary.ts deleted file mode 100644 index ffce707e3..000000000 --- a/src/api/resources/accounting/types/DebugModelLogSummary.ts +++ /dev/null @@ -1,7 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export interface DebugModelLogSummary { - url: string; - method: string; - statusCode: number; -} diff --git a/src/api/resources/accounting/types/Employee.ts b/src/api/resources/accounting/types/Employee.ts deleted file mode 100644 index 45a079101..000000000 --- a/src/api/resources/accounting/types/Employee.ts +++ /dev/null @@ -1,46 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The Employee Object - * ### Description - * An `Employee` is an individual who works for the company of the linked account. The `Employee` model contains both contractors and full time employees. - * * An `Employee` is a contractor if `is_contractor` property is `True` - * * An `Employee` is a full time employee if `is_contractor` property is `False` - * - * ### Usage Example - * Fetch from the `LIST Employees` endpoint and view a company's employees. - */ -export interface Employee { - id?: string; - /** The third-party API ID of the matching object. */ - remoteId?: string; - /** The datetime that this object was created by Merge. */ - createdAt?: Date; - /** The datetime that this object was modified by Merge. */ - modifiedAt?: Date; - /** The employee's first name. */ - firstName?: string; - /** The employee's last name. */ - lastName?: string; - /** `True` if the employee is a contractor, `False` if not. */ - isContractor?: boolean; - /** The employee's internal identification number. */ - employeeNumber?: string; - /** The employee's email address. */ - emailAddress?: string; - /** The subsidiary that the employee belongs to. */ - company?: Merge.accounting.EmployeeCompany; - /** - * The employee's status in the accounting system. - * - * * `ACTIVE` - ACTIVE - * * `INACTIVE` - INACTIVE - */ - status: Merge.accounting.EmployeeStatus; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - remoteWasDeleted?: boolean; - fieldMappings?: Record; - remoteData?: Merge.accounting.RemoteData[]; -} diff --git a/src/api/resources/accounting/types/EmployeeCompany.ts b/src/api/resources/accounting/types/EmployeeCompany.ts deleted file mode 100644 index ab9801e69..000000000 --- a/src/api/resources/accounting/types/EmployeeCompany.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The subsidiary that the employee belongs to. - */ -export type EmployeeCompany = string | Merge.accounting.CompanyInfo; diff --git a/src/api/resources/accounting/types/EmployeeStatus.ts b/src/api/resources/accounting/types/EmployeeStatus.ts deleted file mode 100644 index 9820375e3..000000000 --- a/src/api/resources/accounting/types/EmployeeStatus.ts +++ /dev/null @@ -1,11 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The employee's status in the accounting system. - * - * * `ACTIVE` - ACTIVE - * * `INACTIVE` - INACTIVE - */ -export type EmployeeStatus = Merge.accounting.Status895Enum | string; diff --git a/src/api/resources/accounting/types/EnabledActionsEnum.ts b/src/api/resources/accounting/types/EnabledActionsEnum.ts deleted file mode 100644 index f6ce6a343..000000000 --- a/src/api/resources/accounting/types/EnabledActionsEnum.ts +++ /dev/null @@ -1,11 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * * `READ` - READ - * * `WRITE` - WRITE - */ -export const EnabledActionsEnum = { - Read: "READ", - Write: "WRITE", -} as const; -export type EnabledActionsEnum = (typeof EnabledActionsEnum)[keyof typeof EnabledActionsEnum]; diff --git a/src/api/resources/accounting/types/EncodingEnum.ts b/src/api/resources/accounting/types/EncodingEnum.ts deleted file mode 100644 index 538e90395..000000000 --- a/src/api/resources/accounting/types/EncodingEnum.ts +++ /dev/null @@ -1,13 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * * `RAW` - RAW - * * `BASE64` - BASE64 - * * `GZIP_BASE64` - GZIP_BASE64 - */ -export const EncodingEnum = { - Raw: "RAW", - Base64: "BASE64", - GzipBase64: "GZIP_BASE64", -} as const; -export type EncodingEnum = (typeof EncodingEnum)[keyof typeof EncodingEnum]; diff --git a/src/api/resources/accounting/types/ErrorValidationProblem.ts b/src/api/resources/accounting/types/ErrorValidationProblem.ts deleted file mode 100644 index 46b6e8cd2..000000000 --- a/src/api/resources/accounting/types/ErrorValidationProblem.ts +++ /dev/null @@ -1,10 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface ErrorValidationProblem { - source?: Merge.accounting.ValidationProblemSource; - title: string; - detail: string; - problemType: string; -} diff --git a/src/api/resources/accounting/types/EventTypeEnum.ts b/src/api/resources/accounting/types/EventTypeEnum.ts deleted file mode 100644 index 4e8aee7f7..000000000 --- a/src/api/resources/accounting/types/EventTypeEnum.ts +++ /dev/null @@ -1,93 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * * `CREATED_REMOTE_PRODUCTION_API_KEY` - CREATED_REMOTE_PRODUCTION_API_KEY - * * `DELETED_REMOTE_PRODUCTION_API_KEY` - DELETED_REMOTE_PRODUCTION_API_KEY - * * `CREATED_TEST_API_KEY` - CREATED_TEST_API_KEY - * * `DELETED_TEST_API_KEY` - DELETED_TEST_API_KEY - * * `REGENERATED_PRODUCTION_API_KEY` - REGENERATED_PRODUCTION_API_KEY - * * `REGENERATED_WEBHOOK_SIGNATURE` - REGENERATED_WEBHOOK_SIGNATURE - * * `INVITED_USER` - INVITED_USER - * * `TWO_FACTOR_AUTH_ENABLED` - TWO_FACTOR_AUTH_ENABLED - * * `TWO_FACTOR_AUTH_DISABLED` - TWO_FACTOR_AUTH_DISABLED - * * `DELETED_LINKED_ACCOUNT` - DELETED_LINKED_ACCOUNT - * * `DELETED_ALL_COMMON_MODELS_FOR_LINKED_ACCOUNT` - DELETED_ALL_COMMON_MODELS_FOR_LINKED_ACCOUNT - * * `CREATED_DESTINATION` - CREATED_DESTINATION - * * `DELETED_DESTINATION` - DELETED_DESTINATION - * * `CHANGED_DESTINATION` - CHANGED_DESTINATION - * * `CHANGED_SCOPES` - CHANGED_SCOPES - * * `CHANGED_PERSONAL_INFORMATION` - CHANGED_PERSONAL_INFORMATION - * * `CHANGED_ORGANIZATION_SETTINGS` - CHANGED_ORGANIZATION_SETTINGS - * * `ENABLED_INTEGRATION` - ENABLED_INTEGRATION - * * `DISABLED_INTEGRATION` - DISABLED_INTEGRATION - * * `ENABLED_CATEGORY` - ENABLED_CATEGORY - * * `DISABLED_CATEGORY` - DISABLED_CATEGORY - * * `CHANGED_PASSWORD` - CHANGED_PASSWORD - * * `RESET_PASSWORD` - RESET_PASSWORD - * * `ENABLED_REDACT_UNMAPPED_DATA_FOR_ORGANIZATION` - ENABLED_REDACT_UNMAPPED_DATA_FOR_ORGANIZATION - * * `ENABLED_REDACT_UNMAPPED_DATA_FOR_LINKED_ACCOUNT` - ENABLED_REDACT_UNMAPPED_DATA_FOR_LINKED_ACCOUNT - * * `DISABLED_REDACT_UNMAPPED_DATA_FOR_ORGANIZATION` - DISABLED_REDACT_UNMAPPED_DATA_FOR_ORGANIZATION - * * `DISABLED_REDACT_UNMAPPED_DATA_FOR_LINKED_ACCOUNT` - DISABLED_REDACT_UNMAPPED_DATA_FOR_LINKED_ACCOUNT - * * `CREATED_INTEGRATION_WIDE_FIELD_MAPPING` - CREATED_INTEGRATION_WIDE_FIELD_MAPPING - * * `CREATED_LINKED_ACCOUNT_FIELD_MAPPING` - CREATED_LINKED_ACCOUNT_FIELD_MAPPING - * * `CHANGED_INTEGRATION_WIDE_FIELD_MAPPING` - CHANGED_INTEGRATION_WIDE_FIELD_MAPPING - * * `CHANGED_LINKED_ACCOUNT_FIELD_MAPPING` - CHANGED_LINKED_ACCOUNT_FIELD_MAPPING - * * `DELETED_INTEGRATION_WIDE_FIELD_MAPPING` - DELETED_INTEGRATION_WIDE_FIELD_MAPPING - * * `DELETED_LINKED_ACCOUNT_FIELD_MAPPING` - DELETED_LINKED_ACCOUNT_FIELD_MAPPING - * * `CREATED_LINKED_ACCOUNT_COMMON_MODEL_OVERRIDE` - CREATED_LINKED_ACCOUNT_COMMON_MODEL_OVERRIDE - * * `CHANGED_LINKED_ACCOUNT_COMMON_MODEL_OVERRIDE` - CHANGED_LINKED_ACCOUNT_COMMON_MODEL_OVERRIDE - * * `DELETED_LINKED_ACCOUNT_COMMON_MODEL_OVERRIDE` - DELETED_LINKED_ACCOUNT_COMMON_MODEL_OVERRIDE - * * `FORCED_LINKED_ACCOUNT_RESYNC` - FORCED_LINKED_ACCOUNT_RESYNC - * * `MUTED_ISSUE` - MUTED_ISSUE - * * `GENERATED_MAGIC_LINK` - GENERATED_MAGIC_LINK - * * `ENABLED_MERGE_WEBHOOK` - ENABLED_MERGE_WEBHOOK - * * `DISABLED_MERGE_WEBHOOK` - DISABLED_MERGE_WEBHOOK - * * `MERGE_WEBHOOK_TARGET_CHANGED` - MERGE_WEBHOOK_TARGET_CHANGED - * * `END_USER_CREDENTIALS_ACCESSED` - END_USER_CREDENTIALS_ACCESSED - */ -export const EventTypeEnum = { - CreatedRemoteProductionApiKey: "CREATED_REMOTE_PRODUCTION_API_KEY", - DeletedRemoteProductionApiKey: "DELETED_REMOTE_PRODUCTION_API_KEY", - CreatedTestApiKey: "CREATED_TEST_API_KEY", - DeletedTestApiKey: "DELETED_TEST_API_KEY", - RegeneratedProductionApiKey: "REGENERATED_PRODUCTION_API_KEY", - RegeneratedWebhookSignature: "REGENERATED_WEBHOOK_SIGNATURE", - InvitedUser: "INVITED_USER", - TwoFactorAuthEnabled: "TWO_FACTOR_AUTH_ENABLED", - TwoFactorAuthDisabled: "TWO_FACTOR_AUTH_DISABLED", - DeletedLinkedAccount: "DELETED_LINKED_ACCOUNT", - DeletedAllCommonModelsForLinkedAccount: "DELETED_ALL_COMMON_MODELS_FOR_LINKED_ACCOUNT", - CreatedDestination: "CREATED_DESTINATION", - DeletedDestination: "DELETED_DESTINATION", - ChangedDestination: "CHANGED_DESTINATION", - ChangedScopes: "CHANGED_SCOPES", - ChangedPersonalInformation: "CHANGED_PERSONAL_INFORMATION", - ChangedOrganizationSettings: "CHANGED_ORGANIZATION_SETTINGS", - EnabledIntegration: "ENABLED_INTEGRATION", - DisabledIntegration: "DISABLED_INTEGRATION", - EnabledCategory: "ENABLED_CATEGORY", - DisabledCategory: "DISABLED_CATEGORY", - ChangedPassword: "CHANGED_PASSWORD", - ResetPassword: "RESET_PASSWORD", - EnabledRedactUnmappedDataForOrganization: "ENABLED_REDACT_UNMAPPED_DATA_FOR_ORGANIZATION", - EnabledRedactUnmappedDataForLinkedAccount: "ENABLED_REDACT_UNMAPPED_DATA_FOR_LINKED_ACCOUNT", - DisabledRedactUnmappedDataForOrganization: "DISABLED_REDACT_UNMAPPED_DATA_FOR_ORGANIZATION", - DisabledRedactUnmappedDataForLinkedAccount: "DISABLED_REDACT_UNMAPPED_DATA_FOR_LINKED_ACCOUNT", - CreatedIntegrationWideFieldMapping: "CREATED_INTEGRATION_WIDE_FIELD_MAPPING", - CreatedLinkedAccountFieldMapping: "CREATED_LINKED_ACCOUNT_FIELD_MAPPING", - ChangedIntegrationWideFieldMapping: "CHANGED_INTEGRATION_WIDE_FIELD_MAPPING", - ChangedLinkedAccountFieldMapping: "CHANGED_LINKED_ACCOUNT_FIELD_MAPPING", - DeletedIntegrationWideFieldMapping: "DELETED_INTEGRATION_WIDE_FIELD_MAPPING", - DeletedLinkedAccountFieldMapping: "DELETED_LINKED_ACCOUNT_FIELD_MAPPING", - CreatedLinkedAccountCommonModelOverride: "CREATED_LINKED_ACCOUNT_COMMON_MODEL_OVERRIDE", - ChangedLinkedAccountCommonModelOverride: "CHANGED_LINKED_ACCOUNT_COMMON_MODEL_OVERRIDE", - DeletedLinkedAccountCommonModelOverride: "DELETED_LINKED_ACCOUNT_COMMON_MODEL_OVERRIDE", - ForcedLinkedAccountResync: "FORCED_LINKED_ACCOUNT_RESYNC", - MutedIssue: "MUTED_ISSUE", - GeneratedMagicLink: "GENERATED_MAGIC_LINK", - EnabledMergeWebhook: "ENABLED_MERGE_WEBHOOK", - DisabledMergeWebhook: "DISABLED_MERGE_WEBHOOK", - MergeWebhookTargetChanged: "MERGE_WEBHOOK_TARGET_CHANGED", - EndUserCredentialsAccessed: "END_USER_CREDENTIALS_ACCESSED", -} as const; -export type EventTypeEnum = (typeof EventTypeEnum)[keyof typeof EventTypeEnum]; diff --git a/src/api/resources/accounting/types/Expense.ts b/src/api/resources/accounting/types/Expense.ts deleted file mode 100644 index a5b0f0ff7..000000000 --- a/src/api/resources/accounting/types/Expense.ts +++ /dev/null @@ -1,367 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The Expense Object - * ### Description - * The `Expense` object is used to represent a direct purchase by a business, typically made with a check, credit card, or cash. Each `Expense` object is dedicated to a grouping of expenses, with each expense recorded in the lines object. - * - * The `Expense` object is used also used to represent refunds to direct purchases. Refunds can be distinguished from purchases by the amount sign of the records. Expense objects with a negative amount are purchases and `Expense` objects with a positive amount are refunds to those purchases. - * - * ### Usage Example - * Fetch from the `GET Expense` endpoint and view a company's expense. - */ -export interface Expense { - id?: string; - /** The third-party API ID of the matching object. */ - remoteId?: string; - /** The datetime that this object was created by Merge. */ - createdAt?: Date; - /** The datetime that this object was modified by Merge. */ - modifiedAt?: Date; - /** When the transaction occurred. */ - transactionDate?: Date; - /** When the expense was created. */ - remoteCreatedAt?: Date; - /** The expense's payment account. */ - account?: Merge.accounting.ExpenseAccount; - /** The expense's contact. */ - contact?: Merge.accounting.ExpenseContact; - /** The expense's total amount. */ - totalAmount?: number; - /** The expense's total amount before tax. */ - subTotal?: number; - /** The expense's total tax amount. */ - totalTaxAmount?: number; - /** - * The expense's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ - currency?: Merge.accounting.ExpenseCurrency; - /** The expense's exchange rate. */ - exchangeRate?: string; - /** If the transaction is inclusive or exclusive of tax. `True` if inclusive, `False` if exclusive. */ - inclusiveOfTax?: boolean; - /** The company the expense belongs to. */ - company?: Merge.accounting.ExpenseCompany; - /** The employee this overall transaction relates to. */ - employee?: Merge.accounting.ExpenseEmployee; - /** The expense's private note. */ - memo?: string; - lines?: Merge.accounting.ExpenseLine[]; - trackingCategories?: (Merge.accounting.ExpenseTrackingCategoriesItem | undefined)[]; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - remoteWasDeleted?: boolean; - /** The accounting period that the Expense was generated in. */ - accountingPeriod?: Merge.accounting.ExpenseAccountingPeriod; - fieldMappings?: Record; - remoteData?: Merge.accounting.RemoteData[]; - remoteFields?: Merge.accounting.RemoteField[]; -} diff --git a/src/api/resources/accounting/types/ExpenseAccount.ts b/src/api/resources/accounting/types/ExpenseAccount.ts deleted file mode 100644 index 47e0b8db8..000000000 --- a/src/api/resources/accounting/types/ExpenseAccount.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The expense's payment account. - */ -export type ExpenseAccount = string | Merge.accounting.Account; diff --git a/src/api/resources/accounting/types/ExpenseAccountingPeriod.ts b/src/api/resources/accounting/types/ExpenseAccountingPeriod.ts deleted file mode 100644 index cc3ad1fdc..000000000 --- a/src/api/resources/accounting/types/ExpenseAccountingPeriod.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The accounting period that the Expense was generated in. - */ -export type ExpenseAccountingPeriod = string | Merge.accounting.AccountingPeriod; diff --git a/src/api/resources/accounting/types/ExpenseCompany.ts b/src/api/resources/accounting/types/ExpenseCompany.ts deleted file mode 100644 index c32e251f1..000000000 --- a/src/api/resources/accounting/types/ExpenseCompany.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The company the expense belongs to. - */ -export type ExpenseCompany = string | Merge.accounting.CompanyInfo; diff --git a/src/api/resources/accounting/types/ExpenseContact.ts b/src/api/resources/accounting/types/ExpenseContact.ts deleted file mode 100644 index fc3f02470..000000000 --- a/src/api/resources/accounting/types/ExpenseContact.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The expense's contact. - */ -export type ExpenseContact = string | Merge.accounting.Contact; diff --git a/src/api/resources/accounting/types/ExpenseCurrency.ts b/src/api/resources/accounting/types/ExpenseCurrency.ts deleted file mode 100644 index b23f87dcc..000000000 --- a/src/api/resources/accounting/types/ExpenseCurrency.ts +++ /dev/null @@ -1,315 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The expense's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ -export type ExpenseCurrency = Merge.accounting.TransactionCurrencyEnum | string; diff --git a/src/api/resources/accounting/types/ExpenseEmployee.ts b/src/api/resources/accounting/types/ExpenseEmployee.ts deleted file mode 100644 index d82684458..000000000 --- a/src/api/resources/accounting/types/ExpenseEmployee.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The employee this overall transaction relates to. - */ -export type ExpenseEmployee = string | Merge.accounting.Employee; diff --git a/src/api/resources/accounting/types/ExpenseLine.ts b/src/api/resources/accounting/types/ExpenseLine.ts deleted file mode 100644 index 1db271898..000000000 --- a/src/api/resources/accounting/types/ExpenseLine.ts +++ /dev/null @@ -1,360 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The ExpenseLine Object - * ### Description - * The `ExpenseLine` object is used to represent an expense's line items. - * - * ### Usage Example - * Fetch from the `GET Expense` endpoint and view the expense's line items. - */ -export interface ExpenseLine { - id?: string; - /** The third-party API ID of the matching object. */ - remoteId?: string; - /** The datetime that this object was created by Merge. */ - createdAt?: Date; - /** The datetime that this object was modified by Merge. */ - modifiedAt?: Date; - /** The line's item. */ - item?: Merge.accounting.ExpenseLineItem; - /** The line's net amount. */ - netAmount?: number; - trackingCategory?: Merge.accounting.ExpenseLineTrackingCategory; - /** The expense line item's associated tracking categories. */ - trackingCategories?: (Merge.accounting.ExpenseLineTrackingCategoriesItem | undefined)[]; - /** The company the expense belongs to. */ - company?: string; - /** The employee this overall transaction relates to. */ - employee?: Merge.accounting.ExpenseLineEmployee; - /** - * The expense line item's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ - currency?: Merge.accounting.ExpenseLineCurrency; - /** The expense's payment account. */ - account?: Merge.accounting.ExpenseLineAccount; - /** The expense's contact. */ - contact?: Merge.accounting.ExpenseLineContact; - project?: Merge.accounting.ExpenseLineProject; - /** The description of the item that was purchased by the company. */ - description?: string; - /** The expense line item's exchange rate. */ - exchangeRate?: string; - /** The tax rate that applies to this line item. */ - taxRate?: string; - /** Number of items for the expense line. */ - quantity?: string; - /** Unit price of the item for the expense line. */ - unitPrice?: string; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - remoteWasDeleted?: boolean; -} diff --git a/src/api/resources/accounting/types/ExpenseLineAccount.ts b/src/api/resources/accounting/types/ExpenseLineAccount.ts deleted file mode 100644 index fe32646f8..000000000 --- a/src/api/resources/accounting/types/ExpenseLineAccount.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The expense's payment account. - */ -export type ExpenseLineAccount = string | Merge.accounting.Account; diff --git a/src/api/resources/accounting/types/ExpenseLineContact.ts b/src/api/resources/accounting/types/ExpenseLineContact.ts deleted file mode 100644 index 56e749bd6..000000000 --- a/src/api/resources/accounting/types/ExpenseLineContact.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The expense's contact. - */ -export type ExpenseLineContact = string | Merge.accounting.Contact; diff --git a/src/api/resources/accounting/types/ExpenseLineCurrency.ts b/src/api/resources/accounting/types/ExpenseLineCurrency.ts deleted file mode 100644 index 618e73c05..000000000 --- a/src/api/resources/accounting/types/ExpenseLineCurrency.ts +++ /dev/null @@ -1,315 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The expense line item's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ -export type ExpenseLineCurrency = Merge.accounting.TransactionCurrencyEnum | string; diff --git a/src/api/resources/accounting/types/ExpenseLineEmployee.ts b/src/api/resources/accounting/types/ExpenseLineEmployee.ts deleted file mode 100644 index 38e5d174f..000000000 --- a/src/api/resources/accounting/types/ExpenseLineEmployee.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The employee this overall transaction relates to. - */ -export type ExpenseLineEmployee = string | Merge.accounting.Employee; diff --git a/src/api/resources/accounting/types/ExpenseLineItem.ts b/src/api/resources/accounting/types/ExpenseLineItem.ts deleted file mode 100644 index ead1b1f7a..000000000 --- a/src/api/resources/accounting/types/ExpenseLineItem.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The line's item. - */ -export type ExpenseLineItem = string | Merge.accounting.Item; diff --git a/src/api/resources/accounting/types/ExpenseLineProject.ts b/src/api/resources/accounting/types/ExpenseLineProject.ts deleted file mode 100644 index 5986986d4..000000000 --- a/src/api/resources/accounting/types/ExpenseLineProject.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type ExpenseLineProject = string | Merge.accounting.Project; diff --git a/src/api/resources/accounting/types/ExpenseLineRequest.ts b/src/api/resources/accounting/types/ExpenseLineRequest.ts deleted file mode 100644 index 61635d324..000000000 --- a/src/api/resources/accounting/types/ExpenseLineRequest.ts +++ /dev/null @@ -1,356 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The ExpenseLine Object - * ### Description - * The `ExpenseLine` object is used to represent an expense's line items. - * - * ### Usage Example - * Fetch from the `GET Expense` endpoint and view the expense's line items. - */ -export interface ExpenseLineRequest { - /** The third-party API ID of the matching object. */ - remoteId?: string; - /** The line's item. */ - item?: Merge.accounting.ExpenseLineRequestItem; - /** The line's net amount. */ - netAmount?: number; - trackingCategory?: Merge.accounting.ExpenseLineRequestTrackingCategory; - /** The expense line item's associated tracking categories. */ - trackingCategories?: (Merge.accounting.ExpenseLineRequestTrackingCategoriesItem | undefined)[]; - /** The company the expense belongs to. */ - company?: string; - /** The employee this overall transaction relates to. */ - employee?: Merge.accounting.ExpenseLineRequestEmployee; - /** - * The expense line item's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ - currency?: Merge.accounting.ExpenseLineRequestCurrency; - /** The expense's payment account. */ - account?: Merge.accounting.ExpenseLineRequestAccount; - /** The expense's contact. */ - contact?: Merge.accounting.ExpenseLineRequestContact; - project?: Merge.accounting.ExpenseLineRequestProject; - /** The description of the item that was purchased by the company. */ - description?: string; - /** The expense line item's exchange rate. */ - exchangeRate?: string; - /** The tax rate that applies to this line item. */ - taxRate?: string; - /** Number of items for the expense line. */ - quantity?: string; - /** Unit price of the item for the expense line. */ - unitPrice?: string; - integrationParams?: Record; - linkedAccountParams?: Record; - remoteFields?: Merge.accounting.RemoteFieldRequest[]; -} diff --git a/src/api/resources/accounting/types/ExpenseLineRequestAccount.ts b/src/api/resources/accounting/types/ExpenseLineRequestAccount.ts deleted file mode 100644 index 7f564d1a9..000000000 --- a/src/api/resources/accounting/types/ExpenseLineRequestAccount.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The expense's payment account. - */ -export type ExpenseLineRequestAccount = string | Merge.accounting.Account; diff --git a/src/api/resources/accounting/types/ExpenseLineRequestContact.ts b/src/api/resources/accounting/types/ExpenseLineRequestContact.ts deleted file mode 100644 index af51a7931..000000000 --- a/src/api/resources/accounting/types/ExpenseLineRequestContact.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The expense's contact. - */ -export type ExpenseLineRequestContact = string | Merge.accounting.Contact; diff --git a/src/api/resources/accounting/types/ExpenseLineRequestCurrency.ts b/src/api/resources/accounting/types/ExpenseLineRequestCurrency.ts deleted file mode 100644 index a91b421ab..000000000 --- a/src/api/resources/accounting/types/ExpenseLineRequestCurrency.ts +++ /dev/null @@ -1,315 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The expense line item's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ -export type ExpenseLineRequestCurrency = Merge.accounting.TransactionCurrencyEnum | string; diff --git a/src/api/resources/accounting/types/ExpenseLineRequestEmployee.ts b/src/api/resources/accounting/types/ExpenseLineRequestEmployee.ts deleted file mode 100644 index a2aedfc5f..000000000 --- a/src/api/resources/accounting/types/ExpenseLineRequestEmployee.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The employee this overall transaction relates to. - */ -export type ExpenseLineRequestEmployee = string | Merge.accounting.Employee; diff --git a/src/api/resources/accounting/types/ExpenseLineRequestItem.ts b/src/api/resources/accounting/types/ExpenseLineRequestItem.ts deleted file mode 100644 index 039f14e6e..000000000 --- a/src/api/resources/accounting/types/ExpenseLineRequestItem.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The line's item. - */ -export type ExpenseLineRequestItem = string | Merge.accounting.Item; diff --git a/src/api/resources/accounting/types/ExpenseLineRequestProject.ts b/src/api/resources/accounting/types/ExpenseLineRequestProject.ts deleted file mode 100644 index 9212e45d8..000000000 --- a/src/api/resources/accounting/types/ExpenseLineRequestProject.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type ExpenseLineRequestProject = string | Merge.accounting.Contact; diff --git a/src/api/resources/accounting/types/ExpenseLineRequestTrackingCategoriesItem.ts b/src/api/resources/accounting/types/ExpenseLineRequestTrackingCategoriesItem.ts deleted file mode 100644 index 8be82b731..000000000 --- a/src/api/resources/accounting/types/ExpenseLineRequestTrackingCategoriesItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type ExpenseLineRequestTrackingCategoriesItem = string | Merge.accounting.TrackingCategory; diff --git a/src/api/resources/accounting/types/ExpenseLineRequestTrackingCategory.ts b/src/api/resources/accounting/types/ExpenseLineRequestTrackingCategory.ts deleted file mode 100644 index 6f0cf4a8e..000000000 --- a/src/api/resources/accounting/types/ExpenseLineRequestTrackingCategory.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type ExpenseLineRequestTrackingCategory = string | Merge.accounting.TrackingCategory; diff --git a/src/api/resources/accounting/types/ExpenseLineTrackingCategoriesItem.ts b/src/api/resources/accounting/types/ExpenseLineTrackingCategoriesItem.ts deleted file mode 100644 index f1bbe6393..000000000 --- a/src/api/resources/accounting/types/ExpenseLineTrackingCategoriesItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type ExpenseLineTrackingCategoriesItem = string | Merge.accounting.TrackingCategory; diff --git a/src/api/resources/accounting/types/ExpenseLineTrackingCategory.ts b/src/api/resources/accounting/types/ExpenseLineTrackingCategory.ts deleted file mode 100644 index 86689ec3a..000000000 --- a/src/api/resources/accounting/types/ExpenseLineTrackingCategory.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type ExpenseLineTrackingCategory = string | Merge.accounting.TrackingCategory; diff --git a/src/api/resources/accounting/types/ExpenseReport.ts b/src/api/resources/accounting/types/ExpenseReport.ts deleted file mode 100644 index 7bf33b1c2..000000000 --- a/src/api/resources/accounting/types/ExpenseReport.ts +++ /dev/null @@ -1,364 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The ExpenseReport Object - * ### Description - * The `ExpenseReport` object represents a collection of expenses submitted for review and reimbursement. - * It includes details about the submitter, status, amounts, and associated metadata. - * - * ### Usage Example - * Fetch from the `GET ExpenseReport` endpoint to view details of expense reports and their line items. - */ -export interface ExpenseReport { - id?: string; - /** The third-party API ID of the matching object. */ - remoteId?: string; - /** The datetime that this object was created by Merge. */ - createdAt?: Date; - /** The datetime that this object was modified by Merge. */ - modifiedAt?: Date; - /** The date of the expense report. */ - reportDate?: Date; - /** Human-readable expense report identifier. */ - reportIdentifier?: string; - /** Identifier for the employee who submitted or is associated with the expense report */ - employee?: string; - /** - * Overall status of the expense report. One of DRAFT, SUBMITTED, APPROVED, REJECTED - * - * * `DRAFT` - DRAFT - * * `SUBMITTED` - SUBMITTED - * * `APPROVED` - APPROVED - * * `REJECTED` - REJECTED - */ - status?: Merge.accounting.ExpenseReportStatus; - /** Total amount of the expense report */ - totalAmount?: number; - lines?: Merge.accounting.ExpenseReportLine[]; - /** - * Currency code for the expense report - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ - currency?: Merge.accounting.TransactionCurrencyEnum; - /** A brief description or purpose for the expense report */ - description?: string; - /** The accounting period the report was posted in */ - accountingPeriod?: string; - /** The subsidiary that the expense report is created in */ - company?: Merge.accounting.ExpenseReportCompany; - /** The related tracking categories associated with the expense report */ - trackingCategories: string[]; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - remoteWasDeleted?: boolean; - fieldMappings?: Record; - remoteData?: Merge.accounting.RemoteData[]; - remoteFields?: Merge.accounting.RemoteField[]; -} diff --git a/src/api/resources/accounting/types/ExpenseReportCompany.ts b/src/api/resources/accounting/types/ExpenseReportCompany.ts deleted file mode 100644 index 985807a09..000000000 --- a/src/api/resources/accounting/types/ExpenseReportCompany.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The subsidiary that the expense report is created in - */ -export type ExpenseReportCompany = string | Merge.accounting.CompanyInfo; diff --git a/src/api/resources/accounting/types/ExpenseReportLine.ts b/src/api/resources/accounting/types/ExpenseReportLine.ts deleted file mode 100644 index f0063de36..000000000 --- a/src/api/resources/accounting/types/ExpenseReportLine.ts +++ /dev/null @@ -1,366 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The ExpenseReportLine Object - * ### Description - * The `ExpenseReportLine` object represents an individual line item within an expense report, containing details about - * a specific expense such as amount, description, and associated metadata. - * - * ### Usage Example - * Fetch from the `GET ExpenseReport` endpoint and expand the lines field to view all line items in the expense report. - */ -export interface ExpenseReportLine { - id?: string; - /** The third-party API ID of the matching object. */ - remoteId?: string; - /** The datetime that this object was created by Merge. */ - createdAt?: Date; - /** The datetime that this object was modified by Merge. */ - modifiedAt?: Date; - account?: Merge.accounting.ExpenseReportLineAccount; - /** Description of the individual expense. */ - description?: string; - /** The date the individual expense was incurred. */ - expenseDate?: Date; - /** The amount of the expense for the line item. */ - amount?: number; - /** - * Currency of the expense line (if different from the report currency). - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ - currency?: Merge.accounting.TransactionCurrencyEnum; - /** Exchange rate used if the line item is in a foreign currency. */ - exchangeRate?: string; - /** Whether the expense line is billable to a client or project. */ - isBillable?: boolean; - /** The related tracking categories associated with the expense report (Department, Location, Class, Expense Category) */ - trackingCategories: string[]; - /** Identifier for the employee who submitted or is associated with the expense report */ - employee?: Merge.accounting.ExpenseReportLineEmployee; - project?: Merge.accounting.ExpenseReportLineProject; - /** The subsidiary that the expense report is created in */ - company?: Merge.accounting.ExpenseReportLineCompany; - contact?: Merge.accounting.ExpenseReportLineContact; - /** Quantity for the expense line (e.g., miles driven, items purchased). */ - quantity?: number; - /** Price per unit for the expense line (if applicable). */ - unitPrice?: number; - /** Whether the expense line is non-reimbursable (e.g., paid via company card). */ - nonReimbursable?: boolean; - /** Tax amount applicable for the line item. */ - taxAmount?: number; - /** Whether the amount is inclusive of tax. */ - inclusiveOfTax?: boolean; - taxRate?: Merge.accounting.ExpenseReportLineTaxRate; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - remoteWasDeleted?: boolean; - remoteFields?: Merge.accounting.RemoteField[]; -} diff --git a/src/api/resources/accounting/types/ExpenseReportLineAccount.ts b/src/api/resources/accounting/types/ExpenseReportLineAccount.ts deleted file mode 100644 index 5f17a21fe..000000000 --- a/src/api/resources/accounting/types/ExpenseReportLineAccount.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type ExpenseReportLineAccount = string | Merge.accounting.Account; diff --git a/src/api/resources/accounting/types/ExpenseReportLineCompany.ts b/src/api/resources/accounting/types/ExpenseReportLineCompany.ts deleted file mode 100644 index 1a897da62..000000000 --- a/src/api/resources/accounting/types/ExpenseReportLineCompany.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The subsidiary that the expense report is created in - */ -export type ExpenseReportLineCompany = string | Merge.accounting.CompanyInfo; diff --git a/src/api/resources/accounting/types/ExpenseReportLineContact.ts b/src/api/resources/accounting/types/ExpenseReportLineContact.ts deleted file mode 100644 index 3cef85957..000000000 --- a/src/api/resources/accounting/types/ExpenseReportLineContact.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type ExpenseReportLineContact = string | Merge.accounting.Contact; diff --git a/src/api/resources/accounting/types/ExpenseReportLineEmployee.ts b/src/api/resources/accounting/types/ExpenseReportLineEmployee.ts deleted file mode 100644 index 0d5cd8a5b..000000000 --- a/src/api/resources/accounting/types/ExpenseReportLineEmployee.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * Identifier for the employee who submitted or is associated with the expense report - */ -export type ExpenseReportLineEmployee = string | Merge.accounting.Employee; diff --git a/src/api/resources/accounting/types/ExpenseReportLineProject.ts b/src/api/resources/accounting/types/ExpenseReportLineProject.ts deleted file mode 100644 index 961c4294b..000000000 --- a/src/api/resources/accounting/types/ExpenseReportLineProject.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type ExpenseReportLineProject = string | Merge.accounting.Project; diff --git a/src/api/resources/accounting/types/ExpenseReportLineRequest.ts b/src/api/resources/accounting/types/ExpenseReportLineRequest.ts deleted file mode 100644 index 362b63d79..000000000 --- a/src/api/resources/accounting/types/ExpenseReportLineRequest.ts +++ /dev/null @@ -1,361 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The ExpenseReportLine Object - * ### Description - * The `ExpenseReportLine` object represents an individual line item within an expense report, containing details about - * a specific expense such as amount, description, and associated metadata. - * - * ### Usage Example - * Fetch from the `GET ExpenseReport` endpoint and expand the lines field to view all line items in the expense report. - */ -export interface ExpenseReportLineRequest { - /** The third-party API ID of the matching object. */ - remoteId?: string; - account?: Merge.accounting.ExpenseReportLineRequestAccount; - /** Description of the individual expense. */ - description?: string; - /** The date the individual expense was incurred. */ - expenseDate?: Date; - /** The amount of the expense for the line item. */ - amount?: number; - /** - * Currency of the expense line (if different from the report currency). - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ - currency?: Merge.accounting.TransactionCurrencyEnum; - /** Exchange rate used if the line item is in a foreign currency. */ - exchangeRate?: string; - /** Whether the expense line is billable to a client or project. */ - isBillable?: boolean; - /** The related tracking categories associated with the expense report (Department, Location, Class, Expense Category) */ - trackingCategories: string[]; - /** Identifier for the employee who submitted or is associated with the expense report */ - employee?: Merge.accounting.ExpenseReportLineRequestEmployee; - project?: Merge.accounting.ExpenseReportLineRequestProject; - /** The subsidiary that the expense report is created in */ - company?: Merge.accounting.ExpenseReportLineRequestCompany; - contact?: Merge.accounting.ExpenseReportLineRequestContact; - /** Quantity for the expense line (e.g., miles driven, items purchased). */ - quantity?: number; - /** Price per unit for the expense line (if applicable). */ - unitPrice?: number; - /** Whether the expense line is non-reimbursable (e.g., paid via company card). */ - nonReimbursable?: boolean; - /** Tax amount applicable for the line item. */ - taxAmount?: number; - /** Whether the amount is inclusive of tax. */ - inclusiveOfTax?: boolean; - taxRate?: Merge.accounting.ExpenseReportLineRequestTaxRate; - integrationParams?: Record; - linkedAccountParams?: Record; - remoteFields?: Merge.accounting.RemoteFieldRequest[]; -} diff --git a/src/api/resources/accounting/types/ExpenseReportLineRequestAccount.ts b/src/api/resources/accounting/types/ExpenseReportLineRequestAccount.ts deleted file mode 100644 index 174584261..000000000 --- a/src/api/resources/accounting/types/ExpenseReportLineRequestAccount.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type ExpenseReportLineRequestAccount = string | Merge.accounting.Account; diff --git a/src/api/resources/accounting/types/ExpenseReportLineRequestCompany.ts b/src/api/resources/accounting/types/ExpenseReportLineRequestCompany.ts deleted file mode 100644 index 5d2635961..000000000 --- a/src/api/resources/accounting/types/ExpenseReportLineRequestCompany.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The subsidiary that the expense report is created in - */ -export type ExpenseReportLineRequestCompany = string | Merge.accounting.CompanyInfo; diff --git a/src/api/resources/accounting/types/ExpenseReportLineRequestContact.ts b/src/api/resources/accounting/types/ExpenseReportLineRequestContact.ts deleted file mode 100644 index b7a0b8ab8..000000000 --- a/src/api/resources/accounting/types/ExpenseReportLineRequestContact.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type ExpenseReportLineRequestContact = string | Merge.accounting.Contact; diff --git a/src/api/resources/accounting/types/ExpenseReportLineRequestEmployee.ts b/src/api/resources/accounting/types/ExpenseReportLineRequestEmployee.ts deleted file mode 100644 index bab3de306..000000000 --- a/src/api/resources/accounting/types/ExpenseReportLineRequestEmployee.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * Identifier for the employee who submitted or is associated with the expense report - */ -export type ExpenseReportLineRequestEmployee = string | Merge.accounting.Employee; diff --git a/src/api/resources/accounting/types/ExpenseReportLineRequestProject.ts b/src/api/resources/accounting/types/ExpenseReportLineRequestProject.ts deleted file mode 100644 index 8c226ef92..000000000 --- a/src/api/resources/accounting/types/ExpenseReportLineRequestProject.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type ExpenseReportLineRequestProject = string | Merge.accounting.Project; diff --git a/src/api/resources/accounting/types/ExpenseReportLineRequestTaxRate.ts b/src/api/resources/accounting/types/ExpenseReportLineRequestTaxRate.ts deleted file mode 100644 index c7e420505..000000000 --- a/src/api/resources/accounting/types/ExpenseReportLineRequestTaxRate.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type ExpenseReportLineRequestTaxRate = string | Merge.accounting.TaxRate; diff --git a/src/api/resources/accounting/types/ExpenseReportLineTaxRate.ts b/src/api/resources/accounting/types/ExpenseReportLineTaxRate.ts deleted file mode 100644 index 83088724f..000000000 --- a/src/api/resources/accounting/types/ExpenseReportLineTaxRate.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type ExpenseReportLineTaxRate = string | Merge.accounting.TaxRate; diff --git a/src/api/resources/accounting/types/ExpenseReportRequest.ts b/src/api/resources/accounting/types/ExpenseReportRequest.ts deleted file mode 100644 index 8345be4d4..000000000 --- a/src/api/resources/accounting/types/ExpenseReportRequest.ts +++ /dev/null @@ -1,354 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The ExpenseReport Object - * ### Description - * The `ExpenseReport` object represents a collection of expenses submitted for review and reimbursement. - * It includes details about the submitter, status, amounts, and associated metadata. - * - * ### Usage Example - * Fetch from the `GET ExpenseReport` endpoint to view details of expense reports and their line items. - */ -export interface ExpenseReportRequest { - /** The date of the expense report. */ - reportDate?: Date; - /** Human-readable expense report identifier. */ - reportIdentifier?: string; - /** Identifier for the employee who submitted or is associated with the expense report */ - employee?: Merge.accounting.ExpenseReportRequestEmployee; - /** - * Overall status of the expense report. One of DRAFT, SUBMITTED, APPROVED, REJECTED - * - * * `DRAFT` - DRAFT - * * `SUBMITTED` - SUBMITTED - * * `APPROVED` - APPROVED - * * `REJECTED` - REJECTED - */ - status?: Merge.accounting.ExpenseReportStatusEnum; - /** Total amount of the expense report */ - totalAmount?: number; - /** - * Currency code for the expense report - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ - currency?: Merge.accounting.TransactionCurrencyEnum; - /** A brief description or purpose for the expense report */ - description?: string; - /** The accounting period the report was posted in */ - accountingPeriod?: Merge.accounting.ExpenseReportRequestAccountingPeriod; - /** The subsidiary that the expense report is created in */ - company?: Merge.accounting.ExpenseReportRequestCompany; - /** The related tracking categories associated with the expense report */ - trackingCategories: string[]; - integrationParams?: Record; - linkedAccountParams?: Record; - remoteFields?: Merge.accounting.RemoteFieldRequest[]; -} diff --git a/src/api/resources/accounting/types/ExpenseReportRequestAccountingPeriod.ts b/src/api/resources/accounting/types/ExpenseReportRequestAccountingPeriod.ts deleted file mode 100644 index ce4e9d1db..000000000 --- a/src/api/resources/accounting/types/ExpenseReportRequestAccountingPeriod.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The accounting period the report was posted in - */ -export type ExpenseReportRequestAccountingPeriod = string | Merge.accounting.AccountingPeriod; diff --git a/src/api/resources/accounting/types/ExpenseReportRequestCompany.ts b/src/api/resources/accounting/types/ExpenseReportRequestCompany.ts deleted file mode 100644 index 9f278276c..000000000 --- a/src/api/resources/accounting/types/ExpenseReportRequestCompany.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The subsidiary that the expense report is created in - */ -export type ExpenseReportRequestCompany = string | Merge.accounting.CompanyInfo; diff --git a/src/api/resources/accounting/types/ExpenseReportRequestEmployee.ts b/src/api/resources/accounting/types/ExpenseReportRequestEmployee.ts deleted file mode 100644 index c8bc03a89..000000000 --- a/src/api/resources/accounting/types/ExpenseReportRequestEmployee.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * Identifier for the employee who submitted or is associated with the expense report - */ -export type ExpenseReportRequestEmployee = string | Merge.accounting.Employee; diff --git a/src/api/resources/accounting/types/ExpenseReportResponse.ts b/src/api/resources/accounting/types/ExpenseReportResponse.ts deleted file mode 100644 index 801142898..000000000 --- a/src/api/resources/accounting/types/ExpenseReportResponse.ts +++ /dev/null @@ -1,10 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface ExpenseReportResponse { - model: Merge.accounting.ExpenseReport; - warnings: Merge.accounting.WarningValidationProblem[]; - errors: Merge.accounting.ErrorValidationProblem[]; - logs?: Merge.accounting.DebugModeLog[]; -} diff --git a/src/api/resources/accounting/types/ExpenseReportStatus.ts b/src/api/resources/accounting/types/ExpenseReportStatus.ts deleted file mode 100644 index 209b41468..000000000 --- a/src/api/resources/accounting/types/ExpenseReportStatus.ts +++ /dev/null @@ -1,13 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * Overall status of the expense report. One of DRAFT, SUBMITTED, APPROVED, REJECTED - * - * * `DRAFT` - DRAFT - * * `SUBMITTED` - SUBMITTED - * * `APPROVED` - APPROVED - * * `REJECTED` - REJECTED - */ -export type ExpenseReportStatus = Merge.accounting.ExpenseReportStatusEnum | string; diff --git a/src/api/resources/accounting/types/ExpenseReportStatusEnum.ts b/src/api/resources/accounting/types/ExpenseReportStatusEnum.ts deleted file mode 100644 index 69daf2725..000000000 --- a/src/api/resources/accounting/types/ExpenseReportStatusEnum.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * * `DRAFT` - DRAFT - * * `SUBMITTED` - SUBMITTED - * * `APPROVED` - APPROVED - * * `REJECTED` - REJECTED - */ -export const ExpenseReportStatusEnum = { - Draft: "DRAFT", - Submitted: "SUBMITTED", - Approved: "APPROVED", - Rejected: "REJECTED", -} as const; -export type ExpenseReportStatusEnum = (typeof ExpenseReportStatusEnum)[keyof typeof ExpenseReportStatusEnum]; diff --git a/src/api/resources/accounting/types/ExpenseRequest.ts b/src/api/resources/accounting/types/ExpenseRequest.ts deleted file mode 100644 index 28df25756..000000000 --- a/src/api/resources/accounting/types/ExpenseRequest.ts +++ /dev/null @@ -1,356 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The Expense Object - * ### Description - * The `Expense` object is used to represent a direct purchase by a business, typically made with a check, credit card, or cash. Each `Expense` object is dedicated to a grouping of expenses, with each expense recorded in the lines object. - * - * The `Expense` object is used also used to represent refunds to direct purchases. Refunds can be distinguished from purchases by the amount sign of the records. Expense objects with a negative amount are purchases and `Expense` objects with a positive amount are refunds to those purchases. - * - * ### Usage Example - * Fetch from the `GET Expense` endpoint and view a company's expense. - */ -export interface ExpenseRequest { - /** When the transaction occurred. */ - transactionDate?: Date; - /** The expense's payment account. */ - account?: Merge.accounting.ExpenseRequestAccount; - /** The expense's contact. */ - contact?: Merge.accounting.ExpenseRequestContact; - /** The expense's total amount. */ - totalAmount?: number; - /** The expense's total amount before tax. */ - subTotal?: number; - /** The expense's total tax amount. */ - totalTaxAmount?: number; - /** - * The expense's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ - currency?: Merge.accounting.ExpenseRequestCurrency; - /** The expense's exchange rate. */ - exchangeRate?: string; - /** If the transaction is inclusive or exclusive of tax. `True` if inclusive, `False` if exclusive. */ - inclusiveOfTax?: boolean; - /** The company the expense belongs to. */ - company?: Merge.accounting.ExpenseRequestCompany; - /** The employee this overall transaction relates to. */ - employee?: Merge.accounting.ExpenseRequestEmployee; - /** The expense's private note. */ - memo?: string; - lines?: Merge.accounting.ExpenseLineRequest[]; - trackingCategories?: (Merge.accounting.ExpenseRequestTrackingCategoriesItem | undefined)[]; - /** The accounting period that the Expense was generated in. */ - accountingPeriod?: Merge.accounting.ExpenseRequestAccountingPeriod; - integrationParams?: Record; - linkedAccountParams?: Record; - remoteFields?: Merge.accounting.RemoteFieldRequest[]; -} diff --git a/src/api/resources/accounting/types/ExpenseRequestAccount.ts b/src/api/resources/accounting/types/ExpenseRequestAccount.ts deleted file mode 100644 index e227836cb..000000000 --- a/src/api/resources/accounting/types/ExpenseRequestAccount.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The expense's payment account. - */ -export type ExpenseRequestAccount = string | Merge.accounting.Account; diff --git a/src/api/resources/accounting/types/ExpenseRequestAccountingPeriod.ts b/src/api/resources/accounting/types/ExpenseRequestAccountingPeriod.ts deleted file mode 100644 index b799f2c59..000000000 --- a/src/api/resources/accounting/types/ExpenseRequestAccountingPeriod.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The accounting period that the Expense was generated in. - */ -export type ExpenseRequestAccountingPeriod = string | Merge.accounting.AccountingPeriod; diff --git a/src/api/resources/accounting/types/ExpenseRequestCompany.ts b/src/api/resources/accounting/types/ExpenseRequestCompany.ts deleted file mode 100644 index aa0cd7b17..000000000 --- a/src/api/resources/accounting/types/ExpenseRequestCompany.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The company the expense belongs to. - */ -export type ExpenseRequestCompany = string | Merge.accounting.CompanyInfo; diff --git a/src/api/resources/accounting/types/ExpenseRequestContact.ts b/src/api/resources/accounting/types/ExpenseRequestContact.ts deleted file mode 100644 index 62301ad13..000000000 --- a/src/api/resources/accounting/types/ExpenseRequestContact.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The expense's contact. - */ -export type ExpenseRequestContact = string | Merge.accounting.Contact; diff --git a/src/api/resources/accounting/types/ExpenseRequestCurrency.ts b/src/api/resources/accounting/types/ExpenseRequestCurrency.ts deleted file mode 100644 index a5210f7fc..000000000 --- a/src/api/resources/accounting/types/ExpenseRequestCurrency.ts +++ /dev/null @@ -1,315 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The expense's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ -export type ExpenseRequestCurrency = Merge.accounting.TransactionCurrencyEnum | string; diff --git a/src/api/resources/accounting/types/ExpenseRequestEmployee.ts b/src/api/resources/accounting/types/ExpenseRequestEmployee.ts deleted file mode 100644 index 71e50b084..000000000 --- a/src/api/resources/accounting/types/ExpenseRequestEmployee.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The employee this overall transaction relates to. - */ -export type ExpenseRequestEmployee = string | Merge.accounting.Employee; diff --git a/src/api/resources/accounting/types/ExpenseRequestTrackingCategoriesItem.ts b/src/api/resources/accounting/types/ExpenseRequestTrackingCategoriesItem.ts deleted file mode 100644 index d0cb16f1e..000000000 --- a/src/api/resources/accounting/types/ExpenseRequestTrackingCategoriesItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type ExpenseRequestTrackingCategoriesItem = string | Merge.accounting.TrackingCategory; diff --git a/src/api/resources/accounting/types/ExpenseResponse.ts b/src/api/resources/accounting/types/ExpenseResponse.ts deleted file mode 100644 index 57cd8e4ee..000000000 --- a/src/api/resources/accounting/types/ExpenseResponse.ts +++ /dev/null @@ -1,10 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface ExpenseResponse { - model: Merge.accounting.Expense; - warnings: Merge.accounting.WarningValidationProblem[]; - errors: Merge.accounting.ErrorValidationProblem[]; - logs?: Merge.accounting.DebugModeLog[]; -} diff --git a/src/api/resources/accounting/types/ExpenseTrackingCategoriesItem.ts b/src/api/resources/accounting/types/ExpenseTrackingCategoriesItem.ts deleted file mode 100644 index 231ee9bd5..000000000 --- a/src/api/resources/accounting/types/ExpenseTrackingCategoriesItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type ExpenseTrackingCategoriesItem = string | Merge.accounting.TrackingCategory; diff --git a/src/api/resources/accounting/types/ExternalTargetFieldApi.ts b/src/api/resources/accounting/types/ExternalTargetFieldApi.ts deleted file mode 100644 index 7823d0137..000000000 --- a/src/api/resources/accounting/types/ExternalTargetFieldApi.ts +++ /dev/null @@ -1,7 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export interface ExternalTargetFieldApi { - name?: string; - description?: string; - isMapped?: string; -} diff --git a/src/api/resources/accounting/types/ExternalTargetFieldApiResponse.ts b/src/api/resources/accounting/types/ExternalTargetFieldApiResponse.ts deleted file mode 100644 index 0e219d1b8..000000000 --- a/src/api/resources/accounting/types/ExternalTargetFieldApiResponse.ts +++ /dev/null @@ -1,32 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface ExternalTargetFieldApiResponse { - account?: Merge.accounting.ExternalTargetFieldApi[]; - accountingAttachment?: Merge.accounting.ExternalTargetFieldApi[]; - balanceSheet?: Merge.accounting.ExternalTargetFieldApi[]; - cashFlowStatement?: Merge.accounting.ExternalTargetFieldApi[]; - companyInfo?: Merge.accounting.ExternalTargetFieldApi[]; - contact?: Merge.accounting.ExternalTargetFieldApi[]; - incomeStatement?: Merge.accounting.ExternalTargetFieldApi[]; - creditNote?: Merge.accounting.ExternalTargetFieldApi[]; - item?: Merge.accounting.ExternalTargetFieldApi[]; - purchaseOrder?: Merge.accounting.ExternalTargetFieldApi[]; - expenseReport?: Merge.accounting.ExternalTargetFieldApi[]; - trackingCategory?: Merge.accounting.ExternalTargetFieldApi[]; - journalEntry?: Merge.accounting.ExternalTargetFieldApi[]; - taxRate?: Merge.accounting.ExternalTargetFieldApi[]; - invoice?: Merge.accounting.ExternalTargetFieldApi[]; - payment?: Merge.accounting.ExternalTargetFieldApi[]; - expense?: Merge.accounting.ExternalTargetFieldApi[]; - vendorCredit?: Merge.accounting.ExternalTargetFieldApi[]; - transaction?: Merge.accounting.ExternalTargetFieldApi[]; - accountingPeriod?: Merge.accounting.ExternalTargetFieldApi[]; - generalLedgerTransaction?: Merge.accounting.ExternalTargetFieldApi[]; - bankFeedAccount?: Merge.accounting.ExternalTargetFieldApi[]; - employee?: Merge.accounting.ExternalTargetFieldApi[]; - paymentMethod?: Merge.accounting.ExternalTargetFieldApi[]; - project?: Merge.accounting.ExternalTargetFieldApi[]; - paymentTerm?: Merge.accounting.ExternalTargetFieldApi[]; -} diff --git a/src/api/resources/accounting/types/FeedStatusEnum.ts b/src/api/resources/accounting/types/FeedStatusEnum.ts deleted file mode 100644 index cf7981673..000000000 --- a/src/api/resources/accounting/types/FeedStatusEnum.ts +++ /dev/null @@ -1,11 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * * `ACTIVE` - ACTIVE - * * `INACTIVE` - INACTIVE - */ -export const FeedStatusEnum = { - Active: "ACTIVE", - Inactive: "INACTIVE", -} as const; -export type FeedStatusEnum = (typeof FeedStatusEnum)[keyof typeof FeedStatusEnum]; diff --git a/src/api/resources/accounting/types/FieldFormatEnum.ts b/src/api/resources/accounting/types/FieldFormatEnum.ts deleted file mode 100644 index 47fd5bfe9..000000000 --- a/src/api/resources/accounting/types/FieldFormatEnum.ts +++ /dev/null @@ -1,19 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * * `string` - string - * * `number` - number - * * `date` - date - * * `datetime` - datetime - * * `bool` - bool - * * `list` - list - */ -export const FieldFormatEnum = { - String: "string", - Number: "number", - Date: "date", - Datetime: "datetime", - Bool: "bool", - List: "list", -} as const; -export type FieldFormatEnum = (typeof FieldFormatEnum)[keyof typeof FieldFormatEnum]; diff --git a/src/api/resources/accounting/types/FieldMappingApiInstance.ts b/src/api/resources/accounting/types/FieldMappingApiInstance.ts deleted file mode 100644 index 7603ccaaa..000000000 --- a/src/api/resources/accounting/types/FieldMappingApiInstance.ts +++ /dev/null @@ -1,10 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface FieldMappingApiInstance { - id?: string; - isIntegrationWide?: boolean; - targetField?: Merge.accounting.FieldMappingApiInstanceTargetField; - remoteField?: Merge.accounting.FieldMappingApiInstanceRemoteField; -} diff --git a/src/api/resources/accounting/types/FieldMappingApiInstanceRemoteField.ts b/src/api/resources/accounting/types/FieldMappingApiInstanceRemoteField.ts deleted file mode 100644 index 61355ef40..000000000 --- a/src/api/resources/accounting/types/FieldMappingApiInstanceRemoteField.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface FieldMappingApiInstanceRemoteField { - remoteKeyName?: string; - schema?: Record; - remoteEndpointInfo: Merge.accounting.FieldMappingApiInstanceRemoteFieldRemoteEndpointInfo; -} diff --git a/src/api/resources/accounting/types/FieldMappingApiInstanceRemoteFieldRemoteEndpointInfo.ts b/src/api/resources/accounting/types/FieldMappingApiInstanceRemoteFieldRemoteEndpointInfo.ts deleted file mode 100644 index 1f6e6cb3c..000000000 --- a/src/api/resources/accounting/types/FieldMappingApiInstanceRemoteFieldRemoteEndpointInfo.ts +++ /dev/null @@ -1,7 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export interface FieldMappingApiInstanceRemoteFieldRemoteEndpointInfo { - method?: string; - urlPath?: string; - fieldTraversalPath?: string[]; -} diff --git a/src/api/resources/accounting/types/FieldMappingApiInstanceResponse.ts b/src/api/resources/accounting/types/FieldMappingApiInstanceResponse.ts deleted file mode 100644 index eabacbd8e..000000000 --- a/src/api/resources/accounting/types/FieldMappingApiInstanceResponse.ts +++ /dev/null @@ -1,32 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface FieldMappingApiInstanceResponse { - account?: Merge.accounting.FieldMappingApiInstance[]; - accountingAttachment?: Merge.accounting.FieldMappingApiInstance[]; - balanceSheet?: Merge.accounting.FieldMappingApiInstance[]; - cashFlowStatement?: Merge.accounting.FieldMappingApiInstance[]; - companyInfo?: Merge.accounting.FieldMappingApiInstance[]; - contact?: Merge.accounting.FieldMappingApiInstance[]; - incomeStatement?: Merge.accounting.FieldMappingApiInstance[]; - creditNote?: Merge.accounting.FieldMappingApiInstance[]; - item?: Merge.accounting.FieldMappingApiInstance[]; - purchaseOrder?: Merge.accounting.FieldMappingApiInstance[]; - expenseReport?: Merge.accounting.FieldMappingApiInstance[]; - trackingCategory?: Merge.accounting.FieldMappingApiInstance[]; - journalEntry?: Merge.accounting.FieldMappingApiInstance[]; - taxRate?: Merge.accounting.FieldMappingApiInstance[]; - invoice?: Merge.accounting.FieldMappingApiInstance[]; - payment?: Merge.accounting.FieldMappingApiInstance[]; - expense?: Merge.accounting.FieldMappingApiInstance[]; - vendorCredit?: Merge.accounting.FieldMappingApiInstance[]; - transaction?: Merge.accounting.FieldMappingApiInstance[]; - accountingPeriod?: Merge.accounting.FieldMappingApiInstance[]; - generalLedgerTransaction?: Merge.accounting.FieldMappingApiInstance[]; - bankFeedAccount?: Merge.accounting.FieldMappingApiInstance[]; - employee?: Merge.accounting.FieldMappingApiInstance[]; - paymentMethod?: Merge.accounting.FieldMappingApiInstance[]; - project?: Merge.accounting.FieldMappingApiInstance[]; - paymentTerm?: Merge.accounting.FieldMappingApiInstance[]; -} diff --git a/src/api/resources/accounting/types/FieldMappingApiInstanceTargetField.ts b/src/api/resources/accounting/types/FieldMappingApiInstanceTargetField.ts deleted file mode 100644 index da6fd1317..000000000 --- a/src/api/resources/accounting/types/FieldMappingApiInstanceTargetField.ts +++ /dev/null @@ -1,7 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export interface FieldMappingApiInstanceTargetField { - name: string; - description: string; - isOrganizationWide: boolean; -} diff --git a/src/api/resources/accounting/types/FieldMappingInstanceResponse.ts b/src/api/resources/accounting/types/FieldMappingInstanceResponse.ts deleted file mode 100644 index 5e22ad349..000000000 --- a/src/api/resources/accounting/types/FieldMappingInstanceResponse.ts +++ /dev/null @@ -1,10 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface FieldMappingInstanceResponse { - model: Merge.accounting.FieldMappingApiInstance; - warnings: Merge.accounting.WarningValidationProblem[]; - errors: Merge.accounting.ErrorValidationProblem[]; - logs?: Merge.accounting.DebugModeLog[]; -} diff --git a/src/api/resources/accounting/types/FieldPermissionDeserializer.ts b/src/api/resources/accounting/types/FieldPermissionDeserializer.ts deleted file mode 100644 index 62ec4f2de..000000000 --- a/src/api/resources/accounting/types/FieldPermissionDeserializer.ts +++ /dev/null @@ -1,6 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export interface FieldPermissionDeserializer { - enabledFields?: unknown[]; - disabledFields?: unknown[]; -} diff --git a/src/api/resources/accounting/types/FieldPermissionDeserializerRequest.ts b/src/api/resources/accounting/types/FieldPermissionDeserializerRequest.ts deleted file mode 100644 index 768c90546..000000000 --- a/src/api/resources/accounting/types/FieldPermissionDeserializerRequest.ts +++ /dev/null @@ -1,6 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export interface FieldPermissionDeserializerRequest { - enabledFields?: unknown[]; - disabledFields?: unknown[]; -} diff --git a/src/api/resources/accounting/types/FieldTypeEnum.ts b/src/api/resources/accounting/types/FieldTypeEnum.ts deleted file mode 100644 index 40fb1b5c6..000000000 --- a/src/api/resources/accounting/types/FieldTypeEnum.ts +++ /dev/null @@ -1,19 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * * `string` - string - * * `number` - number - * * `date` - date - * * `datetime` - datetime - * * `bool` - bool - * * `list` - list - */ -export const FieldTypeEnum = { - String: "string", - Number: "number", - Date: "date", - Datetime: "datetime", - Bool: "bool", - List: "list", -} as const; -export type FieldTypeEnum = (typeof FieldTypeEnum)[keyof typeof FieldTypeEnum]; diff --git a/src/api/resources/accounting/types/GeneralLedgerTransaction.ts b/src/api/resources/accounting/types/GeneralLedgerTransaction.ts deleted file mode 100644 index 6319cb1c6..000000000 --- a/src/api/resources/accounting/types/GeneralLedgerTransaction.ts +++ /dev/null @@ -1,56 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The GeneralLedgerTransaction Object - * ### Description - * A General Ledger Entry is a record of a financial transaction that is posted to the general ledger, the central repository of a company’s financial data. - * - * The `GeneralLedgerTransaction` object is a singular endpoint to pull all transactions posted to a company’s general ledger. The transaction that generated the `GeneralLedgerTransaction` can be found by referencing the `underlying_transaction_type` and `underlying_transaction_remote_id` fields. - * - * The lines of a `GeneralLedgerTransaction` object will always have equal amounts of debits and credits. - * - * ### Usage Example - * Fetch from the `GET GeneralLedgerTransaction` endpoint and view a general ledger transaction. - */ -export interface GeneralLedgerTransaction { - id?: string; - /** The third-party API ID of the matching object. */ - remoteId?: string; - /** The datetime that this object was created by Merge. */ - createdAt?: Date; - /** The datetime that this object was modified by Merge. */ - modifiedAt?: Date; - /** The third party remote ID of the underlying transaction. */ - underlyingTransactionRemoteId?: string; - /** - * The type of the underlying transaction. - * - * * `INVOICE` - INVOICE - * * `EXPENSE` - EXPENSE - * * `TRANSACTION` - TRANSACTION - * * `JOURNAL_ENTRY` - JOURNAL_ENTRY - * * `PAYMENT` - PAYMENT - * * `VENDOR_CREDIT` - VENDOR_CREDIT - * * `CREDIT_NOTE` - CREDIT_NOTE - */ - underlyingTransactionType?: Merge.accounting.GeneralLedgerTransactionUnderlyingTransactionType; - /** The accounting period that the GeneralLedgerTransaction was generated in. */ - accountingPeriod?: Merge.accounting.GeneralLedgerTransactionAccountingPeriod; - /** The company the GeneralLedgerTransaction belongs to. */ - company?: Merge.accounting.GeneralLedgerTransactionCompany; - /** When the third party's GeneralLedgerTransaction entry was updated. */ - remoteUpdatedAt?: Date; - /** When the third party's GeneralLedgerTransaction entry was created. */ - remoteCreatedAt?: Date; - trackingCategories?: (Merge.accounting.GeneralLedgerTransactionTrackingCategoriesItem | undefined)[]; - /** The date that the transaction was posted to the general ledger. */ - postingDate?: Date; - /** A list of “General Ledger Transaction Applied to Lines” objects. */ - generalLedgerTransactionLines?: Merge.accounting.GeneralLedgerTransactionGeneralLedgerTransactionLinesItem[]; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - remoteWasDeleted?: boolean; - fieldMappings?: Record; - remoteData?: Merge.accounting.RemoteData[]; -} diff --git a/src/api/resources/accounting/types/GeneralLedgerTransactionAccountingPeriod.ts b/src/api/resources/accounting/types/GeneralLedgerTransactionAccountingPeriod.ts deleted file mode 100644 index c33d14f5d..000000000 --- a/src/api/resources/accounting/types/GeneralLedgerTransactionAccountingPeriod.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The accounting period that the GeneralLedgerTransaction was generated in. - */ -export type GeneralLedgerTransactionAccountingPeriod = string | Merge.accounting.AccountingPeriod; diff --git a/src/api/resources/accounting/types/GeneralLedgerTransactionCompany.ts b/src/api/resources/accounting/types/GeneralLedgerTransactionCompany.ts deleted file mode 100644 index a2d8be965..000000000 --- a/src/api/resources/accounting/types/GeneralLedgerTransactionCompany.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The company the GeneralLedgerTransaction belongs to. - */ -export type GeneralLedgerTransactionCompany = string | Merge.accounting.CompanyInfo; diff --git a/src/api/resources/accounting/types/GeneralLedgerTransactionGeneralLedgerTransactionLinesItem.ts b/src/api/resources/accounting/types/GeneralLedgerTransactionGeneralLedgerTransactionLinesItem.ts deleted file mode 100644 index 89ba4e9fc..000000000 --- a/src/api/resources/accounting/types/GeneralLedgerTransactionGeneralLedgerTransactionLinesItem.ts +++ /dev/null @@ -1,7 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type GeneralLedgerTransactionGeneralLedgerTransactionLinesItem = - | string - | Merge.accounting.GeneralLedgerTransactionLine; diff --git a/src/api/resources/accounting/types/GeneralLedgerTransactionLine.ts b/src/api/resources/accounting/types/GeneralLedgerTransactionLine.ts deleted file mode 100644 index 7be17c8c0..000000000 --- a/src/api/resources/accounting/types/GeneralLedgerTransactionLine.ts +++ /dev/null @@ -1,662 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The GeneralLedgerTransactionLineSerializer Object - * ### Description - * The `GeneralLedgerTransactionLineSerializer` object represents general ledger transaction line item. - * - * ### Usage Example Fetch from the `GET GeneralLedgerTransactionLineSerializer` endpoint and view an - * `GeneralLedgerTransaction` line item. - */ -export interface GeneralLedgerTransactionLine { - id?: string; - /** The third-party API ID of the matching object. */ - remoteId?: string; - /** The datetime that this object was created by Merge. */ - createdAt?: Date; - /** The datetime that this object was modified by Merge. */ - modifiedAt?: Date; - account?: Merge.accounting.GeneralLedgerTransactionLineAccount; - /** The company the GeneralLedgerTransaction belongs to. */ - company?: Merge.accounting.GeneralLedgerTransactionLineCompany; - employee?: Merge.accounting.GeneralLedgerTransactionLineEmployee; - contact?: Merge.accounting.GeneralLedgerTransactionLineContact; - project?: Merge.accounting.GeneralLedgerTransactionLineProject; - /** - * The base currency of the transaction - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ - baseCurrency?: Merge.accounting.GeneralLedgerTransactionLineBaseCurrency; - /** - * The transaction currency that the transaction is made in. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ - transactionCurrency?: Merge.accounting.GeneralLedgerTransactionLineTransactionCurrency; - /** The exchange rate between the base currency and the transaction currency. */ - exchangeRate?: string; - /** A description of the line item. */ - description?: string; - trackingCategories?: Merge.accounting.GeneralLedgerTransactionLineTrackingCategoriesItem[]; - debitAmount: string; - creditAmount: string; - item?: Merge.accounting.GeneralLedgerTransactionLineItem; - foreignDebitAmount: string; - foreignCreditAmount: string; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - remoteWasDeleted?: boolean; - fieldMappings?: Record; -} diff --git a/src/api/resources/accounting/types/GeneralLedgerTransactionLineAccount.ts b/src/api/resources/accounting/types/GeneralLedgerTransactionLineAccount.ts deleted file mode 100644 index 795a009fc..000000000 --- a/src/api/resources/accounting/types/GeneralLedgerTransactionLineAccount.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type GeneralLedgerTransactionLineAccount = string | Merge.accounting.Account; diff --git a/src/api/resources/accounting/types/GeneralLedgerTransactionLineBaseCurrency.ts b/src/api/resources/accounting/types/GeneralLedgerTransactionLineBaseCurrency.ts deleted file mode 100644 index 07db5ea59..000000000 --- a/src/api/resources/accounting/types/GeneralLedgerTransactionLineBaseCurrency.ts +++ /dev/null @@ -1,315 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The base currency of the transaction - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ -export type GeneralLedgerTransactionLineBaseCurrency = Merge.accounting.TransactionCurrencyEnum | string; diff --git a/src/api/resources/accounting/types/GeneralLedgerTransactionLineCompany.ts b/src/api/resources/accounting/types/GeneralLedgerTransactionLineCompany.ts deleted file mode 100644 index 7ccac2f18..000000000 --- a/src/api/resources/accounting/types/GeneralLedgerTransactionLineCompany.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The company the GeneralLedgerTransaction belongs to. - */ -export type GeneralLedgerTransactionLineCompany = string | Merge.accounting.CompanyInfo; diff --git a/src/api/resources/accounting/types/GeneralLedgerTransactionLineContact.ts b/src/api/resources/accounting/types/GeneralLedgerTransactionLineContact.ts deleted file mode 100644 index d610ace12..000000000 --- a/src/api/resources/accounting/types/GeneralLedgerTransactionLineContact.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type GeneralLedgerTransactionLineContact = string | Merge.accounting.Contact; diff --git a/src/api/resources/accounting/types/GeneralLedgerTransactionLineEmployee.ts b/src/api/resources/accounting/types/GeneralLedgerTransactionLineEmployee.ts deleted file mode 100644 index dcbf373ab..000000000 --- a/src/api/resources/accounting/types/GeneralLedgerTransactionLineEmployee.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type GeneralLedgerTransactionLineEmployee = string | Merge.accounting.Employee; diff --git a/src/api/resources/accounting/types/GeneralLedgerTransactionLineItem.ts b/src/api/resources/accounting/types/GeneralLedgerTransactionLineItem.ts deleted file mode 100644 index a2b13972a..000000000 --- a/src/api/resources/accounting/types/GeneralLedgerTransactionLineItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type GeneralLedgerTransactionLineItem = string | Merge.accounting.Item; diff --git a/src/api/resources/accounting/types/GeneralLedgerTransactionLineProject.ts b/src/api/resources/accounting/types/GeneralLedgerTransactionLineProject.ts deleted file mode 100644 index 7bfaa7219..000000000 --- a/src/api/resources/accounting/types/GeneralLedgerTransactionLineProject.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type GeneralLedgerTransactionLineProject = string | Merge.accounting.Project; diff --git a/src/api/resources/accounting/types/GeneralLedgerTransactionLineTrackingCategoriesItem.ts b/src/api/resources/accounting/types/GeneralLedgerTransactionLineTrackingCategoriesItem.ts deleted file mode 100644 index 3653c0cc9..000000000 --- a/src/api/resources/accounting/types/GeneralLedgerTransactionLineTrackingCategoriesItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type GeneralLedgerTransactionLineTrackingCategoriesItem = string | Merge.accounting.TrackingCategory; diff --git a/src/api/resources/accounting/types/GeneralLedgerTransactionLineTransactionCurrency.ts b/src/api/resources/accounting/types/GeneralLedgerTransactionLineTransactionCurrency.ts deleted file mode 100644 index 19a693810..000000000 --- a/src/api/resources/accounting/types/GeneralLedgerTransactionLineTransactionCurrency.ts +++ /dev/null @@ -1,315 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The transaction currency that the transaction is made in. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ -export type GeneralLedgerTransactionLineTransactionCurrency = Merge.accounting.TransactionCurrencyEnum | string; diff --git a/src/api/resources/accounting/types/GeneralLedgerTransactionTrackingCategoriesItem.ts b/src/api/resources/accounting/types/GeneralLedgerTransactionTrackingCategoriesItem.ts deleted file mode 100644 index eddcb8c86..000000000 --- a/src/api/resources/accounting/types/GeneralLedgerTransactionTrackingCategoriesItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type GeneralLedgerTransactionTrackingCategoriesItem = string | Merge.accounting.TrackingCategory; diff --git a/src/api/resources/accounting/types/GeneralLedgerTransactionUnderlyingTransactionType.ts b/src/api/resources/accounting/types/GeneralLedgerTransactionUnderlyingTransactionType.ts deleted file mode 100644 index c81f0357d..000000000 --- a/src/api/resources/accounting/types/GeneralLedgerTransactionUnderlyingTransactionType.ts +++ /dev/null @@ -1,16 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The type of the underlying transaction. - * - * * `INVOICE` - INVOICE - * * `EXPENSE` - EXPENSE - * * `TRANSACTION` - TRANSACTION - * * `JOURNAL_ENTRY` - JOURNAL_ENTRY - * * `PAYMENT` - PAYMENT - * * `VENDOR_CREDIT` - VENDOR_CREDIT - * * `CREDIT_NOTE` - CREDIT_NOTE - */ -export type GeneralLedgerTransactionUnderlyingTransactionType = Merge.accounting.UnderlyingTransactionTypeEnum | string; diff --git a/src/api/resources/accounting/types/IncomeStatement.ts b/src/api/resources/accounting/types/IncomeStatement.ts deleted file mode 100644 index 25ed3ea31..000000000 --- a/src/api/resources/accounting/types/IncomeStatement.ts +++ /dev/null @@ -1,354 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The IncomeStatement Object - * ### Description - * The `IncomeStatement` object is used to represent a company’s income, the cost of sales, operating expenses, and other non-operating expenses. The object also includes other important values like gross profit, gross operating profit, and net income. This represents a period of time (month, quarter, or year). - * - * ### Usage Example - * Fetch from the `GET IncomeStatement` endpoint and view a company's income statement for a given period. - */ -export interface IncomeStatement { - id?: string; - /** The third-party API ID of the matching object. */ - remoteId?: string; - /** The datetime that this object was created by Merge. */ - createdAt?: Date; - /** The datetime that this object was modified by Merge. */ - modifiedAt?: Date; - /** The income statement's name. */ - name?: string; - /** - * The income statement's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ - currency?: Merge.accounting.IncomeStatementCurrency; - /** The company the income statement belongs to. */ - company?: Merge.accounting.IncomeStatementCompany; - /** The income statement's start period. */ - startPeriod?: Date; - /** The income statement's end period. */ - endPeriod?: Date; - income?: Merge.accounting.ReportItem[]; - costOfSales?: Merge.accounting.ReportItem[]; - /** The revenue minus the cost of sale. */ - grossProfit?: number; - operatingExpenses?: Merge.accounting.ReportItem[]; - /** The revenue minus the operating expenses. */ - netOperatingIncome?: number; - nonOperatingExpenses?: Merge.accounting.ReportItem[]; - /** The gross profit minus the total expenses. */ - netIncome?: number; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - remoteWasDeleted?: boolean; - fieldMappings?: Record; - remoteData?: Merge.accounting.RemoteData[]; -} diff --git a/src/api/resources/accounting/types/IncomeStatementCompany.ts b/src/api/resources/accounting/types/IncomeStatementCompany.ts deleted file mode 100644 index 51af6e917..000000000 --- a/src/api/resources/accounting/types/IncomeStatementCompany.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The company the income statement belongs to. - */ -export type IncomeStatementCompany = string | Merge.accounting.CompanyInfo; diff --git a/src/api/resources/accounting/types/IncomeStatementCurrency.ts b/src/api/resources/accounting/types/IncomeStatementCurrency.ts deleted file mode 100644 index 2bcc3a5b4..000000000 --- a/src/api/resources/accounting/types/IncomeStatementCurrency.ts +++ /dev/null @@ -1,315 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The income statement's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ -export type IncomeStatementCurrency = Merge.accounting.TransactionCurrencyEnum | string; diff --git a/src/api/resources/accounting/types/IndividualCommonModelScopeDeserializer.ts b/src/api/resources/accounting/types/IndividualCommonModelScopeDeserializer.ts deleted file mode 100644 index e4e402481..000000000 --- a/src/api/resources/accounting/types/IndividualCommonModelScopeDeserializer.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface IndividualCommonModelScopeDeserializer { - modelName: string; - modelPermissions?: Record; - fieldPermissions?: Merge.accounting.FieldPermissionDeserializer; -} diff --git a/src/api/resources/accounting/types/IndividualCommonModelScopeDeserializerRequest.ts b/src/api/resources/accounting/types/IndividualCommonModelScopeDeserializerRequest.ts deleted file mode 100644 index a3999b4d4..000000000 --- a/src/api/resources/accounting/types/IndividualCommonModelScopeDeserializerRequest.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface IndividualCommonModelScopeDeserializerRequest { - modelName: string; - modelPermissions?: Record; - fieldPermissions?: Merge.accounting.FieldPermissionDeserializerRequest; -} diff --git a/src/api/resources/accounting/types/Invoice.ts b/src/api/resources/accounting/types/Invoice.ts deleted file mode 100644 index 58181f2e2..000000000 --- a/src/api/resources/accounting/types/Invoice.ts +++ /dev/null @@ -1,405 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The Invoice Object - * ### Description - * The `Invoice` object represents an itemized record of goods and/or services sold to a customer or bought from a vendor. - * - * - * Represents a Bill when the `Invoice` type is `ACCOUNTS_PAYABLE`. References an Invoice when the `Invoice` type is `ACCOUNTS_RECEIVABLE`. - * - * ### Usage Example - * Fetch from the `LIST Invoices` endpoint and view a company's invoices. - */ -export interface Invoice { - id?: string; - /** The third-party API ID of the matching object. */ - remoteId?: string; - /** The datetime that this object was created by Merge. */ - createdAt?: Date; - /** The datetime that this object was modified by Merge. */ - modifiedAt?: Date; - /** - * Whether the invoice is an accounts receivable or accounts payable. If `type` is `ACCOUNTS_PAYABLE`, the invoice is a bill. If `type` is `ACCOUNTS_RECEIVABLE`, it is an invoice. - * - * * `ACCOUNTS_RECEIVABLE` - ACCOUNTS_RECEIVABLE - * * `ACCOUNTS_PAYABLE` - ACCOUNTS_PAYABLE - */ - type?: Merge.accounting.InvoiceType; - /** The invoice's contact. */ - contact?: Merge.accounting.InvoiceContact; - /** The invoice's number. */ - number?: string; - /** The invoice's issue date. */ - issueDate?: Date; - /** The invoice's due date. */ - dueDate?: Date; - /** The invoice's paid date. */ - paidOnDate?: Date; - /** The invoice's private note. */ - memo?: string; - /** The company the invoice belongs to. */ - company?: Merge.accounting.InvoiceCompany; - /** The employee this overall transaction relates to. */ - employee?: Merge.accounting.InvoiceEmployee; - /** - * The invoice's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ - currency?: Merge.accounting.InvoiceCurrency; - /** The invoice's exchange rate. */ - exchangeRate?: string; - /** The payment term that applies to this transaction. */ - paymentTerm?: Merge.accounting.InvoicePaymentTerm; - /** The total discounts applied to the total cost. */ - totalDiscount?: number; - /** The total amount being paid before taxes. */ - subTotal?: number; - /** - * The status of the invoice. - * - * * `PAID` - PAID - * * `DRAFT` - DRAFT - * * `SUBMITTED` - SUBMITTED - * * `PARTIALLY_PAID` - PARTIALLY_PAID - * * `OPEN` - OPEN - * * `VOID` - VOID - */ - status?: Merge.accounting.InvoiceStatus; - /** The total amount being paid in taxes. */ - totalTaxAmount?: number; - /** The invoice's total amount. */ - totalAmount?: number; - /** The invoice's remaining balance. */ - balance?: number; - /** When the third party's invoice entry was updated. */ - remoteUpdatedAt?: Date; - trackingCategories?: (Merge.accounting.InvoiceTrackingCategoriesItem | undefined)[]; - /** The accounting period that the Invoice was generated in. */ - accountingPeriod?: Merge.accounting.InvoiceAccountingPeriod; - purchaseOrders?: (Merge.accounting.InvoicePurchaseOrdersItem | undefined)[]; - /** Array of `Payment` object IDs. */ - payments?: (Merge.accounting.InvoicePaymentsItem | undefined)[]; - /** A list of the Payment Applied to Lines common models related to a given Invoice, Credit Note, or Journal Entry. */ - appliedPayments?: (Merge.accounting.InvoiceAppliedPaymentsItem | undefined)[]; - lineItems?: Merge.accounting.InvoiceLineItem[]; - /** `CreditNoteApplyLines` applied to the Invoice. */ - appliedCreditNotes?: Merge.accounting.InvoiceAppliedCreditNotesItem[]; - /** `VendorCreditApplyLines` applied to the Invoice. */ - appliedVendorCredits?: Merge.accounting.InvoiceAppliedVendorCreditsItem[]; - /** If the transaction is inclusive or exclusive of tax. `True` if inclusive, `False` if exclusive. */ - inclusiveOfTax?: boolean; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - remoteWasDeleted?: boolean; - fieldMappings?: Record; - remoteData?: Merge.accounting.RemoteData[]; - remoteFields?: Merge.accounting.RemoteField[]; -} diff --git a/src/api/resources/accounting/types/InvoiceAccountingPeriod.ts b/src/api/resources/accounting/types/InvoiceAccountingPeriod.ts deleted file mode 100644 index 7156ffd86..000000000 --- a/src/api/resources/accounting/types/InvoiceAccountingPeriod.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The accounting period that the Invoice was generated in. - */ -export type InvoiceAccountingPeriod = string | Merge.accounting.AccountingPeriod; diff --git a/src/api/resources/accounting/types/InvoiceAppliedCreditNotesItem.ts b/src/api/resources/accounting/types/InvoiceAppliedCreditNotesItem.ts deleted file mode 100644 index 7424de066..000000000 --- a/src/api/resources/accounting/types/InvoiceAppliedCreditNotesItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type InvoiceAppliedCreditNotesItem = string | Merge.accounting.CreditNoteApplyLineForInvoice; diff --git a/src/api/resources/accounting/types/InvoiceAppliedPaymentsItem.ts b/src/api/resources/accounting/types/InvoiceAppliedPaymentsItem.ts deleted file mode 100644 index 4d1b135a8..000000000 --- a/src/api/resources/accounting/types/InvoiceAppliedPaymentsItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type InvoiceAppliedPaymentsItem = string | Merge.accounting.PaymentLineItem; diff --git a/src/api/resources/accounting/types/InvoiceAppliedVendorCreditsItem.ts b/src/api/resources/accounting/types/InvoiceAppliedVendorCreditsItem.ts deleted file mode 100644 index 0e11bde3f..000000000 --- a/src/api/resources/accounting/types/InvoiceAppliedVendorCreditsItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type InvoiceAppliedVendorCreditsItem = string | Merge.accounting.VendorCreditApplyLineForInvoice; diff --git a/src/api/resources/accounting/types/InvoiceCompany.ts b/src/api/resources/accounting/types/InvoiceCompany.ts deleted file mode 100644 index 234527d54..000000000 --- a/src/api/resources/accounting/types/InvoiceCompany.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The company the invoice belongs to. - */ -export type InvoiceCompany = string | Merge.accounting.CompanyInfo; diff --git a/src/api/resources/accounting/types/InvoiceContact.ts b/src/api/resources/accounting/types/InvoiceContact.ts deleted file mode 100644 index fa37e5c9d..000000000 --- a/src/api/resources/accounting/types/InvoiceContact.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The invoice's contact. - */ -export type InvoiceContact = string | Merge.accounting.Contact; diff --git a/src/api/resources/accounting/types/InvoiceCurrency.ts b/src/api/resources/accounting/types/InvoiceCurrency.ts deleted file mode 100644 index 63856dbe1..000000000 --- a/src/api/resources/accounting/types/InvoiceCurrency.ts +++ /dev/null @@ -1,315 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The invoice's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ -export type InvoiceCurrency = Merge.accounting.TransactionCurrencyEnum | string; diff --git a/src/api/resources/accounting/types/InvoiceEmployee.ts b/src/api/resources/accounting/types/InvoiceEmployee.ts deleted file mode 100644 index 66dbcc4ed..000000000 --- a/src/api/resources/accounting/types/InvoiceEmployee.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The employee this overall transaction relates to. - */ -export type InvoiceEmployee = string | Merge.accounting.Employee; diff --git a/src/api/resources/accounting/types/InvoiceLineItem.ts b/src/api/resources/accounting/types/InvoiceLineItem.ts deleted file mode 100644 index 2d7a25272..000000000 --- a/src/api/resources/accounting/types/InvoiceLineItem.ts +++ /dev/null @@ -1,360 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The InvoiceLineItem Object - * ### Description - * The `InvoiceLineItem` object represents an itemized record of goods and/or services sold to a customer. - * - * ### Usage Example - * Fetch from the `GET Invoice` endpoint and view the invoice's line items. - */ -export interface InvoiceLineItem { - id?: string; - /** The third-party API ID of the matching object. */ - remoteId?: string; - /** The datetime that this object was created by Merge. */ - createdAt?: Date; - /** The datetime that this object was modified by Merge. */ - modifiedAt?: Date; - /** The line item's description. */ - description?: string; - /** The line item's unit price. */ - unitPrice?: number; - /** The line item's quantity. */ - quantity?: number; - /** The line item's total amount. */ - totalAmount?: number; - /** The employee this overall transaction relates to. */ - employee?: Merge.accounting.InvoiceLineItemEmployee; - project?: Merge.accounting.InvoiceLineItemProject; - /** The invoice's contact. */ - contact?: Merge.accounting.InvoiceLineItemContact; - /** - * The line item's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ - currency?: Merge.accounting.InvoiceLineItemCurrency; - /** The line item's exchange rate. */ - exchangeRate?: string; - item?: Merge.accounting.InvoiceLineItemItem; - account?: Merge.accounting.InvoiceLineItemAccount; - /** The tax rate that applies to this line item. */ - taxRate?: string; - trackingCategory?: Merge.accounting.InvoiceLineItemTrackingCategory; - /** The invoice line item's associated tracking categories. */ - trackingCategories?: (Merge.accounting.InvoiceLineItemTrackingCategoriesItem | undefined)[]; - /** The company the invoice belongs to. */ - company?: string; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - remoteWasDeleted?: boolean; - fieldMappings?: Record; - remoteFields?: Merge.accounting.RemoteField[]; -} diff --git a/src/api/resources/accounting/types/InvoiceLineItemAccount.ts b/src/api/resources/accounting/types/InvoiceLineItemAccount.ts deleted file mode 100644 index 9e514b581..000000000 --- a/src/api/resources/accounting/types/InvoiceLineItemAccount.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type InvoiceLineItemAccount = string | Merge.accounting.Account; diff --git a/src/api/resources/accounting/types/InvoiceLineItemContact.ts b/src/api/resources/accounting/types/InvoiceLineItemContact.ts deleted file mode 100644 index a94609ced..000000000 --- a/src/api/resources/accounting/types/InvoiceLineItemContact.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The invoice's contact. - */ -export type InvoiceLineItemContact = string | Merge.accounting.Contact; diff --git a/src/api/resources/accounting/types/InvoiceLineItemCurrency.ts b/src/api/resources/accounting/types/InvoiceLineItemCurrency.ts deleted file mode 100644 index 2441a98c8..000000000 --- a/src/api/resources/accounting/types/InvoiceLineItemCurrency.ts +++ /dev/null @@ -1,315 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The line item's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ -export type InvoiceLineItemCurrency = Merge.accounting.TransactionCurrencyEnum | string; diff --git a/src/api/resources/accounting/types/InvoiceLineItemEmployee.ts b/src/api/resources/accounting/types/InvoiceLineItemEmployee.ts deleted file mode 100644 index e0c076307..000000000 --- a/src/api/resources/accounting/types/InvoiceLineItemEmployee.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The employee this overall transaction relates to. - */ -export type InvoiceLineItemEmployee = string | Merge.accounting.Employee; diff --git a/src/api/resources/accounting/types/InvoiceLineItemItem.ts b/src/api/resources/accounting/types/InvoiceLineItemItem.ts deleted file mode 100644 index 7e2bf69fe..000000000 --- a/src/api/resources/accounting/types/InvoiceLineItemItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type InvoiceLineItemItem = string | Merge.accounting.Item; diff --git a/src/api/resources/accounting/types/InvoiceLineItemProject.ts b/src/api/resources/accounting/types/InvoiceLineItemProject.ts deleted file mode 100644 index ef89929ac..000000000 --- a/src/api/resources/accounting/types/InvoiceLineItemProject.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type InvoiceLineItemProject = string | Merge.accounting.Project; diff --git a/src/api/resources/accounting/types/InvoiceLineItemRequest.ts b/src/api/resources/accounting/types/InvoiceLineItemRequest.ts deleted file mode 100644 index bd1131ac2..000000000 --- a/src/api/resources/accounting/types/InvoiceLineItemRequest.ts +++ /dev/null @@ -1,354 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The InvoiceLineItem Object - * ### Description - * The `InvoiceLineItem` object represents an itemized record of goods and/or services sold to a customer. - * - * ### Usage Example - * Fetch from the `GET Invoice` endpoint and view the invoice's line items. - */ -export interface InvoiceLineItemRequest { - /** The third-party API ID of the matching object. */ - remoteId?: string; - /** The line item's description. */ - description?: string; - /** The line item's unit price. */ - unitPrice?: number; - /** The line item's quantity. */ - quantity?: number; - /** The line item's total amount. */ - totalAmount?: number; - /** The employee this overall transaction relates to. */ - employee?: Merge.accounting.InvoiceLineItemRequestEmployee; - project?: Merge.accounting.InvoiceLineItemRequestProject; - /** The invoice's contact. */ - contact?: Merge.accounting.InvoiceLineItemRequestContact; - /** - * The line item's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ - currency?: Merge.accounting.InvoiceLineItemRequestCurrency; - /** The line item's exchange rate. */ - exchangeRate?: string; - item?: Merge.accounting.InvoiceLineItemRequestItem; - account?: Merge.accounting.InvoiceLineItemRequestAccount; - /** The tax rate that applies to this line item. */ - taxRate?: string; - trackingCategory?: Merge.accounting.InvoiceLineItemRequestTrackingCategory; - /** The invoice line item's associated tracking categories. */ - trackingCategories?: (Merge.accounting.InvoiceLineItemRequestTrackingCategoriesItem | undefined)[]; - /** The company the invoice belongs to. */ - company?: string; - integrationParams?: Record; - linkedAccountParams?: Record; - remoteFields?: Merge.accounting.RemoteFieldRequest[]; -} diff --git a/src/api/resources/accounting/types/InvoiceLineItemRequestAccount.ts b/src/api/resources/accounting/types/InvoiceLineItemRequestAccount.ts deleted file mode 100644 index b751b9c8d..000000000 --- a/src/api/resources/accounting/types/InvoiceLineItemRequestAccount.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type InvoiceLineItemRequestAccount = string | Merge.accounting.Account; diff --git a/src/api/resources/accounting/types/InvoiceLineItemRequestContact.ts b/src/api/resources/accounting/types/InvoiceLineItemRequestContact.ts deleted file mode 100644 index 2588517a4..000000000 --- a/src/api/resources/accounting/types/InvoiceLineItemRequestContact.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The invoice's contact. - */ -export type InvoiceLineItemRequestContact = string | Merge.accounting.Contact; diff --git a/src/api/resources/accounting/types/InvoiceLineItemRequestCurrency.ts b/src/api/resources/accounting/types/InvoiceLineItemRequestCurrency.ts deleted file mode 100644 index c6fa5879f..000000000 --- a/src/api/resources/accounting/types/InvoiceLineItemRequestCurrency.ts +++ /dev/null @@ -1,315 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The line item's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ -export type InvoiceLineItemRequestCurrency = Merge.accounting.TransactionCurrencyEnum | string; diff --git a/src/api/resources/accounting/types/InvoiceLineItemRequestEmployee.ts b/src/api/resources/accounting/types/InvoiceLineItemRequestEmployee.ts deleted file mode 100644 index a238e838b..000000000 --- a/src/api/resources/accounting/types/InvoiceLineItemRequestEmployee.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The employee this overall transaction relates to. - */ -export type InvoiceLineItemRequestEmployee = string | Merge.accounting.Employee; diff --git a/src/api/resources/accounting/types/InvoiceLineItemRequestItem.ts b/src/api/resources/accounting/types/InvoiceLineItemRequestItem.ts deleted file mode 100644 index 8f774e46a..000000000 --- a/src/api/resources/accounting/types/InvoiceLineItemRequestItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type InvoiceLineItemRequestItem = string | Merge.accounting.Item; diff --git a/src/api/resources/accounting/types/InvoiceLineItemRequestProject.ts b/src/api/resources/accounting/types/InvoiceLineItemRequestProject.ts deleted file mode 100644 index 511c9ddf8..000000000 --- a/src/api/resources/accounting/types/InvoiceLineItemRequestProject.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type InvoiceLineItemRequestProject = string | Merge.accounting.Project; diff --git a/src/api/resources/accounting/types/InvoiceLineItemRequestTrackingCategoriesItem.ts b/src/api/resources/accounting/types/InvoiceLineItemRequestTrackingCategoriesItem.ts deleted file mode 100644 index ab39e0283..000000000 --- a/src/api/resources/accounting/types/InvoiceLineItemRequestTrackingCategoriesItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type InvoiceLineItemRequestTrackingCategoriesItem = string | Merge.accounting.TrackingCategory; diff --git a/src/api/resources/accounting/types/InvoiceLineItemRequestTrackingCategory.ts b/src/api/resources/accounting/types/InvoiceLineItemRequestTrackingCategory.ts deleted file mode 100644 index 73c6e84b6..000000000 --- a/src/api/resources/accounting/types/InvoiceLineItemRequestTrackingCategory.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type InvoiceLineItemRequestTrackingCategory = string | Merge.accounting.TrackingCategory; diff --git a/src/api/resources/accounting/types/InvoiceLineItemTrackingCategoriesItem.ts b/src/api/resources/accounting/types/InvoiceLineItemTrackingCategoriesItem.ts deleted file mode 100644 index 726e80261..000000000 --- a/src/api/resources/accounting/types/InvoiceLineItemTrackingCategoriesItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type InvoiceLineItemTrackingCategoriesItem = string | Merge.accounting.TrackingCategory; diff --git a/src/api/resources/accounting/types/InvoiceLineItemTrackingCategory.ts b/src/api/resources/accounting/types/InvoiceLineItemTrackingCategory.ts deleted file mode 100644 index fb1c93e01..000000000 --- a/src/api/resources/accounting/types/InvoiceLineItemTrackingCategory.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type InvoiceLineItemTrackingCategory = string | Merge.accounting.TrackingCategory; diff --git a/src/api/resources/accounting/types/InvoicePaymentTerm.ts b/src/api/resources/accounting/types/InvoicePaymentTerm.ts deleted file mode 100644 index e1dc70c62..000000000 --- a/src/api/resources/accounting/types/InvoicePaymentTerm.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The payment term that applies to this transaction. - */ -export type InvoicePaymentTerm = string | Merge.accounting.PaymentTerm; diff --git a/src/api/resources/accounting/types/InvoicePaymentsItem.ts b/src/api/resources/accounting/types/InvoicePaymentsItem.ts deleted file mode 100644 index f37c054fe..000000000 --- a/src/api/resources/accounting/types/InvoicePaymentsItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type InvoicePaymentsItem = string | Merge.accounting.Payment; diff --git a/src/api/resources/accounting/types/InvoicePurchaseOrdersItem.ts b/src/api/resources/accounting/types/InvoicePurchaseOrdersItem.ts deleted file mode 100644 index 2a34e6202..000000000 --- a/src/api/resources/accounting/types/InvoicePurchaseOrdersItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type InvoicePurchaseOrdersItem = string | Merge.accounting.PurchaseOrder; diff --git a/src/api/resources/accounting/types/InvoiceRequest.ts b/src/api/resources/accounting/types/InvoiceRequest.ts deleted file mode 100644 index bd0e3111c..000000000 --- a/src/api/resources/accounting/types/InvoiceRequest.ts +++ /dev/null @@ -1,386 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The Invoice Object - * ### Description - * The `Invoice` object represents an itemized record of goods and/or services sold to a customer or bought from a vendor. - * - * - * Represents a Bill when the `Invoice` type is `ACCOUNTS_PAYABLE`. References an Invoice when the `Invoice` type is `ACCOUNTS_RECEIVABLE`. - * - * ### Usage Example - * Fetch from the `LIST Invoices` endpoint and view a company's invoices. - */ -export interface InvoiceRequest { - /** - * Whether the invoice is an accounts receivable or accounts payable. If `type` is `ACCOUNTS_PAYABLE`, the invoice is a bill. If `type` is `ACCOUNTS_RECEIVABLE`, it is an invoice. - * - * * `ACCOUNTS_RECEIVABLE` - ACCOUNTS_RECEIVABLE - * * `ACCOUNTS_PAYABLE` - ACCOUNTS_PAYABLE - */ - type?: Merge.accounting.InvoiceRequestType; - /** The invoice's contact. */ - contact?: Merge.accounting.InvoiceRequestContact; - /** The invoice's number. */ - number?: string; - /** The invoice's issue date. */ - issueDate?: Date; - /** The invoice's due date. */ - dueDate?: Date; - /** The invoice's paid date. */ - paidOnDate?: Date; - /** The employee this overall transaction relates to. */ - employee?: Merge.accounting.InvoiceRequestEmployee; - /** The invoice's private note. */ - memo?: string; - /** - * The status of the invoice. - * - * * `PAID` - PAID - * * `DRAFT` - DRAFT - * * `SUBMITTED` - SUBMITTED - * * `PARTIALLY_PAID` - PARTIALLY_PAID - * * `OPEN` - OPEN - * * `VOID` - VOID - */ - status?: Merge.accounting.InvoiceRequestStatus; - /** The company the invoice belongs to. */ - company?: Merge.accounting.InvoiceRequestCompany; - /** - * The invoice's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ - currency?: Merge.accounting.InvoiceRequestCurrency; - /** The invoice's exchange rate. */ - exchangeRate?: string; - /** The total discounts applied to the total cost. */ - totalDiscount?: number; - /** The total amount being paid before taxes. */ - subTotal?: number; - /** The payment term that applies to this transaction. */ - paymentTerm?: Merge.accounting.InvoiceRequestPaymentTerm; - /** The total amount being paid in taxes. */ - totalTaxAmount?: number; - /** If the transaction is inclusive or exclusive of tax. `True` if inclusive, `False` if exclusive. */ - inclusiveOfTax?: boolean; - /** The invoice's total amount. */ - totalAmount?: number; - /** The invoice's remaining balance. */ - balance?: number; - /** Array of `Payment` object IDs. */ - payments?: (Merge.accounting.InvoiceRequestPaymentsItem | undefined)[]; - trackingCategories?: (Merge.accounting.InvoiceRequestTrackingCategoriesItem | undefined)[]; - lineItems?: Merge.accounting.InvoiceLineItemRequest[]; - purchaseOrders?: (Merge.accounting.InvoiceRequestPurchaseOrdersItem | undefined)[]; - integrationParams?: Record; - linkedAccountParams?: Record; - remoteFields?: Merge.accounting.RemoteFieldRequest[]; -} diff --git a/src/api/resources/accounting/types/InvoiceRequestCompany.ts b/src/api/resources/accounting/types/InvoiceRequestCompany.ts deleted file mode 100644 index 8bbf6d54d..000000000 --- a/src/api/resources/accounting/types/InvoiceRequestCompany.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The company the invoice belongs to. - */ -export type InvoiceRequestCompany = string | Merge.accounting.CompanyInfo; diff --git a/src/api/resources/accounting/types/InvoiceRequestContact.ts b/src/api/resources/accounting/types/InvoiceRequestContact.ts deleted file mode 100644 index 76f17e2d4..000000000 --- a/src/api/resources/accounting/types/InvoiceRequestContact.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The invoice's contact. - */ -export type InvoiceRequestContact = string | Merge.accounting.Contact; diff --git a/src/api/resources/accounting/types/InvoiceRequestCurrency.ts b/src/api/resources/accounting/types/InvoiceRequestCurrency.ts deleted file mode 100644 index 9b7c4815d..000000000 --- a/src/api/resources/accounting/types/InvoiceRequestCurrency.ts +++ /dev/null @@ -1,315 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The invoice's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ -export type InvoiceRequestCurrency = Merge.accounting.TransactionCurrencyEnum | string; diff --git a/src/api/resources/accounting/types/InvoiceRequestEmployee.ts b/src/api/resources/accounting/types/InvoiceRequestEmployee.ts deleted file mode 100644 index 9ffe67e66..000000000 --- a/src/api/resources/accounting/types/InvoiceRequestEmployee.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The employee this overall transaction relates to. - */ -export type InvoiceRequestEmployee = string | Merge.accounting.Employee; diff --git a/src/api/resources/accounting/types/InvoiceRequestPaymentTerm.ts b/src/api/resources/accounting/types/InvoiceRequestPaymentTerm.ts deleted file mode 100644 index b4611affa..000000000 --- a/src/api/resources/accounting/types/InvoiceRequestPaymentTerm.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The payment term that applies to this transaction. - */ -export type InvoiceRequestPaymentTerm = string | Merge.accounting.PaymentTerm; diff --git a/src/api/resources/accounting/types/InvoiceRequestPaymentsItem.ts b/src/api/resources/accounting/types/InvoiceRequestPaymentsItem.ts deleted file mode 100644 index bf019d862..000000000 --- a/src/api/resources/accounting/types/InvoiceRequestPaymentsItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type InvoiceRequestPaymentsItem = string | Merge.accounting.Payment; diff --git a/src/api/resources/accounting/types/InvoiceRequestPurchaseOrdersItem.ts b/src/api/resources/accounting/types/InvoiceRequestPurchaseOrdersItem.ts deleted file mode 100644 index f1c2dd198..000000000 --- a/src/api/resources/accounting/types/InvoiceRequestPurchaseOrdersItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type InvoiceRequestPurchaseOrdersItem = string | Merge.accounting.PurchaseOrder; diff --git a/src/api/resources/accounting/types/InvoiceRequestStatus.ts b/src/api/resources/accounting/types/InvoiceRequestStatus.ts deleted file mode 100644 index e94128399..000000000 --- a/src/api/resources/accounting/types/InvoiceRequestStatus.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The status of the invoice. - * - * * `PAID` - PAID - * * `DRAFT` - DRAFT - * * `SUBMITTED` - SUBMITTED - * * `PARTIALLY_PAID` - PARTIALLY_PAID - * * `OPEN` - OPEN - * * `VOID` - VOID - */ -export type InvoiceRequestStatus = Merge.accounting.InvoiceStatusEnum | string; diff --git a/src/api/resources/accounting/types/InvoiceRequestTrackingCategoriesItem.ts b/src/api/resources/accounting/types/InvoiceRequestTrackingCategoriesItem.ts deleted file mode 100644 index c260e6616..000000000 --- a/src/api/resources/accounting/types/InvoiceRequestTrackingCategoriesItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type InvoiceRequestTrackingCategoriesItem = string | Merge.accounting.TrackingCategory; diff --git a/src/api/resources/accounting/types/InvoiceRequestType.ts b/src/api/resources/accounting/types/InvoiceRequestType.ts deleted file mode 100644 index d8958be0e..000000000 --- a/src/api/resources/accounting/types/InvoiceRequestType.ts +++ /dev/null @@ -1,11 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * Whether the invoice is an accounts receivable or accounts payable. If `type` is `ACCOUNTS_PAYABLE`, the invoice is a bill. If `type` is `ACCOUNTS_RECEIVABLE`, it is an invoice. - * - * * `ACCOUNTS_RECEIVABLE` - ACCOUNTS_RECEIVABLE - * * `ACCOUNTS_PAYABLE` - ACCOUNTS_PAYABLE - */ -export type InvoiceRequestType = Merge.accounting.InvoiceTypeEnum | string; diff --git a/src/api/resources/accounting/types/InvoiceResponse.ts b/src/api/resources/accounting/types/InvoiceResponse.ts deleted file mode 100644 index a23350f20..000000000 --- a/src/api/resources/accounting/types/InvoiceResponse.ts +++ /dev/null @@ -1,10 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface InvoiceResponse { - model: Merge.accounting.Invoice; - warnings: Merge.accounting.WarningValidationProblem[]; - errors: Merge.accounting.ErrorValidationProblem[]; - logs?: Merge.accounting.DebugModeLog[]; -} diff --git a/src/api/resources/accounting/types/InvoiceStatus.ts b/src/api/resources/accounting/types/InvoiceStatus.ts deleted file mode 100644 index 49de6d830..000000000 --- a/src/api/resources/accounting/types/InvoiceStatus.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The status of the invoice. - * - * * `PAID` - PAID - * * `DRAFT` - DRAFT - * * `SUBMITTED` - SUBMITTED - * * `PARTIALLY_PAID` - PARTIALLY_PAID - * * `OPEN` - OPEN - * * `VOID` - VOID - */ -export type InvoiceStatus = Merge.accounting.InvoiceStatusEnum | string; diff --git a/src/api/resources/accounting/types/InvoiceStatusEnum.ts b/src/api/resources/accounting/types/InvoiceStatusEnum.ts deleted file mode 100644 index cf298afd3..000000000 --- a/src/api/resources/accounting/types/InvoiceStatusEnum.ts +++ /dev/null @@ -1,19 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * * `PAID` - PAID - * * `DRAFT` - DRAFT - * * `SUBMITTED` - SUBMITTED - * * `PARTIALLY_PAID` - PARTIALLY_PAID - * * `OPEN` - OPEN - * * `VOID` - VOID - */ -export const InvoiceStatusEnum = { - Paid: "PAID", - Draft: "DRAFT", - Submitted: "SUBMITTED", - PartiallyPaid: "PARTIALLY_PAID", - Open: "OPEN", - Void: "VOID", -} as const; -export type InvoiceStatusEnum = (typeof InvoiceStatusEnum)[keyof typeof InvoiceStatusEnum]; diff --git a/src/api/resources/accounting/types/InvoiceTrackingCategoriesItem.ts b/src/api/resources/accounting/types/InvoiceTrackingCategoriesItem.ts deleted file mode 100644 index 146b11867..000000000 --- a/src/api/resources/accounting/types/InvoiceTrackingCategoriesItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type InvoiceTrackingCategoriesItem = string | Merge.accounting.TrackingCategory; diff --git a/src/api/resources/accounting/types/InvoiceType.ts b/src/api/resources/accounting/types/InvoiceType.ts deleted file mode 100644 index 42eeefc8a..000000000 --- a/src/api/resources/accounting/types/InvoiceType.ts +++ /dev/null @@ -1,11 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * Whether the invoice is an accounts receivable or accounts payable. If `type` is `ACCOUNTS_PAYABLE`, the invoice is a bill. If `type` is `ACCOUNTS_RECEIVABLE`, it is an invoice. - * - * * `ACCOUNTS_RECEIVABLE` - ACCOUNTS_RECEIVABLE - * * `ACCOUNTS_PAYABLE` - ACCOUNTS_PAYABLE - */ -export type InvoiceType = Merge.accounting.InvoiceTypeEnum | string; diff --git a/src/api/resources/accounting/types/InvoiceTypeEnum.ts b/src/api/resources/accounting/types/InvoiceTypeEnum.ts deleted file mode 100644 index 934b6a4dc..000000000 --- a/src/api/resources/accounting/types/InvoiceTypeEnum.ts +++ /dev/null @@ -1,11 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * * `ACCOUNTS_RECEIVABLE` - ACCOUNTS_RECEIVABLE - * * `ACCOUNTS_PAYABLE` - ACCOUNTS_PAYABLE - */ -export const InvoiceTypeEnum = { - AccountsReceivable: "ACCOUNTS_RECEIVABLE", - AccountsPayable: "ACCOUNTS_PAYABLE", -} as const; -export type InvoiceTypeEnum = (typeof InvoiceTypeEnum)[keyof typeof InvoiceTypeEnum]; diff --git a/src/api/resources/accounting/types/Issue.ts b/src/api/resources/accounting/types/Issue.ts deleted file mode 100644 index 82ca5cc74..000000000 --- a/src/api/resources/accounting/types/Issue.ts +++ /dev/null @@ -1,20 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface Issue { - id?: string; - /** - * Status of the issue. Options: ('ONGOING', 'RESOLVED') - * - * * `ONGOING` - ONGOING - * * `RESOLVED` - RESOLVED - */ - status?: Merge.accounting.IssueStatus; - errorDescription: string; - endUser?: Record; - firstIncidentTime?: Date; - lastIncidentTime?: Date; - isMuted?: boolean; - errorDetails?: string[]; -} diff --git a/src/api/resources/accounting/types/IssueStatus.ts b/src/api/resources/accounting/types/IssueStatus.ts deleted file mode 100644 index 906f89245..000000000 --- a/src/api/resources/accounting/types/IssueStatus.ts +++ /dev/null @@ -1,11 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * Status of the issue. Options: ('ONGOING', 'RESOLVED') - * - * * `ONGOING` - ONGOING - * * `RESOLVED` - RESOLVED - */ -export type IssueStatus = Merge.accounting.IssueStatusEnum | string; diff --git a/src/api/resources/accounting/types/IssueStatusEnum.ts b/src/api/resources/accounting/types/IssueStatusEnum.ts deleted file mode 100644 index 03b0cd555..000000000 --- a/src/api/resources/accounting/types/IssueStatusEnum.ts +++ /dev/null @@ -1,11 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * * `ONGOING` - ONGOING - * * `RESOLVED` - RESOLVED - */ -export const IssueStatusEnum = { - Ongoing: "ONGOING", - Resolved: "RESOLVED", -} as const; -export type IssueStatusEnum = (typeof IssueStatusEnum)[keyof typeof IssueStatusEnum]; diff --git a/src/api/resources/accounting/types/Item.ts b/src/api/resources/accounting/types/Item.ts deleted file mode 100644 index b9e21b76d..000000000 --- a/src/api/resources/accounting/types/Item.ts +++ /dev/null @@ -1,59 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The Item Object - * ### Description - * The `Item` object refers to the goods involved in a transaction. - * - * ### Usage Example - * Fetch from the `LIST Items` endpoint and view a company's items. - */ -export interface Item { - id?: string; - /** The third-party API ID of the matching object. */ - remoteId?: string; - /** The datetime that this object was created by Merge. */ - createdAt?: Date; - /** The datetime that this object was modified by Merge. */ - modifiedAt?: Date; - /** The item's name. */ - name?: string; - /** - * The item's status. - * - * * `ACTIVE` - ACTIVE - * * `ARCHIVED` - ARCHIVED - */ - status?: Merge.accounting.ItemStatus; - /** - * The item's type. - * - * * `INVENTORY` - INVENTORY - * * `NON_INVENTORY` - NON_INVENTORY - * * `SERVICE` - SERVICE - * * `UNKNOWN` - UNKNOWN - */ - type?: Merge.accounting.ItemType; - /** The item's unit price. */ - unitPrice?: number; - /** The price at which the item is purchased from a vendor. */ - purchasePrice?: number; - /** References the default account used to record a purchase of the item. */ - purchaseAccount?: Merge.accounting.ItemPurchaseAccount; - /** References the default account used to record a sale. */ - salesAccount?: Merge.accounting.ItemSalesAccount; - /** The company the item belongs to. */ - company?: Merge.accounting.ItemCompany; - /** The default purchase tax rate for this item. */ - purchaseTaxRate?: Merge.accounting.ItemPurchaseTaxRate; - /** The default sales tax rate for this item. */ - salesTaxRate?: Merge.accounting.ItemSalesTaxRate; - /** When the third party's item note was updated. */ - remoteUpdatedAt?: Date; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - remoteWasDeleted?: boolean; - fieldMappings?: Record; - remoteData?: Merge.accounting.RemoteData[]; -} diff --git a/src/api/resources/accounting/types/ItemCompany.ts b/src/api/resources/accounting/types/ItemCompany.ts deleted file mode 100644 index 66868dae0..000000000 --- a/src/api/resources/accounting/types/ItemCompany.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The company the item belongs to. - */ -export type ItemCompany = string | Merge.accounting.CompanyInfo; diff --git a/src/api/resources/accounting/types/ItemFormatEnum.ts b/src/api/resources/accounting/types/ItemFormatEnum.ts deleted file mode 100644 index 4374c7f09..000000000 --- a/src/api/resources/accounting/types/ItemFormatEnum.ts +++ /dev/null @@ -1,19 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * * `string` - uuid - * * `number` - url - * * `date` - email - * * `datetime` - phone - * * `bool` - currency - * * `list` - decimal - */ -export const ItemFormatEnum = { - String: "string", - Number: "number", - Date: "date", - Datetime: "datetime", - Bool: "bool", - List: "list", -} as const; -export type ItemFormatEnum = (typeof ItemFormatEnum)[keyof typeof ItemFormatEnum]; diff --git a/src/api/resources/accounting/types/ItemPurchaseAccount.ts b/src/api/resources/accounting/types/ItemPurchaseAccount.ts deleted file mode 100644 index c221427d3..000000000 --- a/src/api/resources/accounting/types/ItemPurchaseAccount.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * References the default account used to record a purchase of the item. - */ -export type ItemPurchaseAccount = string | Merge.accounting.Account; diff --git a/src/api/resources/accounting/types/ItemPurchaseTaxRate.ts b/src/api/resources/accounting/types/ItemPurchaseTaxRate.ts deleted file mode 100644 index 4f4d06914..000000000 --- a/src/api/resources/accounting/types/ItemPurchaseTaxRate.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The default purchase tax rate for this item. - */ -export type ItemPurchaseTaxRate = string | Merge.accounting.TaxRate; diff --git a/src/api/resources/accounting/types/ItemRequestRequest.ts b/src/api/resources/accounting/types/ItemRequestRequest.ts deleted file mode 100644 index 145c0c50d..000000000 --- a/src/api/resources/accounting/types/ItemRequestRequest.ts +++ /dev/null @@ -1,48 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The Item Object - * ### Description - * The `Item` object refers to the goods involved in a transaction. - * - * ### Usage Example - * Fetch from the `LIST Items` endpoint and view a company's items. - */ -export interface ItemRequestRequest { - /** The item's name. */ - name?: string; - /** - * The item's status. - * - * * `ACTIVE` - ACTIVE - * * `ARCHIVED` - ARCHIVED - */ - status?: Merge.accounting.ItemRequestRequestStatus; - /** - * The item's type. - * - * * `INVENTORY` - INVENTORY - * * `NON_INVENTORY` - NON_INVENTORY - * * `SERVICE` - SERVICE - * * `UNKNOWN` - UNKNOWN - */ - type?: Merge.accounting.ItemRequestRequestType; - /** The item's unit price. */ - unitPrice?: number; - /** The price at which the item is purchased from a vendor. */ - purchasePrice?: number; - /** References the default account used to record a purchase of the item. */ - purchaseAccount?: Merge.accounting.ItemRequestRequestPurchaseAccount; - /** References the default account used to record a sale. */ - salesAccount?: Merge.accounting.ItemRequestRequestSalesAccount; - /** The company the item belongs to. */ - company?: Merge.accounting.ItemRequestRequestCompany; - /** The default purchase tax rate for this item. */ - purchaseTaxRate?: Merge.accounting.ItemRequestRequestPurchaseTaxRate; - /** The default sales tax rate for this item. */ - salesTaxRate?: Merge.accounting.ItemRequestRequestSalesTaxRate; - integrationParams?: Record; - linkedAccountParams?: Record; -} diff --git a/src/api/resources/accounting/types/ItemRequestRequestCompany.ts b/src/api/resources/accounting/types/ItemRequestRequestCompany.ts deleted file mode 100644 index 3e335345d..000000000 --- a/src/api/resources/accounting/types/ItemRequestRequestCompany.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The company the item belongs to. - */ -export type ItemRequestRequestCompany = string | Merge.accounting.CompanyInfo; diff --git a/src/api/resources/accounting/types/ItemRequestRequestPurchaseAccount.ts b/src/api/resources/accounting/types/ItemRequestRequestPurchaseAccount.ts deleted file mode 100644 index adfb9887f..000000000 --- a/src/api/resources/accounting/types/ItemRequestRequestPurchaseAccount.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * References the default account used to record a purchase of the item. - */ -export type ItemRequestRequestPurchaseAccount = string | Merge.accounting.Account; diff --git a/src/api/resources/accounting/types/ItemRequestRequestPurchaseTaxRate.ts b/src/api/resources/accounting/types/ItemRequestRequestPurchaseTaxRate.ts deleted file mode 100644 index 79aeed98e..000000000 --- a/src/api/resources/accounting/types/ItemRequestRequestPurchaseTaxRate.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The default purchase tax rate for this item. - */ -export type ItemRequestRequestPurchaseTaxRate = string | Merge.accounting.TaxRate; diff --git a/src/api/resources/accounting/types/ItemRequestRequestSalesAccount.ts b/src/api/resources/accounting/types/ItemRequestRequestSalesAccount.ts deleted file mode 100644 index 7b787038d..000000000 --- a/src/api/resources/accounting/types/ItemRequestRequestSalesAccount.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * References the default account used to record a sale. - */ -export type ItemRequestRequestSalesAccount = string | Merge.accounting.Account; diff --git a/src/api/resources/accounting/types/ItemRequestRequestSalesTaxRate.ts b/src/api/resources/accounting/types/ItemRequestRequestSalesTaxRate.ts deleted file mode 100644 index f1d199e05..000000000 --- a/src/api/resources/accounting/types/ItemRequestRequestSalesTaxRate.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The default sales tax rate for this item. - */ -export type ItemRequestRequestSalesTaxRate = string | Merge.accounting.TaxRate; diff --git a/src/api/resources/accounting/types/ItemRequestRequestStatus.ts b/src/api/resources/accounting/types/ItemRequestRequestStatus.ts deleted file mode 100644 index e8260c82e..000000000 --- a/src/api/resources/accounting/types/ItemRequestRequestStatus.ts +++ /dev/null @@ -1,11 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The item's status. - * - * * `ACTIVE` - ACTIVE - * * `ARCHIVED` - ARCHIVED - */ -export type ItemRequestRequestStatus = Merge.accounting.Status7D1Enum | string; diff --git a/src/api/resources/accounting/types/ItemRequestRequestType.ts b/src/api/resources/accounting/types/ItemRequestRequestType.ts deleted file mode 100644 index b55f7b4e1..000000000 --- a/src/api/resources/accounting/types/ItemRequestRequestType.ts +++ /dev/null @@ -1,13 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The item's type. - * - * * `INVENTORY` - INVENTORY - * * `NON_INVENTORY` - NON_INVENTORY - * * `SERVICE` - SERVICE - * * `UNKNOWN` - UNKNOWN - */ -export type ItemRequestRequestType = Merge.accounting.Type2BbEnum | string; diff --git a/src/api/resources/accounting/types/ItemResponse.ts b/src/api/resources/accounting/types/ItemResponse.ts deleted file mode 100644 index 416002d77..000000000 --- a/src/api/resources/accounting/types/ItemResponse.ts +++ /dev/null @@ -1,10 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface ItemResponse { - model: Merge.accounting.Item; - warnings: Merge.accounting.WarningValidationProblem[]; - errors: Merge.accounting.ErrorValidationProblem[]; - logs?: Merge.accounting.DebugModeLog[]; -} diff --git a/src/api/resources/accounting/types/ItemSalesAccount.ts b/src/api/resources/accounting/types/ItemSalesAccount.ts deleted file mode 100644 index f560d57f5..000000000 --- a/src/api/resources/accounting/types/ItemSalesAccount.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * References the default account used to record a sale. - */ -export type ItemSalesAccount = string | Merge.accounting.Account; diff --git a/src/api/resources/accounting/types/ItemSalesTaxRate.ts b/src/api/resources/accounting/types/ItemSalesTaxRate.ts deleted file mode 100644 index b5a1bfb17..000000000 --- a/src/api/resources/accounting/types/ItemSalesTaxRate.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The default sales tax rate for this item. - */ -export type ItemSalesTaxRate = string | Merge.accounting.TaxRate; diff --git a/src/api/resources/accounting/types/ItemSchema.ts b/src/api/resources/accounting/types/ItemSchema.ts deleted file mode 100644 index 153de14f2..000000000 --- a/src/api/resources/accounting/types/ItemSchema.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface ItemSchema { - itemType?: Merge.accounting.ItemTypeEnum; - itemFormat?: Merge.accounting.ItemFormatEnum; - itemChoices?: string[]; -} diff --git a/src/api/resources/accounting/types/ItemStatus.ts b/src/api/resources/accounting/types/ItemStatus.ts deleted file mode 100644 index 0671e1e50..000000000 --- a/src/api/resources/accounting/types/ItemStatus.ts +++ /dev/null @@ -1,11 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The item's status. - * - * * `ACTIVE` - ACTIVE - * * `ARCHIVED` - ARCHIVED - */ -export type ItemStatus = Merge.accounting.Status7D1Enum | string; diff --git a/src/api/resources/accounting/types/ItemType.ts b/src/api/resources/accounting/types/ItemType.ts deleted file mode 100644 index e3149f273..000000000 --- a/src/api/resources/accounting/types/ItemType.ts +++ /dev/null @@ -1,13 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The item's type. - * - * * `INVENTORY` - INVENTORY - * * `NON_INVENTORY` - NON_INVENTORY - * * `SERVICE` - SERVICE - * * `UNKNOWN` - UNKNOWN - */ -export type ItemType = Merge.accounting.Type2BbEnum | string; diff --git a/src/api/resources/accounting/types/ItemTypeEnum.ts b/src/api/resources/accounting/types/ItemTypeEnum.ts deleted file mode 100644 index 836ffd0b2..000000000 --- a/src/api/resources/accounting/types/ItemTypeEnum.ts +++ /dev/null @@ -1,19 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * * `string` - string - * * `number` - number - * * `date` - date - * * `datetime` - datetime - * * `bool` - bool - * * `list` - list - */ -export const ItemTypeEnum = { - String: "string", - Number: "number", - Date: "date", - Datetime: "datetime", - Bool: "bool", - List: "list", -} as const; -export type ItemTypeEnum = (typeof ItemTypeEnum)[keyof typeof ItemTypeEnum]; diff --git a/src/api/resources/accounting/types/JournalEntry.ts b/src/api/resources/accounting/types/JournalEntry.ts deleted file mode 100644 index 7f263a4fa..000000000 --- a/src/api/resources/accounting/types/JournalEntry.ts +++ /dev/null @@ -1,372 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The JournalEntry Object - * ### Description - * A `JournalEntry` is a record of a transaction or event that is entered into a company's accounting system. - * - * The `JournalEntry` common model contains records that are automatically created as a result of a certain type of transaction, like an Invoice, and records that are manually created against a company’s ledger. - * - * The lines of a given `JournalEntry` object should always sum to 0. A positive `net_amount` means the line represents a debit and a negative net_amount represents a credit. - * - * ### Usage Example - * Fetch from the `GET JournalEntry` endpoint and view a company's journey entry. - */ -export interface JournalEntry { - id?: string; - /** The third-party API ID of the matching object. */ - remoteId?: string; - /** The datetime that this object was created by Merge. */ - createdAt?: Date; - /** The datetime that this object was modified by Merge. */ - modifiedAt?: Date; - /** The journal entry's transaction date. */ - transactionDate?: Date; - /** Array of `Payment` object IDs. */ - payments?: (Merge.accounting.JournalEntryPaymentsItem | undefined)[]; - /** A list of the Payment Applied to Lines common models related to a given Invoice, Credit Note, or Journal Entry. */ - appliedPayments?: (Merge.accounting.JournalEntryAppliedPaymentsItem | undefined)[]; - /** The journal entry's private note. */ - memo?: string; - /** - * The journal's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ - currency?: Merge.accounting.JournalEntryCurrency; - /** The journal entry's exchange rate. */ - exchangeRate?: string; - /** The company the journal entry belongs to. */ - company?: Merge.accounting.JournalEntryCompany; - /** If the transaction is inclusive or exclusive of tax. `True` if inclusive, `False` if exclusive. */ - inclusiveOfTax?: boolean; - lines?: Merge.accounting.JournalLine[]; - /** Reference number for identifying journal entries. */ - journalNumber?: string; - trackingCategories?: (Merge.accounting.JournalEntryTrackingCategoriesItem | undefined)[]; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - remoteWasDeleted?: boolean; - /** - * The journal's posting status. - * - * * `UNPOSTED` - UNPOSTED - * * `POSTED` - POSTED - */ - postingStatus?: Merge.accounting.JournalEntryPostingStatus; - /** The accounting period that the JournalEntry was generated in. */ - accountingPeriod?: Merge.accounting.JournalEntryAccountingPeriod; - /** When the third party's journal entry was created. */ - remoteCreatedAt?: Date; - /** When the third party's journal entry was updated. */ - remoteUpdatedAt?: Date; - fieldMappings?: Record; - remoteData?: Merge.accounting.RemoteData[]; - remoteFields?: Merge.accounting.RemoteField[]; -} diff --git a/src/api/resources/accounting/types/JournalEntryAccountingPeriod.ts b/src/api/resources/accounting/types/JournalEntryAccountingPeriod.ts deleted file mode 100644 index b0df5bb4d..000000000 --- a/src/api/resources/accounting/types/JournalEntryAccountingPeriod.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The accounting period that the JournalEntry was generated in. - */ -export type JournalEntryAccountingPeriod = string | Merge.accounting.AccountingPeriod; diff --git a/src/api/resources/accounting/types/JournalEntryAppliedPaymentsItem.ts b/src/api/resources/accounting/types/JournalEntryAppliedPaymentsItem.ts deleted file mode 100644 index a3aa3d95a..000000000 --- a/src/api/resources/accounting/types/JournalEntryAppliedPaymentsItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type JournalEntryAppliedPaymentsItem = string | Merge.accounting.PaymentLineItem; diff --git a/src/api/resources/accounting/types/JournalEntryCompany.ts b/src/api/resources/accounting/types/JournalEntryCompany.ts deleted file mode 100644 index 04444d155..000000000 --- a/src/api/resources/accounting/types/JournalEntryCompany.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The company the journal entry belongs to. - */ -export type JournalEntryCompany = string | Merge.accounting.CompanyInfo; diff --git a/src/api/resources/accounting/types/JournalEntryCurrency.ts b/src/api/resources/accounting/types/JournalEntryCurrency.ts deleted file mode 100644 index 6d5102ff6..000000000 --- a/src/api/resources/accounting/types/JournalEntryCurrency.ts +++ /dev/null @@ -1,315 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The journal's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ -export type JournalEntryCurrency = Merge.accounting.TransactionCurrencyEnum | string; diff --git a/src/api/resources/accounting/types/JournalEntryPaymentsItem.ts b/src/api/resources/accounting/types/JournalEntryPaymentsItem.ts deleted file mode 100644 index f921a3410..000000000 --- a/src/api/resources/accounting/types/JournalEntryPaymentsItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type JournalEntryPaymentsItem = string | Merge.accounting.Payment; diff --git a/src/api/resources/accounting/types/JournalEntryPostingStatus.ts b/src/api/resources/accounting/types/JournalEntryPostingStatus.ts deleted file mode 100644 index 4afe9e599..000000000 --- a/src/api/resources/accounting/types/JournalEntryPostingStatus.ts +++ /dev/null @@ -1,11 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The journal's posting status. - * - * * `UNPOSTED` - UNPOSTED - * * `POSTED` - POSTED - */ -export type JournalEntryPostingStatus = Merge.accounting.PostingStatusEnum | string; diff --git a/src/api/resources/accounting/types/JournalEntryRequest.ts b/src/api/resources/accounting/types/JournalEntryRequest.ts deleted file mode 100644 index 789fd69f5..000000000 --- a/src/api/resources/accounting/types/JournalEntryRequest.ts +++ /dev/null @@ -1,351 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The JournalEntry Object - * ### Description - * The `JournalEntry` object is used to get a record of all manually created entries made in a company’s general ledger. The journal line items for each journal entry should sum to zero. - * - * ### Usage Example - * Fetch from the `GET JournalEntry` endpoint and view a company's journey entry. - */ -export interface JournalEntryRequest { - /** The journal entry's transaction date. */ - transactionDate?: Date; - /** Array of `Payment` object IDs. */ - payments?: (Merge.accounting.JournalEntryRequestPaymentsItem | undefined)[]; - /** The journal entry's private note. */ - memo?: string; - /** - * The journal's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ - currency?: Merge.accounting.JournalEntryRequestCurrency; - /** The journal entry's exchange rate. */ - exchangeRate?: string; - /** The company the journal entry belongs to. */ - company?: Merge.accounting.JournalEntryRequestCompany; - trackingCategories?: (Merge.accounting.JournalEntryRequestTrackingCategoriesItem | undefined)[]; - /** If the transaction is inclusive or exclusive of tax. `True` if inclusive, `False` if exclusive. */ - inclusiveOfTax?: boolean; - lines?: Merge.accounting.JournalLineRequest[]; - /** Reference number for identifying journal entries. */ - journalNumber?: string; - /** - * The journal's posting status. - * - * * `UNPOSTED` - UNPOSTED - * * `POSTED` - POSTED - */ - postingStatus?: Merge.accounting.JournalEntryRequestPostingStatus; - integrationParams?: Record; - linkedAccountParams?: Record; - remoteFields?: Merge.accounting.RemoteFieldRequest[]; -} diff --git a/src/api/resources/accounting/types/JournalEntryRequestCompany.ts b/src/api/resources/accounting/types/JournalEntryRequestCompany.ts deleted file mode 100644 index a2b92e83b..000000000 --- a/src/api/resources/accounting/types/JournalEntryRequestCompany.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The company the journal entry belongs to. - */ -export type JournalEntryRequestCompany = string | Merge.accounting.CompanyInfo; diff --git a/src/api/resources/accounting/types/JournalEntryRequestCurrency.ts b/src/api/resources/accounting/types/JournalEntryRequestCurrency.ts deleted file mode 100644 index 6a6c4f474..000000000 --- a/src/api/resources/accounting/types/JournalEntryRequestCurrency.ts +++ /dev/null @@ -1,315 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The journal's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ -export type JournalEntryRequestCurrency = Merge.accounting.TransactionCurrencyEnum | string; diff --git a/src/api/resources/accounting/types/JournalEntryRequestPaymentsItem.ts b/src/api/resources/accounting/types/JournalEntryRequestPaymentsItem.ts deleted file mode 100644 index 88069262d..000000000 --- a/src/api/resources/accounting/types/JournalEntryRequestPaymentsItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type JournalEntryRequestPaymentsItem = string | Merge.accounting.Payment; diff --git a/src/api/resources/accounting/types/JournalEntryRequestPostingStatus.ts b/src/api/resources/accounting/types/JournalEntryRequestPostingStatus.ts deleted file mode 100644 index 6c7117463..000000000 --- a/src/api/resources/accounting/types/JournalEntryRequestPostingStatus.ts +++ /dev/null @@ -1,11 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The journal's posting status. - * - * * `UNPOSTED` - UNPOSTED - * * `POSTED` - POSTED - */ -export type JournalEntryRequestPostingStatus = Merge.accounting.PostingStatusEnum | string; diff --git a/src/api/resources/accounting/types/JournalEntryRequestTrackingCategoriesItem.ts b/src/api/resources/accounting/types/JournalEntryRequestTrackingCategoriesItem.ts deleted file mode 100644 index 7c7ef729a..000000000 --- a/src/api/resources/accounting/types/JournalEntryRequestTrackingCategoriesItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type JournalEntryRequestTrackingCategoriesItem = string | Merge.accounting.TrackingCategory; diff --git a/src/api/resources/accounting/types/JournalEntryResponse.ts b/src/api/resources/accounting/types/JournalEntryResponse.ts deleted file mode 100644 index 9049be956..000000000 --- a/src/api/resources/accounting/types/JournalEntryResponse.ts +++ /dev/null @@ -1,10 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface JournalEntryResponse { - model: Merge.accounting.JournalEntry; - warnings: Merge.accounting.WarningValidationProblem[]; - errors: Merge.accounting.ErrorValidationProblem[]; - logs?: Merge.accounting.DebugModeLog[]; -} diff --git a/src/api/resources/accounting/types/JournalEntryTrackingCategoriesItem.ts b/src/api/resources/accounting/types/JournalEntryTrackingCategoriesItem.ts deleted file mode 100644 index 9e79040b7..000000000 --- a/src/api/resources/accounting/types/JournalEntryTrackingCategoriesItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type JournalEntryTrackingCategoriesItem = string | Merge.accounting.TrackingCategory; diff --git a/src/api/resources/accounting/types/JournalLine.ts b/src/api/resources/accounting/types/JournalLine.ts deleted file mode 100644 index a1b4d606d..000000000 --- a/src/api/resources/accounting/types/JournalLine.ts +++ /dev/null @@ -1,352 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The JournalLine Object - * ### Description - * The `JournalLine` object is used to represent a journal entry's line items. - * - * ### Usage Example - * Fetch from the `GET JournalEntry` endpoint and view the journal entry's line items. - */ -export interface JournalLine { - id?: string; - /** The third-party API ID of the matching object. */ - remoteId?: string; - /** The datetime that this object was created by Merge. */ - createdAt?: Date; - /** The datetime that this object was modified by Merge. */ - modifiedAt?: Date; - account?: Merge.accounting.JournalLineAccount; - /** The value of the line item including taxes and other fees. */ - netAmount?: number; - trackingCategory?: Merge.accounting.JournalLineTrackingCategory; - /** The journal line item's associated tracking categories. */ - trackingCategories?: (Merge.accounting.JournalLineTrackingCategoriesItem | undefined)[]; - /** - * The journal line item's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ - currency?: Merge.accounting.JournalLineCurrency; - /** The company the journal entry belongs to. */ - company?: string; - employee?: string; - project?: Merge.accounting.JournalLineProject; - contact?: string; - /** The tax rate that applies to this line item. */ - taxRate?: string; - /** The line's description. */ - description?: string; - /** The journal line item's exchange rate. */ - exchangeRate?: string; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - remoteWasDeleted?: boolean; - remoteFields?: Merge.accounting.RemoteField[]; -} diff --git a/src/api/resources/accounting/types/JournalLineAccount.ts b/src/api/resources/accounting/types/JournalLineAccount.ts deleted file mode 100644 index ec8c80222..000000000 --- a/src/api/resources/accounting/types/JournalLineAccount.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type JournalLineAccount = string | Merge.accounting.Account; diff --git a/src/api/resources/accounting/types/JournalLineCurrency.ts b/src/api/resources/accounting/types/JournalLineCurrency.ts deleted file mode 100644 index c9bf256d4..000000000 --- a/src/api/resources/accounting/types/JournalLineCurrency.ts +++ /dev/null @@ -1,315 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The journal line item's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ -export type JournalLineCurrency = Merge.accounting.TransactionCurrencyEnum | string; diff --git a/src/api/resources/accounting/types/JournalLineProject.ts b/src/api/resources/accounting/types/JournalLineProject.ts deleted file mode 100644 index 8d0cee971..000000000 --- a/src/api/resources/accounting/types/JournalLineProject.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type JournalLineProject = string | Merge.accounting.Project; diff --git a/src/api/resources/accounting/types/JournalLineRequest.ts b/src/api/resources/accounting/types/JournalLineRequest.ts deleted file mode 100644 index 23d5937b5..000000000 --- a/src/api/resources/accounting/types/JournalLineRequest.ts +++ /dev/null @@ -1,347 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The JournalLine Object - * ### Description - * The `JournalLine` object is used to represent a journal entry's line items. - * - * ### Usage Example - * Fetch from the `GET JournalEntry` endpoint and view the journal entry's line items. - */ -export interface JournalLineRequest { - /** The third-party API ID of the matching object. */ - remoteId?: string; - account?: Merge.accounting.JournalLineRequestAccount; - /** The value of the line item including taxes and other fees. */ - netAmount?: number; - trackingCategory?: Merge.accounting.JournalLineRequestTrackingCategory; - /** The journal line item's associated tracking categories. */ - trackingCategories?: (Merge.accounting.JournalLineRequestTrackingCategoriesItem | undefined)[]; - /** - * The journal line item's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ - currency?: Merge.accounting.JournalLineRequestCurrency; - /** The company the journal entry belongs to. */ - company?: string; - employee?: string; - project?: Merge.accounting.JournalLineRequestProject; - contact?: string; - /** The tax rate that applies to this line item. */ - taxRate?: string; - /** The line's description. */ - description?: string; - /** The journal line item's exchange rate. */ - exchangeRate?: string; - integrationParams?: Record; - linkedAccountParams?: Record; - remoteFields?: Merge.accounting.RemoteFieldRequest[]; -} diff --git a/src/api/resources/accounting/types/JournalLineRequestAccount.ts b/src/api/resources/accounting/types/JournalLineRequestAccount.ts deleted file mode 100644 index 285ea2147..000000000 --- a/src/api/resources/accounting/types/JournalLineRequestAccount.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type JournalLineRequestAccount = string | Merge.accounting.Account; diff --git a/src/api/resources/accounting/types/JournalLineRequestCurrency.ts b/src/api/resources/accounting/types/JournalLineRequestCurrency.ts deleted file mode 100644 index 39fd54403..000000000 --- a/src/api/resources/accounting/types/JournalLineRequestCurrency.ts +++ /dev/null @@ -1,315 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The journal line item's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ -export type JournalLineRequestCurrency = Merge.accounting.TransactionCurrencyEnum | string; diff --git a/src/api/resources/accounting/types/JournalLineRequestProject.ts b/src/api/resources/accounting/types/JournalLineRequestProject.ts deleted file mode 100644 index 2b6736016..000000000 --- a/src/api/resources/accounting/types/JournalLineRequestProject.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type JournalLineRequestProject = string | Merge.accounting.Project; diff --git a/src/api/resources/accounting/types/JournalLineRequestTrackingCategoriesItem.ts b/src/api/resources/accounting/types/JournalLineRequestTrackingCategoriesItem.ts deleted file mode 100644 index f5e35065e..000000000 --- a/src/api/resources/accounting/types/JournalLineRequestTrackingCategoriesItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type JournalLineRequestTrackingCategoriesItem = string | Merge.accounting.TrackingCategory; diff --git a/src/api/resources/accounting/types/JournalLineRequestTrackingCategory.ts b/src/api/resources/accounting/types/JournalLineRequestTrackingCategory.ts deleted file mode 100644 index 0e769f55a..000000000 --- a/src/api/resources/accounting/types/JournalLineRequestTrackingCategory.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type JournalLineRequestTrackingCategory = string | Merge.accounting.TrackingCategory; diff --git a/src/api/resources/accounting/types/JournalLineTrackingCategoriesItem.ts b/src/api/resources/accounting/types/JournalLineTrackingCategoriesItem.ts deleted file mode 100644 index e4aa59e41..000000000 --- a/src/api/resources/accounting/types/JournalLineTrackingCategoriesItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type JournalLineTrackingCategoriesItem = string | Merge.accounting.TrackingCategory; diff --git a/src/api/resources/accounting/types/JournalLineTrackingCategory.ts b/src/api/resources/accounting/types/JournalLineTrackingCategory.ts deleted file mode 100644 index a3a4d41d8..000000000 --- a/src/api/resources/accounting/types/JournalLineTrackingCategory.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type JournalLineTrackingCategory = string | Merge.accounting.TrackingCategory; diff --git a/src/api/resources/accounting/types/LanguageEnum.ts b/src/api/resources/accounting/types/LanguageEnum.ts deleted file mode 100644 index 603fc6498..000000000 --- a/src/api/resources/accounting/types/LanguageEnum.ts +++ /dev/null @@ -1,11 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * * `en` - en - * * `de` - de - */ -export const LanguageEnum = { - En: "en", - De: "de", -} as const; -export type LanguageEnum = (typeof LanguageEnum)[keyof typeof LanguageEnum]; diff --git a/src/api/resources/accounting/types/LastSyncResultEnum.ts b/src/api/resources/accounting/types/LastSyncResultEnum.ts deleted file mode 100644 index 3baf8309b..000000000 --- a/src/api/resources/accounting/types/LastSyncResultEnum.ts +++ /dev/null @@ -1,19 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * * `SYNCING` - SYNCING - * * `DONE` - DONE - * * `FAILED` - FAILED - * * `DISABLED` - DISABLED - * * `PAUSED` - PAUSED - * * `PARTIALLY_SYNCED` - PARTIALLY_SYNCED - */ -export const LastSyncResultEnum = { - Syncing: "SYNCING", - Done: "DONE", - Failed: "FAILED", - Disabled: "DISABLED", - Paused: "PAUSED", - PartiallySynced: "PARTIALLY_SYNCED", -} as const; -export type LastSyncResultEnum = (typeof LastSyncResultEnum)[keyof typeof LastSyncResultEnum]; diff --git a/src/api/resources/accounting/types/LinkToken.ts b/src/api/resources/accounting/types/LinkToken.ts deleted file mode 100644 index 09879f9b1..000000000 --- a/src/api/resources/accounting/types/LinkToken.ts +++ /dev/null @@ -1,7 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export interface LinkToken { - linkToken: string; - integrationName?: string; - magicLinkUrl?: string; -} diff --git a/src/api/resources/accounting/types/LinkedAccountStatus.ts b/src/api/resources/accounting/types/LinkedAccountStatus.ts deleted file mode 100644 index fa55c41fb..000000000 --- a/src/api/resources/accounting/types/LinkedAccountStatus.ts +++ /dev/null @@ -1,6 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export interface LinkedAccountStatus { - linkedAccountStatus: string; - canMakeRequest: boolean; -} diff --git a/src/api/resources/accounting/types/MetaResponse.ts b/src/api/resources/accounting/types/MetaResponse.ts deleted file mode 100644 index 1ae901ada..000000000 --- a/src/api/resources/accounting/types/MetaResponse.ts +++ /dev/null @@ -1,11 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface MetaResponse { - requestSchema: Record; - remoteFieldClasses?: Record; - status?: Merge.accounting.LinkedAccountStatus; - hasConditionalParams: boolean; - hasRequiredLinkedAccountParams: boolean; -} diff --git a/src/api/resources/accounting/types/MethodEnum.ts b/src/api/resources/accounting/types/MethodEnum.ts deleted file mode 100644 index b8fb03bb0..000000000 --- a/src/api/resources/accounting/types/MethodEnum.ts +++ /dev/null @@ -1,21 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * * `GET` - GET - * * `OPTIONS` - OPTIONS - * * `HEAD` - HEAD - * * `POST` - POST - * * `PUT` - PUT - * * `PATCH` - PATCH - * * `DELETE` - DELETE - */ -export const MethodEnum = { - Get: "GET", - Options: "OPTIONS", - Head: "HEAD", - Post: "POST", - Put: "PUT", - Patch: "PATCH", - Delete: "DELETE", -} as const; -export type MethodEnum = (typeof MethodEnum)[keyof typeof MethodEnum]; diff --git a/src/api/resources/accounting/types/MethodTypeEnum.ts b/src/api/resources/accounting/types/MethodTypeEnum.ts deleted file mode 100644 index 210726cf5..000000000 --- a/src/api/resources/accounting/types/MethodTypeEnum.ts +++ /dev/null @@ -1,17 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * * `CREDIT_CARD` - CREDIT_CARD - * * `DEBIT_CARD` - DEBIT_CARD - * * `ACH` - ACH - * * `CASH` - CASH - * * `CHECK` - CHECK - */ -export const MethodTypeEnum = { - CreditCard: "CREDIT_CARD", - DebitCard: "DEBIT_CARD", - Ach: "ACH", - Cash: "CASH", - Check: "CHECK", -} as const; -export type MethodTypeEnum = (typeof MethodTypeEnum)[keyof typeof MethodTypeEnum]; diff --git a/src/api/resources/accounting/types/ModelOperation.ts b/src/api/resources/accounting/types/ModelOperation.ts deleted file mode 100644 index 520f668d9..000000000 --- a/src/api/resources/accounting/types/ModelOperation.ts +++ /dev/null @@ -1,16 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * # The ModelOperation Object - * ### Description - * The `ModelOperation` object is used to represent the operations that are currently supported for a given model. - * - * ### Usage Example - * View what operations are supported for the `Candidate` endpoint. - */ -export interface ModelOperation { - modelName: string; - availableOperations: string[]; - requiredPostParameters: string[]; - supportedFields: string[]; -} diff --git a/src/api/resources/accounting/types/ModelPermissionDeserializer.ts b/src/api/resources/accounting/types/ModelPermissionDeserializer.ts deleted file mode 100644 index 58b672e56..000000000 --- a/src/api/resources/accounting/types/ModelPermissionDeserializer.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export interface ModelPermissionDeserializer { - isEnabled?: boolean; -} diff --git a/src/api/resources/accounting/types/ModelPermissionDeserializerRequest.ts b/src/api/resources/accounting/types/ModelPermissionDeserializerRequest.ts deleted file mode 100644 index 1e140a95a..000000000 --- a/src/api/resources/accounting/types/ModelPermissionDeserializerRequest.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export interface ModelPermissionDeserializerRequest { - isEnabled?: boolean; -} diff --git a/src/api/resources/accounting/types/MultipartFormFieldRequest.ts b/src/api/resources/accounting/types/MultipartFormFieldRequest.ts deleted file mode 100644 index 6b1ca95b2..000000000 --- a/src/api/resources/accounting/types/MultipartFormFieldRequest.ts +++ /dev/null @@ -1,30 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The MultipartFormField Object - * ### Description - * The `MultipartFormField` object is used to represent fields in an HTTP request using `multipart/form-data`. - * - * ### Usage Example - * Create a `MultipartFormField` to define a multipart form entry. - */ -export interface MultipartFormFieldRequest { - /** The name of the form field */ - name: string; - /** The data for the form field. */ - data: string; - /** - * The encoding of the value of `data`. Defaults to `RAW` if not defined. - * - * * `RAW` - RAW - * * `BASE64` - BASE64 - * * `GZIP_BASE64` - GZIP_BASE64 - */ - encoding?: Merge.accounting.MultipartFormFieldRequestEncoding; - /** The file name of the form field, if the field is for a file. */ - fileName?: string; - /** The MIME type of the file, if the field is for a file. */ - contentType?: string; -} diff --git a/src/api/resources/accounting/types/MultipartFormFieldRequestEncoding.ts b/src/api/resources/accounting/types/MultipartFormFieldRequestEncoding.ts deleted file mode 100644 index 42fb9506d..000000000 --- a/src/api/resources/accounting/types/MultipartFormFieldRequestEncoding.ts +++ /dev/null @@ -1,12 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The encoding of the value of `data`. Defaults to `RAW` if not defined. - * - * * `RAW` - RAW - * * `BASE64` - BASE64 - * * `GZIP_BASE64` - GZIP_BASE64 - */ -export type MultipartFormFieldRequestEncoding = Merge.accounting.EncodingEnum | string; diff --git a/src/api/resources/accounting/types/PaginatedAccountDetailsAndActionsList.ts b/src/api/resources/accounting/types/PaginatedAccountDetailsAndActionsList.ts deleted file mode 100644 index 5889d47d8..000000000 --- a/src/api/resources/accounting/types/PaginatedAccountDetailsAndActionsList.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface PaginatedAccountDetailsAndActionsList { - next?: string; - previous?: string; - results?: Merge.accounting.AccountDetailsAndActions[]; -} diff --git a/src/api/resources/accounting/types/PaginatedAccountList.ts b/src/api/resources/accounting/types/PaginatedAccountList.ts deleted file mode 100644 index 0b71ba254..000000000 --- a/src/api/resources/accounting/types/PaginatedAccountList.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface PaginatedAccountList { - next?: string; - previous?: string; - results?: Merge.accounting.Account[]; -} diff --git a/src/api/resources/accounting/types/PaginatedAccountingAttachmentList.ts b/src/api/resources/accounting/types/PaginatedAccountingAttachmentList.ts deleted file mode 100644 index cefb24a5c..000000000 --- a/src/api/resources/accounting/types/PaginatedAccountingAttachmentList.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface PaginatedAccountingAttachmentList { - next?: string; - previous?: string; - results?: Merge.accounting.AccountingAttachment[]; -} diff --git a/src/api/resources/accounting/types/PaginatedAccountingPeriodList.ts b/src/api/resources/accounting/types/PaginatedAccountingPeriodList.ts deleted file mode 100644 index cce0af6ef..000000000 --- a/src/api/resources/accounting/types/PaginatedAccountingPeriodList.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface PaginatedAccountingPeriodList { - next?: string; - previous?: string; - results?: Merge.accounting.AccountingPeriod[]; -} diff --git a/src/api/resources/accounting/types/PaginatedAuditLogEventList.ts b/src/api/resources/accounting/types/PaginatedAuditLogEventList.ts deleted file mode 100644 index 2c23b3dd6..000000000 --- a/src/api/resources/accounting/types/PaginatedAuditLogEventList.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface PaginatedAuditLogEventList { - next?: string; - previous?: string; - results?: Merge.accounting.AuditLogEvent[]; -} diff --git a/src/api/resources/accounting/types/PaginatedBalanceSheetList.ts b/src/api/resources/accounting/types/PaginatedBalanceSheetList.ts deleted file mode 100644 index 98ad66a93..000000000 --- a/src/api/resources/accounting/types/PaginatedBalanceSheetList.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface PaginatedBalanceSheetList { - next?: string; - previous?: string; - results?: Merge.accounting.BalanceSheet[]; -} diff --git a/src/api/resources/accounting/types/PaginatedBankFeedAccountList.ts b/src/api/resources/accounting/types/PaginatedBankFeedAccountList.ts deleted file mode 100644 index 24837137a..000000000 --- a/src/api/resources/accounting/types/PaginatedBankFeedAccountList.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface PaginatedBankFeedAccountList { - next?: string; - previous?: string; - results?: Merge.accounting.BankFeedAccount[]; -} diff --git a/src/api/resources/accounting/types/PaginatedBankFeedTransactionList.ts b/src/api/resources/accounting/types/PaginatedBankFeedTransactionList.ts deleted file mode 100644 index e83c100ae..000000000 --- a/src/api/resources/accounting/types/PaginatedBankFeedTransactionList.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface PaginatedBankFeedTransactionList { - next?: string; - previous?: string; - results?: Merge.accounting.BankFeedTransaction[]; -} diff --git a/src/api/resources/accounting/types/PaginatedCashFlowStatementList.ts b/src/api/resources/accounting/types/PaginatedCashFlowStatementList.ts deleted file mode 100644 index e2b7c87c5..000000000 --- a/src/api/resources/accounting/types/PaginatedCashFlowStatementList.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface PaginatedCashFlowStatementList { - next?: string; - previous?: string; - results?: Merge.accounting.CashFlowStatement[]; -} diff --git a/src/api/resources/accounting/types/PaginatedCompanyInfoList.ts b/src/api/resources/accounting/types/PaginatedCompanyInfoList.ts deleted file mode 100644 index 92a3cca02..000000000 --- a/src/api/resources/accounting/types/PaginatedCompanyInfoList.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface PaginatedCompanyInfoList { - next?: string; - previous?: string; - results?: Merge.accounting.CompanyInfo[]; -} diff --git a/src/api/resources/accounting/types/PaginatedContactList.ts b/src/api/resources/accounting/types/PaginatedContactList.ts deleted file mode 100644 index 3117afe64..000000000 --- a/src/api/resources/accounting/types/PaginatedContactList.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface PaginatedContactList { - next?: string; - previous?: string; - results?: Merge.accounting.Contact[]; -} diff --git a/src/api/resources/accounting/types/PaginatedCreditNoteList.ts b/src/api/resources/accounting/types/PaginatedCreditNoteList.ts deleted file mode 100644 index 4db86faff..000000000 --- a/src/api/resources/accounting/types/PaginatedCreditNoteList.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface PaginatedCreditNoteList { - next?: string; - previous?: string; - results?: Merge.accounting.CreditNote[]; -} diff --git a/src/api/resources/accounting/types/PaginatedEmployeeList.ts b/src/api/resources/accounting/types/PaginatedEmployeeList.ts deleted file mode 100644 index 4a2b72d55..000000000 --- a/src/api/resources/accounting/types/PaginatedEmployeeList.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface PaginatedEmployeeList { - next?: string; - previous?: string; - results?: Merge.accounting.Employee[]; -} diff --git a/src/api/resources/accounting/types/PaginatedExpenseList.ts b/src/api/resources/accounting/types/PaginatedExpenseList.ts deleted file mode 100644 index 0f53a6c80..000000000 --- a/src/api/resources/accounting/types/PaginatedExpenseList.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface PaginatedExpenseList { - next?: string; - previous?: string; - results?: Merge.accounting.Expense[]; -} diff --git a/src/api/resources/accounting/types/PaginatedExpenseReportLineList.ts b/src/api/resources/accounting/types/PaginatedExpenseReportLineList.ts deleted file mode 100644 index 3a3354390..000000000 --- a/src/api/resources/accounting/types/PaginatedExpenseReportLineList.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface PaginatedExpenseReportLineList { - next?: string; - previous?: string; - results?: Merge.accounting.ExpenseReportLine[]; -} diff --git a/src/api/resources/accounting/types/PaginatedExpenseReportList.ts b/src/api/resources/accounting/types/PaginatedExpenseReportList.ts deleted file mode 100644 index dc98b5df1..000000000 --- a/src/api/resources/accounting/types/PaginatedExpenseReportList.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface PaginatedExpenseReportList { - next?: string; - previous?: string; - results?: Merge.accounting.ExpenseReport[]; -} diff --git a/src/api/resources/accounting/types/PaginatedGeneralLedgerTransactionList.ts b/src/api/resources/accounting/types/PaginatedGeneralLedgerTransactionList.ts deleted file mode 100644 index 4b39e6b67..000000000 --- a/src/api/resources/accounting/types/PaginatedGeneralLedgerTransactionList.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface PaginatedGeneralLedgerTransactionList { - next?: string; - previous?: string; - results?: Merge.accounting.GeneralLedgerTransaction[]; -} diff --git a/src/api/resources/accounting/types/PaginatedIncomeStatementList.ts b/src/api/resources/accounting/types/PaginatedIncomeStatementList.ts deleted file mode 100644 index e47ea87a1..000000000 --- a/src/api/resources/accounting/types/PaginatedIncomeStatementList.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface PaginatedIncomeStatementList { - next?: string; - previous?: string; - results?: Merge.accounting.IncomeStatement[]; -} diff --git a/src/api/resources/accounting/types/PaginatedInvoiceList.ts b/src/api/resources/accounting/types/PaginatedInvoiceList.ts deleted file mode 100644 index f96e90e7e..000000000 --- a/src/api/resources/accounting/types/PaginatedInvoiceList.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface PaginatedInvoiceList { - next?: string; - previous?: string; - results?: Merge.accounting.Invoice[]; -} diff --git a/src/api/resources/accounting/types/PaginatedIssueList.ts b/src/api/resources/accounting/types/PaginatedIssueList.ts deleted file mode 100644 index 3ac5366d2..000000000 --- a/src/api/resources/accounting/types/PaginatedIssueList.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface PaginatedIssueList { - next?: string; - previous?: string; - results?: Merge.accounting.Issue[]; -} diff --git a/src/api/resources/accounting/types/PaginatedItemList.ts b/src/api/resources/accounting/types/PaginatedItemList.ts deleted file mode 100644 index be941a813..000000000 --- a/src/api/resources/accounting/types/PaginatedItemList.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface PaginatedItemList { - next?: string; - previous?: string; - results?: Merge.accounting.Item[]; -} diff --git a/src/api/resources/accounting/types/PaginatedJournalEntryList.ts b/src/api/resources/accounting/types/PaginatedJournalEntryList.ts deleted file mode 100644 index 5181586e3..000000000 --- a/src/api/resources/accounting/types/PaginatedJournalEntryList.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface PaginatedJournalEntryList { - next?: string; - previous?: string; - results?: Merge.accounting.JournalEntry[]; -} diff --git a/src/api/resources/accounting/types/PaginatedPaymentList.ts b/src/api/resources/accounting/types/PaginatedPaymentList.ts deleted file mode 100644 index 2c3e4aa3e..000000000 --- a/src/api/resources/accounting/types/PaginatedPaymentList.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface PaginatedPaymentList { - next?: string; - previous?: string; - results?: Merge.accounting.Payment[]; -} diff --git a/src/api/resources/accounting/types/PaginatedPaymentMethodList.ts b/src/api/resources/accounting/types/PaginatedPaymentMethodList.ts deleted file mode 100644 index 1101e2eb2..000000000 --- a/src/api/resources/accounting/types/PaginatedPaymentMethodList.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface PaginatedPaymentMethodList { - next?: string; - previous?: string; - results?: Merge.accounting.PaymentMethod[]; -} diff --git a/src/api/resources/accounting/types/PaginatedPaymentTermList.ts b/src/api/resources/accounting/types/PaginatedPaymentTermList.ts deleted file mode 100644 index c9dd068ee..000000000 --- a/src/api/resources/accounting/types/PaginatedPaymentTermList.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface PaginatedPaymentTermList { - next?: string; - previous?: string; - results?: Merge.accounting.PaymentTerm[]; -} diff --git a/src/api/resources/accounting/types/PaginatedProjectList.ts b/src/api/resources/accounting/types/PaginatedProjectList.ts deleted file mode 100644 index 03fa4fb9c..000000000 --- a/src/api/resources/accounting/types/PaginatedProjectList.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface PaginatedProjectList { - next?: string; - previous?: string; - results?: Merge.accounting.Project[]; -} diff --git a/src/api/resources/accounting/types/PaginatedPurchaseOrderList.ts b/src/api/resources/accounting/types/PaginatedPurchaseOrderList.ts deleted file mode 100644 index 7707691ac..000000000 --- a/src/api/resources/accounting/types/PaginatedPurchaseOrderList.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface PaginatedPurchaseOrderList { - next?: string; - previous?: string; - results?: Merge.accounting.PurchaseOrder[]; -} diff --git a/src/api/resources/accounting/types/PaginatedRemoteFieldClassList.ts b/src/api/resources/accounting/types/PaginatedRemoteFieldClassList.ts deleted file mode 100644 index 3d7f7dd02..000000000 --- a/src/api/resources/accounting/types/PaginatedRemoteFieldClassList.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface PaginatedRemoteFieldClassList { - next?: string; - previous?: string; - results?: Merge.accounting.RemoteFieldClass[]; -} diff --git a/src/api/resources/accounting/types/PaginatedSyncStatusList.ts b/src/api/resources/accounting/types/PaginatedSyncStatusList.ts deleted file mode 100644 index 3492081f0..000000000 --- a/src/api/resources/accounting/types/PaginatedSyncStatusList.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface PaginatedSyncStatusList { - next?: string; - previous?: string; - results?: Merge.accounting.SyncStatus[]; -} diff --git a/src/api/resources/accounting/types/PaginatedTaxRateList.ts b/src/api/resources/accounting/types/PaginatedTaxRateList.ts deleted file mode 100644 index 141b5f52d..000000000 --- a/src/api/resources/accounting/types/PaginatedTaxRateList.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface PaginatedTaxRateList { - next?: string; - previous?: string; - results?: Merge.accounting.TaxRate[]; -} diff --git a/src/api/resources/accounting/types/PaginatedTrackingCategoryList.ts b/src/api/resources/accounting/types/PaginatedTrackingCategoryList.ts deleted file mode 100644 index 9ba299606..000000000 --- a/src/api/resources/accounting/types/PaginatedTrackingCategoryList.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface PaginatedTrackingCategoryList { - next?: string; - previous?: string; - results?: Merge.accounting.TrackingCategory[]; -} diff --git a/src/api/resources/accounting/types/PaginatedTransactionList.ts b/src/api/resources/accounting/types/PaginatedTransactionList.ts deleted file mode 100644 index 809d8b3f3..000000000 --- a/src/api/resources/accounting/types/PaginatedTransactionList.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface PaginatedTransactionList { - next?: string; - previous?: string; - results?: Merge.accounting.Transaction[]; -} diff --git a/src/api/resources/accounting/types/PaginatedVendorCreditList.ts b/src/api/resources/accounting/types/PaginatedVendorCreditList.ts deleted file mode 100644 index 35bb34a84..000000000 --- a/src/api/resources/accounting/types/PaginatedVendorCreditList.ts +++ /dev/null @@ -1,9 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface PaginatedVendorCreditList { - next?: string; - previous?: string; - results?: Merge.accounting.VendorCredit[]; -} diff --git a/src/api/resources/accounting/types/PatchedContactRequest.ts b/src/api/resources/accounting/types/PatchedContactRequest.ts deleted file mode 100644 index b99d993ef..000000000 --- a/src/api/resources/accounting/types/PatchedContactRequest.ts +++ /dev/null @@ -1,44 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The Contact Object - * ### Description - * A `Contact` is an individual or business entity to which products and services are sold to or purchased from. The `Contact` model contains both Customers, in which products and services are sold to, and Vendors (or Suppliers), in which products and services are purchased from. - * * A `Contact` is a Vendor/Supplier if the `is_supplier` property is true. - * * A `Contact` is a customer if the `is_customer` property is true. - * - * ### Usage Example - * Fetch from the `LIST Contacts` endpoint and view a company's contacts. - */ -export interface PatchedContactRequest { - /** The contact's name. */ - name?: string; - /** Whether the contact is a supplier. */ - isSupplier?: boolean; - /** Whether the contact is a customer. */ - isCustomer?: boolean; - /** The contact's email address. */ - emailAddress?: string; - /** The contact's tax number. */ - taxNumber?: string; - /** - * The contact's status - * - * * `ACTIVE` - ACTIVE - * * `ARCHIVED` - ARCHIVED - */ - status?: string; - /** The currency the contact's transactions are in. */ - currency?: string; - /** The company the contact belongs to. */ - company?: string; - /** `Address` object IDs for the given `Contacts` object. */ - addresses?: (Merge.accounting.PatchedContactRequestAddressesItem | undefined)[]; - /** `AccountingPhoneNumber` object for the given `Contacts` object. */ - phoneNumbers?: Merge.accounting.AccountingPhoneNumberRequest[]; - integrationParams?: Record; - linkedAccountParams?: Record; - remoteFields?: Merge.accounting.RemoteFieldRequest[]; -} diff --git a/src/api/resources/accounting/types/PatchedContactRequestAddressesItem.ts b/src/api/resources/accounting/types/PatchedContactRequestAddressesItem.ts deleted file mode 100644 index 7e350f14d..000000000 --- a/src/api/resources/accounting/types/PatchedContactRequestAddressesItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type PatchedContactRequestAddressesItem = string | Merge.accounting.Address; diff --git a/src/api/resources/accounting/types/PatchedItemRequestRequest.ts b/src/api/resources/accounting/types/PatchedItemRequestRequest.ts deleted file mode 100644 index 62faeeb2b..000000000 --- a/src/api/resources/accounting/types/PatchedItemRequestRequest.ts +++ /dev/null @@ -1,48 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The Item Object - * ### Description - * The `Item` object refers to the goods involved in a transaction. - * - * ### Usage Example - * Fetch from the `LIST Items` endpoint and view a company's items. - */ -export interface PatchedItemRequestRequest { - /** The item's name. */ - name?: string; - /** - * The item's status. - * - * * `ACTIVE` - ACTIVE - * * `ARCHIVED` - ARCHIVED - */ - status?: Merge.accounting.PatchedItemRequestRequestStatus; - /** - * The item's type. - * - * * `INVENTORY` - INVENTORY - * * `NON_INVENTORY` - NON_INVENTORY - * * `SERVICE` - SERVICE - * * `UNKNOWN` - UNKNOWN - */ - type?: Merge.accounting.PatchedItemRequestRequestType; - /** The item's unit price. */ - unitPrice?: number; - /** The price at which the item is purchased from a vendor. */ - purchasePrice?: number; - /** References the default account used to record a purchase of the item. */ - purchaseAccount?: string; - /** References the default account used to record a sale. */ - salesAccount?: string; - /** The company the item belongs to. */ - company?: string; - /** The default purchase tax rate for this item. */ - purchaseTaxRate?: string; - /** The default sales tax rate for this item. */ - salesTaxRate?: string; - integrationParams?: Record; - linkedAccountParams?: Record; -} diff --git a/src/api/resources/accounting/types/PatchedItemRequestRequestStatus.ts b/src/api/resources/accounting/types/PatchedItemRequestRequestStatus.ts deleted file mode 100644 index fa2ac0766..000000000 --- a/src/api/resources/accounting/types/PatchedItemRequestRequestStatus.ts +++ /dev/null @@ -1,11 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The item's status. - * - * * `ACTIVE` - ACTIVE - * * `ARCHIVED` - ARCHIVED - */ -export type PatchedItemRequestRequestStatus = Merge.accounting.Status7D1Enum | string; diff --git a/src/api/resources/accounting/types/PatchedItemRequestRequestType.ts b/src/api/resources/accounting/types/PatchedItemRequestRequestType.ts deleted file mode 100644 index 785dfd250..000000000 --- a/src/api/resources/accounting/types/PatchedItemRequestRequestType.ts +++ /dev/null @@ -1,13 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The item's type. - * - * * `INVENTORY` - INVENTORY - * * `NON_INVENTORY` - NON_INVENTORY - * * `SERVICE` - SERVICE - * * `UNKNOWN` - UNKNOWN - */ -export type PatchedItemRequestRequestType = Merge.accounting.Type2BbEnum | string; diff --git a/src/api/resources/accounting/types/PatchedPaymentRequest.ts b/src/api/resources/accounting/types/PatchedPaymentRequest.ts deleted file mode 100644 index 9d8b8c208..000000000 --- a/src/api/resources/accounting/types/PatchedPaymentRequest.ts +++ /dev/null @@ -1,354 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The Payment Object - * ### Description - * The `Payment` object represents general payments made towards a specific transaction. - * - * ### Usage Example - * Fetch from the `GET Payment` endpoint and view an invoice's payment. - */ -export interface PatchedPaymentRequest { - /** The payment's transaction date. */ - transactionDate?: Date; - /** The supplier, or customer involved in the payment. */ - contact?: Merge.accounting.PatchedPaymentRequestContact; - /** The supplier’s or customer’s account in which the payment is made. */ - account?: Merge.accounting.PatchedPaymentRequestAccount; - /** The method which this payment was made by. */ - paymentMethod?: Merge.accounting.PatchedPaymentRequestPaymentMethod; - /** - * The payment's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ - currency?: Merge.accounting.PatchedPaymentRequestCurrency; - /** The payment's exchange rate. */ - exchangeRate?: string; - /** The company the payment belongs to. */ - company?: Merge.accounting.PatchedPaymentRequestCompany; - /** The total amount of money being paid to the supplier, or customer, after taxes. */ - totalAmount?: number; - /** - * The type of the invoice. - * - * * `ACCOUNTS_PAYABLE` - ACCOUNTS_PAYABLE - * * `ACCOUNTS_RECEIVABLE` - ACCOUNTS_RECEIVABLE - */ - type?: Merge.accounting.PatchedPaymentRequestType; - trackingCategories?: (Merge.accounting.PatchedPaymentRequestTrackingCategoriesItem | undefined)[]; - /** The accounting period that the Payment was generated in. */ - accountingPeriod?: Merge.accounting.PatchedPaymentRequestAccountingPeriod; - /** A list of “Payment Applied to Lines” objects. */ - appliedToLines?: Merge.accounting.PatchedPaymentRequestAppliedToLinesItem[]; - integrationParams?: Record; - linkedAccountParams?: Record; - remoteFields?: Merge.accounting.RemoteFieldRequest[]; -} diff --git a/src/api/resources/accounting/types/PatchedPaymentRequestAccount.ts b/src/api/resources/accounting/types/PatchedPaymentRequestAccount.ts deleted file mode 100644 index abfeb05c1..000000000 --- a/src/api/resources/accounting/types/PatchedPaymentRequestAccount.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The supplier’s or customer’s account in which the payment is made. - */ -export type PatchedPaymentRequestAccount = string | Merge.accounting.Account; diff --git a/src/api/resources/accounting/types/PatchedPaymentRequestAccountingPeriod.ts b/src/api/resources/accounting/types/PatchedPaymentRequestAccountingPeriod.ts deleted file mode 100644 index 85c1c49bd..000000000 --- a/src/api/resources/accounting/types/PatchedPaymentRequestAccountingPeriod.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The accounting period that the Payment was generated in. - */ -export type PatchedPaymentRequestAccountingPeriod = string | Merge.accounting.AccountingPeriod; diff --git a/src/api/resources/accounting/types/PatchedPaymentRequestAppliedToLinesItem.ts b/src/api/resources/accounting/types/PatchedPaymentRequestAppliedToLinesItem.ts deleted file mode 100644 index 765c75a87..000000000 --- a/src/api/resources/accounting/types/PatchedPaymentRequestAppliedToLinesItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type PatchedPaymentRequestAppliedToLinesItem = string | Merge.accounting.PaymentLineItemRequest; diff --git a/src/api/resources/accounting/types/PatchedPaymentRequestCompany.ts b/src/api/resources/accounting/types/PatchedPaymentRequestCompany.ts deleted file mode 100644 index e937c04ea..000000000 --- a/src/api/resources/accounting/types/PatchedPaymentRequestCompany.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The company the payment belongs to. - */ -export type PatchedPaymentRequestCompany = string | Merge.accounting.CompanyInfo; diff --git a/src/api/resources/accounting/types/PatchedPaymentRequestContact.ts b/src/api/resources/accounting/types/PatchedPaymentRequestContact.ts deleted file mode 100644 index 9f9485691..000000000 --- a/src/api/resources/accounting/types/PatchedPaymentRequestContact.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The supplier, or customer involved in the payment. - */ -export type PatchedPaymentRequestContact = string | Merge.accounting.Contact; diff --git a/src/api/resources/accounting/types/PatchedPaymentRequestCurrency.ts b/src/api/resources/accounting/types/PatchedPaymentRequestCurrency.ts deleted file mode 100644 index 81de5dd71..000000000 --- a/src/api/resources/accounting/types/PatchedPaymentRequestCurrency.ts +++ /dev/null @@ -1,315 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The payment's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ -export type PatchedPaymentRequestCurrency = Merge.accounting.TransactionCurrencyEnum | string; diff --git a/src/api/resources/accounting/types/PatchedPaymentRequestPaymentMethod.ts b/src/api/resources/accounting/types/PatchedPaymentRequestPaymentMethod.ts deleted file mode 100644 index d756cd96b..000000000 --- a/src/api/resources/accounting/types/PatchedPaymentRequestPaymentMethod.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The method which this payment was made by. - */ -export type PatchedPaymentRequestPaymentMethod = string | Merge.accounting.PaymentMethod; diff --git a/src/api/resources/accounting/types/PatchedPaymentRequestTrackingCategoriesItem.ts b/src/api/resources/accounting/types/PatchedPaymentRequestTrackingCategoriesItem.ts deleted file mode 100644 index 714fc6fb1..000000000 --- a/src/api/resources/accounting/types/PatchedPaymentRequestTrackingCategoriesItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type PatchedPaymentRequestTrackingCategoriesItem = string | Merge.accounting.TrackingCategory; diff --git a/src/api/resources/accounting/types/PatchedPaymentRequestType.ts b/src/api/resources/accounting/types/PatchedPaymentRequestType.ts deleted file mode 100644 index 78c6503d0..000000000 --- a/src/api/resources/accounting/types/PatchedPaymentRequestType.ts +++ /dev/null @@ -1,11 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The type of the invoice. - * - * * `ACCOUNTS_PAYABLE` - ACCOUNTS_PAYABLE - * * `ACCOUNTS_RECEIVABLE` - ACCOUNTS_RECEIVABLE - */ -export type PatchedPaymentRequestType = Merge.accounting.PaymentTypeEnum | string; diff --git a/src/api/resources/accounting/types/Payment.ts b/src/api/resources/accounting/types/Payment.ts deleted file mode 100644 index 7b02ae30c..000000000 --- a/src/api/resources/accounting/types/Payment.ts +++ /dev/null @@ -1,365 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The Payment Object - * ### Description - * The `Payment` object represents general payments made towards a specific transaction. - * - * ### Usage Example - * Fetch from the `GET Payment` endpoint and view an invoice's payment. - */ -export interface Payment { - id?: string; - /** The third-party API ID of the matching object. */ - remoteId?: string; - /** The datetime that this object was created by Merge. */ - createdAt?: Date; - /** The datetime that this object was modified by Merge. */ - modifiedAt?: Date; - /** The payment's transaction date. */ - transactionDate?: Date; - /** The supplier, or customer involved in the payment. */ - contact?: Merge.accounting.PaymentContact; - /** The supplier’s or customer’s account in which the payment is made. */ - account?: Merge.accounting.PaymentAccount; - /** The method which this payment was made by. */ - paymentMethod?: Merge.accounting.PaymentPaymentMethod; - /** - * The payment's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ - currency?: Merge.accounting.PaymentCurrency; - /** The payment's exchange rate. */ - exchangeRate?: string; - /** The company the payment belongs to. */ - company?: Merge.accounting.PaymentCompany; - /** The total amount of money being paid to the supplier, or customer, after taxes. */ - totalAmount?: number; - /** - * The type of the invoice. - * - * * `ACCOUNTS_PAYABLE` - ACCOUNTS_PAYABLE - * * `ACCOUNTS_RECEIVABLE` - ACCOUNTS_RECEIVABLE - */ - type?: Merge.accounting.PaymentType; - trackingCategories?: (Merge.accounting.PaymentTrackingCategoriesItem | undefined)[]; - /** The accounting period that the Payment was generated in. */ - accountingPeriod?: Merge.accounting.PaymentAccountingPeriod; - /** A list of “Payment Applied to Lines” objects. */ - appliedToLines?: Merge.accounting.PaymentAppliedToLinesItem[]; - /** When the third party's payment entry was updated. */ - remoteUpdatedAt?: Date; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - remoteWasDeleted?: boolean; - fieldMappings?: Record; - remoteData?: Merge.accounting.RemoteData[]; - remoteFields?: Merge.accounting.RemoteField[]; -} diff --git a/src/api/resources/accounting/types/PaymentAccount.ts b/src/api/resources/accounting/types/PaymentAccount.ts deleted file mode 100644 index 93e07b48f..000000000 --- a/src/api/resources/accounting/types/PaymentAccount.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The supplier’s or customer’s account in which the payment is made. - */ -export type PaymentAccount = string | Merge.accounting.Account; diff --git a/src/api/resources/accounting/types/PaymentAccountingPeriod.ts b/src/api/resources/accounting/types/PaymentAccountingPeriod.ts deleted file mode 100644 index fa6bb41cd..000000000 --- a/src/api/resources/accounting/types/PaymentAccountingPeriod.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The accounting period that the Payment was generated in. - */ -export type PaymentAccountingPeriod = string | Merge.accounting.AccountingPeriod; diff --git a/src/api/resources/accounting/types/PaymentAppliedToLinesItem.ts b/src/api/resources/accounting/types/PaymentAppliedToLinesItem.ts deleted file mode 100644 index a9b13bb32..000000000 --- a/src/api/resources/accounting/types/PaymentAppliedToLinesItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type PaymentAppliedToLinesItem = string | Merge.accounting.PaymentLineItem; diff --git a/src/api/resources/accounting/types/PaymentCompany.ts b/src/api/resources/accounting/types/PaymentCompany.ts deleted file mode 100644 index 64e2f0aac..000000000 --- a/src/api/resources/accounting/types/PaymentCompany.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The company the payment belongs to. - */ -export type PaymentCompany = string | Merge.accounting.CompanyInfo; diff --git a/src/api/resources/accounting/types/PaymentContact.ts b/src/api/resources/accounting/types/PaymentContact.ts deleted file mode 100644 index fa8191980..000000000 --- a/src/api/resources/accounting/types/PaymentContact.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The supplier, or customer involved in the payment. - */ -export type PaymentContact = string | Merge.accounting.Contact; diff --git a/src/api/resources/accounting/types/PaymentCurrency.ts b/src/api/resources/accounting/types/PaymentCurrency.ts deleted file mode 100644 index b93a397f5..000000000 --- a/src/api/resources/accounting/types/PaymentCurrency.ts +++ /dev/null @@ -1,315 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The payment's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ -export type PaymentCurrency = Merge.accounting.TransactionCurrencyEnum | string; diff --git a/src/api/resources/accounting/types/PaymentLineItem.ts b/src/api/resources/accounting/types/PaymentLineItem.ts deleted file mode 100644 index 679c0eb9f..000000000 --- a/src/api/resources/accounting/types/PaymentLineItem.ts +++ /dev/null @@ -1,27 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * # The PaymentLineItem Object - * ### Description - * The `PaymentLineItem` object is an applied-to-line on a `Payment` that can either be a `Invoice`, `CreditNote`, or `JournalEntry`. - * - * ### Usage Example - * `Payment` will have a field called `applied-to-lines` which will be an array of `PaymentLineItemInternalMappingSerializer` objects that can either be a `Invoice`, `CreditNote`, or `JournalEntry`. - */ -export interface PaymentLineItem { - id?: string; - /** The third-party API ID of the matching object. */ - remoteId?: string; - /** The datetime that this object was created by Merge. */ - createdAt?: Date; - /** The datetime that this object was modified by Merge. */ - modifiedAt?: Date; - /** The amount being applied to the transaction. */ - appliedAmount?: string; - /** The date the payment portion is applied. */ - appliedDate?: Date; - /** The Merge ID of the transaction the payment portion is being applied to. */ - relatedObjectId?: string; - /** The type of transaction the payment portion is being applied to. Possible values include: INVOICE, JOURNAL_ENTRY, or CREDIT_NOTE. */ - relatedObjectType?: string; -} diff --git a/src/api/resources/accounting/types/PaymentLineItemRequest.ts b/src/api/resources/accounting/types/PaymentLineItemRequest.ts deleted file mode 100644 index 8a6c4dfcb..000000000 --- a/src/api/resources/accounting/types/PaymentLineItemRequest.ts +++ /dev/null @@ -1,27 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The PaymentLineItem Object - * ### Description - * The `PaymentLineItem` object is an applied-to-line on a `Payment` that can either be a `Invoice`, `CreditNote`, or `JournalEntry`. - * - * ### Usage Example - * `Payment` will have a field called `applied-to-lines` which will be an array of `PaymentLineItemInternalMappingSerializer` objects that can either be a `Invoice`, `CreditNote`, or `JournalEntry`. - */ -export interface PaymentLineItemRequest { - /** The third-party API ID of the matching object. */ - remoteId?: string; - /** The amount being applied to the transaction. */ - appliedAmount?: string; - /** The date the payment portion is applied. */ - appliedDate?: Date; - /** The Merge ID of the transaction the payment portion is being applied to. */ - relatedObjectId?: string; - /** The type of transaction the payment portion is being applied to. Possible values include: INVOICE, JOURNAL_ENTRY, or CREDIT_NOTE. */ - relatedObjectType?: string; - integrationParams?: Record; - linkedAccountParams?: Record; - remoteFields?: Merge.accounting.RemoteFieldRequest[]; -} diff --git a/src/api/resources/accounting/types/PaymentMethod.ts b/src/api/resources/accounting/types/PaymentMethod.ts deleted file mode 100644 index 5472249e9..000000000 --- a/src/api/resources/accounting/types/PaymentMethod.ts +++ /dev/null @@ -1,39 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The PaymentMethod Object - * ### Description - * The `PaymentMethod` object defines how a payment against an invoice is made. - * - * ### Usage Example - * Fetch from the `GET PaymentMethod` endpoint and view payment method information. - */ -export interface PaymentMethod { - id?: string; - /** The third-party API ID of the matching object. */ - remoteId?: string; - /** The datetime that this object was created by Merge. */ - createdAt?: Date; - /** The datetime that this object was modified by Merge. */ - modifiedAt?: Date; - /** - * The type of the payment method. - * - * * `CREDIT_CARD` - CREDIT_CARD - * * `DEBIT_CARD` - DEBIT_CARD - * * `ACH` - ACH - * * `CASH` - CASH - * * `CHECK` - CHECK - */ - methodType: Merge.accounting.PaymentMethodMethodType; - /** The payment method’s name */ - name: string; - /** `True` if the payment method is active, `False` if not. */ - isActive?: boolean; - /** When the third party's payment method was updated. */ - remoteUpdatedAt?: Date; - fieldMappings?: Record; - remoteData?: Merge.accounting.RemoteData[]; -} diff --git a/src/api/resources/accounting/types/PaymentMethodMethodType.ts b/src/api/resources/accounting/types/PaymentMethodMethodType.ts deleted file mode 100644 index a2d54575c..000000000 --- a/src/api/resources/accounting/types/PaymentMethodMethodType.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The type of the payment method. - * - * * `CREDIT_CARD` - CREDIT_CARD - * * `DEBIT_CARD` - DEBIT_CARD - * * `ACH` - ACH - * * `CASH` - CASH - * * `CHECK` - CHECK - */ -export type PaymentMethodMethodType = Merge.accounting.MethodTypeEnum | string; diff --git a/src/api/resources/accounting/types/PaymentPaymentMethod.ts b/src/api/resources/accounting/types/PaymentPaymentMethod.ts deleted file mode 100644 index 2376117f1..000000000 --- a/src/api/resources/accounting/types/PaymentPaymentMethod.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The method which this payment was made by. - */ -export type PaymentPaymentMethod = string | Merge.accounting.PaymentMethod; diff --git a/src/api/resources/accounting/types/PaymentRequest.ts b/src/api/resources/accounting/types/PaymentRequest.ts deleted file mode 100644 index 1008157da..000000000 --- a/src/api/resources/accounting/types/PaymentRequest.ts +++ /dev/null @@ -1,354 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The Payment Object - * ### Description - * The `Payment` object represents general payments made towards a specific transaction. - * - * ### Usage Example - * Fetch from the `GET Payment` endpoint and view an invoice's payment. - */ -export interface PaymentRequest { - /** The payment's transaction date. */ - transactionDate?: Date; - /** The supplier, or customer involved in the payment. */ - contact?: Merge.accounting.PaymentRequestContact; - /** The supplier’s or customer’s account in which the payment is made. */ - account?: Merge.accounting.PaymentRequestAccount; - /** The method which this payment was made by. */ - paymentMethod?: Merge.accounting.PaymentRequestPaymentMethod; - /** - * The payment's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ - currency?: Merge.accounting.PaymentRequestCurrency; - /** The payment's exchange rate. */ - exchangeRate?: string; - /** The company the payment belongs to. */ - company?: Merge.accounting.PaymentRequestCompany; - /** The total amount of money being paid to the supplier, or customer, after taxes. */ - totalAmount?: number; - /** - * The type of the invoice. - * - * * `ACCOUNTS_PAYABLE` - ACCOUNTS_PAYABLE - * * `ACCOUNTS_RECEIVABLE` - ACCOUNTS_RECEIVABLE - */ - type?: Merge.accounting.PaymentRequestType; - trackingCategories?: (Merge.accounting.PaymentRequestTrackingCategoriesItem | undefined)[]; - /** The accounting period that the Payment was generated in. */ - accountingPeriod?: Merge.accounting.PaymentRequestAccountingPeriod; - /** A list of “Payment Applied to Lines” objects. */ - appliedToLines?: Merge.accounting.PaymentRequestAppliedToLinesItem[]; - integrationParams?: Record; - linkedAccountParams?: Record; - remoteFields?: Merge.accounting.RemoteFieldRequest[]; -} diff --git a/src/api/resources/accounting/types/PaymentRequestAccount.ts b/src/api/resources/accounting/types/PaymentRequestAccount.ts deleted file mode 100644 index b3f0a7fc1..000000000 --- a/src/api/resources/accounting/types/PaymentRequestAccount.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The supplier’s or customer’s account in which the payment is made. - */ -export type PaymentRequestAccount = string | Merge.accounting.Account; diff --git a/src/api/resources/accounting/types/PaymentRequestAccountingPeriod.ts b/src/api/resources/accounting/types/PaymentRequestAccountingPeriod.ts deleted file mode 100644 index fed61381b..000000000 --- a/src/api/resources/accounting/types/PaymentRequestAccountingPeriod.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The accounting period that the Payment was generated in. - */ -export type PaymentRequestAccountingPeriod = string | Merge.accounting.AccountingPeriod; diff --git a/src/api/resources/accounting/types/PaymentRequestAppliedToLinesItem.ts b/src/api/resources/accounting/types/PaymentRequestAppliedToLinesItem.ts deleted file mode 100644 index b909039fb..000000000 --- a/src/api/resources/accounting/types/PaymentRequestAppliedToLinesItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type PaymentRequestAppliedToLinesItem = string | Merge.accounting.PaymentLineItemRequest; diff --git a/src/api/resources/accounting/types/PaymentRequestCompany.ts b/src/api/resources/accounting/types/PaymentRequestCompany.ts deleted file mode 100644 index 734183f42..000000000 --- a/src/api/resources/accounting/types/PaymentRequestCompany.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The company the payment belongs to. - */ -export type PaymentRequestCompany = string | Merge.accounting.CompanyInfo; diff --git a/src/api/resources/accounting/types/PaymentRequestContact.ts b/src/api/resources/accounting/types/PaymentRequestContact.ts deleted file mode 100644 index 8db3a6e4b..000000000 --- a/src/api/resources/accounting/types/PaymentRequestContact.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The supplier, or customer involved in the payment. - */ -export type PaymentRequestContact = string | Merge.accounting.Contact; diff --git a/src/api/resources/accounting/types/PaymentRequestCurrency.ts b/src/api/resources/accounting/types/PaymentRequestCurrency.ts deleted file mode 100644 index bca1757e5..000000000 --- a/src/api/resources/accounting/types/PaymentRequestCurrency.ts +++ /dev/null @@ -1,315 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The payment's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ -export type PaymentRequestCurrency = Merge.accounting.TransactionCurrencyEnum | string; diff --git a/src/api/resources/accounting/types/PaymentRequestPaymentMethod.ts b/src/api/resources/accounting/types/PaymentRequestPaymentMethod.ts deleted file mode 100644 index 2961dea2b..000000000 --- a/src/api/resources/accounting/types/PaymentRequestPaymentMethod.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The method which this payment was made by. - */ -export type PaymentRequestPaymentMethod = string | Merge.accounting.PaymentMethod; diff --git a/src/api/resources/accounting/types/PaymentRequestTrackingCategoriesItem.ts b/src/api/resources/accounting/types/PaymentRequestTrackingCategoriesItem.ts deleted file mode 100644 index 9d98e44a9..000000000 --- a/src/api/resources/accounting/types/PaymentRequestTrackingCategoriesItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type PaymentRequestTrackingCategoriesItem = string | Merge.accounting.TrackingCategory; diff --git a/src/api/resources/accounting/types/PaymentRequestType.ts b/src/api/resources/accounting/types/PaymentRequestType.ts deleted file mode 100644 index f01a944b9..000000000 --- a/src/api/resources/accounting/types/PaymentRequestType.ts +++ /dev/null @@ -1,11 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The type of the invoice. - * - * * `ACCOUNTS_PAYABLE` - ACCOUNTS_PAYABLE - * * `ACCOUNTS_RECEIVABLE` - ACCOUNTS_RECEIVABLE - */ -export type PaymentRequestType = Merge.accounting.PaymentTypeEnum | string; diff --git a/src/api/resources/accounting/types/PaymentResponse.ts b/src/api/resources/accounting/types/PaymentResponse.ts deleted file mode 100644 index 13d67cdd9..000000000 --- a/src/api/resources/accounting/types/PaymentResponse.ts +++ /dev/null @@ -1,10 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface PaymentResponse { - model: Merge.accounting.Payment; - warnings: Merge.accounting.WarningValidationProblem[]; - errors: Merge.accounting.ErrorValidationProblem[]; - logs?: Merge.accounting.DebugModeLog[]; -} diff --git a/src/api/resources/accounting/types/PaymentTerm.ts b/src/api/resources/accounting/types/PaymentTerm.ts deleted file mode 100644 index 8650432da..000000000 --- a/src/api/resources/accounting/types/PaymentTerm.ts +++ /dev/null @@ -1,36 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The PaymentTerm Object - * ### Description - * The `PaymentTerm` object is the agreed-upon conditions between a buyer and a seller that define the timing, - * amount, and conditions under which payment for goods or services must be made. - * - * ### Usage Example - * Fetch from the `GET PaymentTerm` endpoint and view payment term information. - */ -export interface PaymentTerm { - id?: string; - /** The third-party API ID of the matching object. */ - remoteId?: string; - /** The datetime that this object was created by Merge. */ - createdAt?: Date; - /** The datetime that this object was modified by Merge. */ - modifiedAt?: Date; - /** The name of the payment term. */ - name: string; - /** `True` if the payment term is active, `False` if not. */ - isActive?: boolean; - /** The subsidiary that the payment term belongs to. */ - company?: Merge.accounting.PaymentTermCompany; - /** The number of days after the invoice date that payment is due. */ - daysUntilDue?: number; - /** The number of days the invoice must be paid before discounts expire. */ - discountDays?: number; - /** When the third party's payment term was modified. */ - remoteLastModifiedAt?: Date; - fieldMappings?: Record; - remoteData?: Merge.accounting.RemoteData[]; -} diff --git a/src/api/resources/accounting/types/PaymentTermCompany.ts b/src/api/resources/accounting/types/PaymentTermCompany.ts deleted file mode 100644 index 8bfea7865..000000000 --- a/src/api/resources/accounting/types/PaymentTermCompany.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The subsidiary that the payment term belongs to. - */ -export type PaymentTermCompany = string | Merge.accounting.CompanyInfo; diff --git a/src/api/resources/accounting/types/PaymentTrackingCategoriesItem.ts b/src/api/resources/accounting/types/PaymentTrackingCategoriesItem.ts deleted file mode 100644 index 491ea26c1..000000000 --- a/src/api/resources/accounting/types/PaymentTrackingCategoriesItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type PaymentTrackingCategoriesItem = string | Merge.accounting.TrackingCategory; diff --git a/src/api/resources/accounting/types/PaymentType.ts b/src/api/resources/accounting/types/PaymentType.ts deleted file mode 100644 index b098f6d26..000000000 --- a/src/api/resources/accounting/types/PaymentType.ts +++ /dev/null @@ -1,11 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The type of the invoice. - * - * * `ACCOUNTS_PAYABLE` - ACCOUNTS_PAYABLE - * * `ACCOUNTS_RECEIVABLE` - ACCOUNTS_RECEIVABLE - */ -export type PaymentType = Merge.accounting.PaymentTypeEnum | string; diff --git a/src/api/resources/accounting/types/PaymentTypeEnum.ts b/src/api/resources/accounting/types/PaymentTypeEnum.ts deleted file mode 100644 index 418b40571..000000000 --- a/src/api/resources/accounting/types/PaymentTypeEnum.ts +++ /dev/null @@ -1,11 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * * `ACCOUNTS_PAYABLE` - ACCOUNTS_PAYABLE - * * `ACCOUNTS_RECEIVABLE` - ACCOUNTS_RECEIVABLE - */ -export const PaymentTypeEnum = { - AccountsPayable: "ACCOUNTS_PAYABLE", - AccountsReceivable: "ACCOUNTS_RECEIVABLE", -} as const; -export type PaymentTypeEnum = (typeof PaymentTypeEnum)[keyof typeof PaymentTypeEnum]; diff --git a/src/api/resources/accounting/types/PostingStatusEnum.ts b/src/api/resources/accounting/types/PostingStatusEnum.ts deleted file mode 100644 index b3928b7e2..000000000 --- a/src/api/resources/accounting/types/PostingStatusEnum.ts +++ /dev/null @@ -1,11 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * * `UNPOSTED` - UNPOSTED - * * `POSTED` - POSTED - */ -export const PostingStatusEnum = { - Unposted: "UNPOSTED", - Posted: "POSTED", -} as const; -export type PostingStatusEnum = (typeof PostingStatusEnum)[keyof typeof PostingStatusEnum]; diff --git a/src/api/resources/accounting/types/Project.ts b/src/api/resources/accounting/types/Project.ts deleted file mode 100644 index f4bd35be7..000000000 --- a/src/api/resources/accounting/types/Project.ts +++ /dev/null @@ -1,32 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The Project Object - * ### Description - * The `Project` object is used to track and manage time, costs, resources, and revenue for specific initiatives or work efforts. - * It provides classification on transactions for allocating expenses, revenue, and activities to a specific project for financial reporting. - * - * ### Usage Example - * Fetch from the `GET Project` endpoint and view project information. - */ -export interface Project { - id?: string; - /** The third-party API ID of the matching object. */ - remoteId?: string; - /** The datetime that this object was created by Merge. */ - createdAt?: Date; - /** The datetime that this object was modified by Merge. */ - modifiedAt?: Date; - /** The project’s name */ - name: string; - /** `True` if the project is active, `False` if the project is not active. */ - isActive?: boolean; - /** The subsidiary that the project belongs to. */ - company?: Merge.accounting.ProjectCompany; - /** The supplier, or customer involved in the project. */ - contact?: Merge.accounting.ProjectContact; - fieldMappings?: Record; - remoteData?: Merge.accounting.RemoteData[]; -} diff --git a/src/api/resources/accounting/types/ProjectCompany.ts b/src/api/resources/accounting/types/ProjectCompany.ts deleted file mode 100644 index e36eb1c5b..000000000 --- a/src/api/resources/accounting/types/ProjectCompany.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The subsidiary that the project belongs to. - */ -export type ProjectCompany = string | Merge.accounting.CompanyInfo; diff --git a/src/api/resources/accounting/types/ProjectContact.ts b/src/api/resources/accounting/types/ProjectContact.ts deleted file mode 100644 index 648aa85d4..000000000 --- a/src/api/resources/accounting/types/ProjectContact.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The supplier, or customer involved in the project. - */ -export type ProjectContact = string | Merge.accounting.Contact; diff --git a/src/api/resources/accounting/types/PurchaseOrder.ts b/src/api/resources/accounting/types/PurchaseOrder.ts deleted file mode 100644 index b13b1eaee..000000000 --- a/src/api/resources/accounting/types/PurchaseOrder.ts +++ /dev/null @@ -1,381 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The PurchaseOrder Object - * ### Description - * A `PurchaseOrder` represents a request to purchase goods or services from a vendor. It outlines the details of the purchase, such as the items or services requested, quantities, prices, and delivery details. - * - * A `PurchaseOrder` is a crucial component of the procurement process, but does not typically result in any impact on the company’s general ledger. The general ledger is typically only affected when the `PurchaseOrder` is fulfilled as an *Accounts Payable* `Invoice` object (also known as a Bill). - * - * ### Usage Example - * Fetch from the `LIST PurchaseOrders` endpoint and view a company's purchase orders. - */ -export interface PurchaseOrder { - id?: string; - /** The third-party API ID of the matching object. */ - remoteId?: string; - /** The datetime that this object was created by Merge. */ - createdAt?: Date; - /** The datetime that this object was modified by Merge. */ - modifiedAt?: Date; - /** - * The purchase order's status. - * - * * `DRAFT` - DRAFT - * * `SUBMITTED` - SUBMITTED - * * `AUTHORIZED` - AUTHORIZED - * * `BILLED` - BILLED - * * `DELETED` - DELETED - */ - status?: Merge.accounting.PurchaseOrderStatus; - /** The purchase order's issue date. */ - issueDate?: Date; - /** The human-readable number of the purchase order. */ - purchaseOrderNumber?: string; - /** The purchase order's delivery date. */ - deliveryDate?: Date; - /** The purchase order's delivery address. */ - deliveryAddress?: Merge.accounting.PurchaseOrderDeliveryAddress; - /** The contact making the purchase order. */ - customer?: string; - /** The party fulfilling the purchase order. */ - vendor?: Merge.accounting.PurchaseOrderVendor; - /** A memo attached to the purchase order. */ - memo?: string; - /** The company the purchase order belongs to. */ - company?: Merge.accounting.PurchaseOrderCompany; - /** The purchase order's total amount. */ - totalAmount?: number; - /** - * The purchase order's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ - currency?: Merge.accounting.PurchaseOrderCurrency; - /** The purchase order's exchange rate. */ - exchangeRate?: string; - /** The payment term that applies to this transaction. */ - paymentTerm?: Merge.accounting.PurchaseOrderPaymentTerm; - lineItems?: Merge.accounting.PurchaseOrderLineItem[]; - /** If the transaction is inclusive or exclusive of tax. `True` if inclusive, `False` if exclusive. */ - inclusiveOfTax?: boolean; - trackingCategories?: (Merge.accounting.PurchaseOrderTrackingCategoriesItem | undefined)[]; - /** The accounting period that the PurchaseOrder was generated in. */ - accountingPeriod?: Merge.accounting.PurchaseOrderAccountingPeriod; - /** When the third party's purchase order note was created. */ - remoteCreatedAt?: Date; - /** When the third party's purchase order note was updated. */ - remoteUpdatedAt?: Date; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - remoteWasDeleted?: boolean; - fieldMappings?: Record; - remoteData?: Merge.accounting.RemoteData[]; - remoteFields?: Merge.accounting.RemoteField[]; -} diff --git a/src/api/resources/accounting/types/PurchaseOrderAccountingPeriod.ts b/src/api/resources/accounting/types/PurchaseOrderAccountingPeriod.ts deleted file mode 100644 index b137c9ede..000000000 --- a/src/api/resources/accounting/types/PurchaseOrderAccountingPeriod.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The accounting period that the PurchaseOrder was generated in. - */ -export type PurchaseOrderAccountingPeriod = string | Merge.accounting.AccountingPeriod; diff --git a/src/api/resources/accounting/types/PurchaseOrderCompany.ts b/src/api/resources/accounting/types/PurchaseOrderCompany.ts deleted file mode 100644 index 279142dde..000000000 --- a/src/api/resources/accounting/types/PurchaseOrderCompany.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The company the purchase order belongs to. - */ -export type PurchaseOrderCompany = string | Merge.accounting.CompanyInfo; diff --git a/src/api/resources/accounting/types/PurchaseOrderCurrency.ts b/src/api/resources/accounting/types/PurchaseOrderCurrency.ts deleted file mode 100644 index 023573e9f..000000000 --- a/src/api/resources/accounting/types/PurchaseOrderCurrency.ts +++ /dev/null @@ -1,315 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The purchase order's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ -export type PurchaseOrderCurrency = Merge.accounting.TransactionCurrencyEnum | string; diff --git a/src/api/resources/accounting/types/PurchaseOrderDeliveryAddress.ts b/src/api/resources/accounting/types/PurchaseOrderDeliveryAddress.ts deleted file mode 100644 index 0163916d5..000000000 --- a/src/api/resources/accounting/types/PurchaseOrderDeliveryAddress.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The purchase order's delivery address. - */ -export type PurchaseOrderDeliveryAddress = string | Merge.accounting.Address; diff --git a/src/api/resources/accounting/types/PurchaseOrderLineItem.ts b/src/api/resources/accounting/types/PurchaseOrderLineItem.ts deleted file mode 100644 index ec9890fcf..000000000 --- a/src/api/resources/accounting/types/PurchaseOrderLineItem.ts +++ /dev/null @@ -1,358 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The PurchaseOrderLineItem Object - * ### Description - * The `PurchaseOrderLineItem` object is used to represent a purchase order's line item. - * - * ### Usage Example - * Fetch from the `GET PurchaseOrder` endpoint and view a company's purchase orders. - */ -export interface PurchaseOrderLineItem { - id?: string; - /** The third-party API ID of the matching object. */ - remoteId?: string; - /** The datetime that this object was created by Merge. */ - createdAt?: Date; - /** The datetime that this object was modified by Merge. */ - modifiedAt?: Date; - /** A description of the good being purchased. */ - description?: string; - /** The line item's unit price. */ - unitPrice?: number; - /** The line item's quantity. */ - quantity?: number; - item?: Merge.accounting.PurchaseOrderLineItemItem; - /** The purchase order line item's account. */ - account?: string; - /** The purchase order line item's associated tracking category. */ - trackingCategory?: string; - /** The purchase order line item's associated tracking categories. */ - trackingCategories?: (string | undefined)[]; - /** The purchase order line item's tax amount. */ - taxAmount?: string; - /** The purchase order line item's total amount. */ - totalLineAmount?: string; - /** - * The purchase order line item's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ - currency?: Merge.accounting.PurchaseOrderLineItemCurrency; - /** The tax rate that applies to this line item. */ - taxRate?: string; - /** The purchase order line item's exchange rate. */ - exchangeRate?: string; - /** The company the purchase order line item belongs to. */ - company?: string; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - remoteWasDeleted?: boolean; - remoteFields?: Merge.accounting.RemoteField[]; -} diff --git a/src/api/resources/accounting/types/PurchaseOrderLineItemCurrency.ts b/src/api/resources/accounting/types/PurchaseOrderLineItemCurrency.ts deleted file mode 100644 index 744b0bb8a..000000000 --- a/src/api/resources/accounting/types/PurchaseOrderLineItemCurrency.ts +++ /dev/null @@ -1,315 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The purchase order line item's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ -export type PurchaseOrderLineItemCurrency = Merge.accounting.TransactionCurrencyEnum | string; diff --git a/src/api/resources/accounting/types/PurchaseOrderLineItemItem.ts b/src/api/resources/accounting/types/PurchaseOrderLineItemItem.ts deleted file mode 100644 index 5f9a27900..000000000 --- a/src/api/resources/accounting/types/PurchaseOrderLineItemItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type PurchaseOrderLineItemItem = string | Merge.accounting.Item; diff --git a/src/api/resources/accounting/types/PurchaseOrderLineItemRequest.ts b/src/api/resources/accounting/types/PurchaseOrderLineItemRequest.ts deleted file mode 100644 index d0bd86f7e..000000000 --- a/src/api/resources/accounting/types/PurchaseOrderLineItemRequest.ts +++ /dev/null @@ -1,353 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The PurchaseOrderLineItem Object - * ### Description - * The `PurchaseOrderLineItem` object is used to represent a purchase order's line item. - * - * ### Usage Example - * Fetch from the `GET PurchaseOrder` endpoint and view a company's purchase orders. - */ -export interface PurchaseOrderLineItemRequest { - /** The third-party API ID of the matching object. */ - remoteId?: string; - /** A description of the good being purchased. */ - description?: string; - /** The line item's unit price. */ - unitPrice?: number; - /** The line item's quantity. */ - quantity?: number; - item?: Merge.accounting.PurchaseOrderLineItemRequestItem; - /** The purchase order line item's account. */ - account?: string; - /** The purchase order line item's associated tracking category. */ - trackingCategory?: string; - /** The purchase order line item's associated tracking categories. */ - trackingCategories?: (string | undefined)[]; - /** The purchase order line item's tax amount. */ - taxAmount?: string; - /** The purchase order line item's total amount. */ - totalLineAmount?: string; - /** - * The purchase order line item's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ - currency?: Merge.accounting.PurchaseOrderLineItemRequestCurrency; - /** The tax rate that applies to this line item. */ - taxRate?: string; - /** The purchase order line item's exchange rate. */ - exchangeRate?: string; - /** The company the purchase order line item belongs to. */ - company?: string; - integrationParams?: Record; - linkedAccountParams?: Record; - remoteFields?: Merge.accounting.RemoteFieldRequest[]; -} diff --git a/src/api/resources/accounting/types/PurchaseOrderLineItemRequestCurrency.ts b/src/api/resources/accounting/types/PurchaseOrderLineItemRequestCurrency.ts deleted file mode 100644 index 6f57122e1..000000000 --- a/src/api/resources/accounting/types/PurchaseOrderLineItemRequestCurrency.ts +++ /dev/null @@ -1,315 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The purchase order line item's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ -export type PurchaseOrderLineItemRequestCurrency = Merge.accounting.TransactionCurrencyEnum | string; diff --git a/src/api/resources/accounting/types/PurchaseOrderLineItemRequestItem.ts b/src/api/resources/accounting/types/PurchaseOrderLineItemRequestItem.ts deleted file mode 100644 index 111ae2497..000000000 --- a/src/api/resources/accounting/types/PurchaseOrderLineItemRequestItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type PurchaseOrderLineItemRequestItem = string | Merge.accounting.Item; diff --git a/src/api/resources/accounting/types/PurchaseOrderPaymentTerm.ts b/src/api/resources/accounting/types/PurchaseOrderPaymentTerm.ts deleted file mode 100644 index 76725179c..000000000 --- a/src/api/resources/accounting/types/PurchaseOrderPaymentTerm.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The payment term that applies to this transaction. - */ -export type PurchaseOrderPaymentTerm = string | Merge.accounting.PaymentTerm; diff --git a/src/api/resources/accounting/types/PurchaseOrderRequest.ts b/src/api/resources/accounting/types/PurchaseOrderRequest.ts deleted file mode 100644 index 721effc4d..000000000 --- a/src/api/resources/accounting/types/PurchaseOrderRequest.ts +++ /dev/null @@ -1,362 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The PurchaseOrder Object - * ### Description - * The `PurchaseOrder` object is a record of request for a product or service between a buyer and seller. - * - * ### Usage Example - * Fetch from the `LIST PurchaseOrders` endpoint and view a company's purchase orders. - */ -export interface PurchaseOrderRequest { - /** - * The purchase order's status. - * - * * `DRAFT` - DRAFT - * * `SUBMITTED` - SUBMITTED - * * `AUTHORIZED` - AUTHORIZED - * * `BILLED` - BILLED - * * `DELETED` - DELETED - */ - status?: Merge.accounting.PurchaseOrderRequestStatus; - /** The purchase order's issue date. */ - issueDate?: Date; - /** The purchase order's delivery date. */ - deliveryDate?: Date; - /** The purchase order's delivery address. */ - deliveryAddress?: Merge.accounting.PurchaseOrderRequestDeliveryAddress; - /** The contact making the purchase order. */ - customer?: string; - /** The party fulfilling the purchase order. */ - vendor?: Merge.accounting.PurchaseOrderRequestVendor; - /** A memo attached to the purchase order. */ - memo?: string; - /** The company the purchase order belongs to. */ - company?: Merge.accounting.PurchaseOrderRequestCompany; - /** The purchase order's total amount. */ - totalAmount?: number; - /** The payment term that applies to this transaction. */ - paymentTerm?: Merge.accounting.PurchaseOrderRequestPaymentTerm; - /** - * The purchase order's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ - currency?: Merge.accounting.PurchaseOrderRequestCurrency; - /** If the transaction is inclusive or exclusive of tax. `True` if inclusive, `False` if exclusive. */ - inclusiveOfTax?: boolean; - /** The purchase order's exchange rate. */ - exchangeRate?: string; - trackingCategories?: (Merge.accounting.PurchaseOrderRequestTrackingCategoriesItem | undefined)[]; - lineItems?: Merge.accounting.PurchaseOrderLineItemRequest[]; - integrationParams?: Record; - linkedAccountParams?: Record; - remoteFields?: Merge.accounting.RemoteFieldRequest[]; -} diff --git a/src/api/resources/accounting/types/PurchaseOrderRequestCompany.ts b/src/api/resources/accounting/types/PurchaseOrderRequestCompany.ts deleted file mode 100644 index 3405bea3e..000000000 --- a/src/api/resources/accounting/types/PurchaseOrderRequestCompany.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The company the purchase order belongs to. - */ -export type PurchaseOrderRequestCompany = string | Merge.accounting.CompanyInfo; diff --git a/src/api/resources/accounting/types/PurchaseOrderRequestCurrency.ts b/src/api/resources/accounting/types/PurchaseOrderRequestCurrency.ts deleted file mode 100644 index 4cb6c9d7d..000000000 --- a/src/api/resources/accounting/types/PurchaseOrderRequestCurrency.ts +++ /dev/null @@ -1,315 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The purchase order's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ -export type PurchaseOrderRequestCurrency = Merge.accounting.TransactionCurrencyEnum | string; diff --git a/src/api/resources/accounting/types/PurchaseOrderRequestDeliveryAddress.ts b/src/api/resources/accounting/types/PurchaseOrderRequestDeliveryAddress.ts deleted file mode 100644 index d590d3ff9..000000000 --- a/src/api/resources/accounting/types/PurchaseOrderRequestDeliveryAddress.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The purchase order's delivery address. - */ -export type PurchaseOrderRequestDeliveryAddress = string | Merge.accounting.Address; diff --git a/src/api/resources/accounting/types/PurchaseOrderRequestPaymentTerm.ts b/src/api/resources/accounting/types/PurchaseOrderRequestPaymentTerm.ts deleted file mode 100644 index 97ed34bd5..000000000 --- a/src/api/resources/accounting/types/PurchaseOrderRequestPaymentTerm.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The payment term that applies to this transaction. - */ -export type PurchaseOrderRequestPaymentTerm = string | Merge.accounting.PaymentTerm; diff --git a/src/api/resources/accounting/types/PurchaseOrderRequestStatus.ts b/src/api/resources/accounting/types/PurchaseOrderRequestStatus.ts deleted file mode 100644 index 30489378e..000000000 --- a/src/api/resources/accounting/types/PurchaseOrderRequestStatus.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The purchase order's status. - * - * * `DRAFT` - DRAFT - * * `SUBMITTED` - SUBMITTED - * * `AUTHORIZED` - AUTHORIZED - * * `BILLED` - BILLED - * * `DELETED` - DELETED - */ -export type PurchaseOrderRequestStatus = Merge.accounting.PurchaseOrderStatusEnum | string; diff --git a/src/api/resources/accounting/types/PurchaseOrderRequestTrackingCategoriesItem.ts b/src/api/resources/accounting/types/PurchaseOrderRequestTrackingCategoriesItem.ts deleted file mode 100644 index cefc28617..000000000 --- a/src/api/resources/accounting/types/PurchaseOrderRequestTrackingCategoriesItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type PurchaseOrderRequestTrackingCategoriesItem = string | Merge.accounting.TrackingCategory; diff --git a/src/api/resources/accounting/types/PurchaseOrderRequestVendor.ts b/src/api/resources/accounting/types/PurchaseOrderRequestVendor.ts deleted file mode 100644 index 7f03a26bc..000000000 --- a/src/api/resources/accounting/types/PurchaseOrderRequestVendor.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The party fulfilling the purchase order. - */ -export type PurchaseOrderRequestVendor = string | Merge.accounting.Contact; diff --git a/src/api/resources/accounting/types/PurchaseOrderResponse.ts b/src/api/resources/accounting/types/PurchaseOrderResponse.ts deleted file mode 100644 index 37ef28f79..000000000 --- a/src/api/resources/accounting/types/PurchaseOrderResponse.ts +++ /dev/null @@ -1,10 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface PurchaseOrderResponse { - model: Merge.accounting.PurchaseOrder; - warnings: Merge.accounting.WarningValidationProblem[]; - errors: Merge.accounting.ErrorValidationProblem[]; - logs?: Merge.accounting.DebugModeLog[]; -} diff --git a/src/api/resources/accounting/types/PurchaseOrderStatus.ts b/src/api/resources/accounting/types/PurchaseOrderStatus.ts deleted file mode 100644 index 044ced572..000000000 --- a/src/api/resources/accounting/types/PurchaseOrderStatus.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The purchase order's status. - * - * * `DRAFT` - DRAFT - * * `SUBMITTED` - SUBMITTED - * * `AUTHORIZED` - AUTHORIZED - * * `BILLED` - BILLED - * * `DELETED` - DELETED - */ -export type PurchaseOrderStatus = Merge.accounting.PurchaseOrderStatusEnum | string; diff --git a/src/api/resources/accounting/types/PurchaseOrderStatusEnum.ts b/src/api/resources/accounting/types/PurchaseOrderStatusEnum.ts deleted file mode 100644 index 9b15d9eb3..000000000 --- a/src/api/resources/accounting/types/PurchaseOrderStatusEnum.ts +++ /dev/null @@ -1,17 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * * `DRAFT` - DRAFT - * * `SUBMITTED` - SUBMITTED - * * `AUTHORIZED` - AUTHORIZED - * * `BILLED` - BILLED - * * `DELETED` - DELETED - */ -export const PurchaseOrderStatusEnum = { - Draft: "DRAFT", - Submitted: "SUBMITTED", - Authorized: "AUTHORIZED", - Billed: "BILLED", - Deleted: "DELETED", -} as const; -export type PurchaseOrderStatusEnum = (typeof PurchaseOrderStatusEnum)[keyof typeof PurchaseOrderStatusEnum]; diff --git a/src/api/resources/accounting/types/PurchaseOrderTrackingCategoriesItem.ts b/src/api/resources/accounting/types/PurchaseOrderTrackingCategoriesItem.ts deleted file mode 100644 index 2ac323a55..000000000 --- a/src/api/resources/accounting/types/PurchaseOrderTrackingCategoriesItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type PurchaseOrderTrackingCategoriesItem = string | Merge.accounting.TrackingCategory; diff --git a/src/api/resources/accounting/types/PurchaseOrderVendor.ts b/src/api/resources/accounting/types/PurchaseOrderVendor.ts deleted file mode 100644 index fcc2d05f1..000000000 --- a/src/api/resources/accounting/types/PurchaseOrderVendor.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The party fulfilling the purchase order. - */ -export type PurchaseOrderVendor = string | Merge.accounting.Contact; diff --git a/src/api/resources/accounting/types/RemoteData.ts b/src/api/resources/accounting/types/RemoteData.ts deleted file mode 100644 index 3fad40786..000000000 --- a/src/api/resources/accounting/types/RemoteData.ts +++ /dev/null @@ -1,16 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * # The RemoteData Object - * ### Description - * The `RemoteData` object is used to represent the full data pulled from the third-party API for an object. - * - * ### Usage Example - * TODO - */ -export interface RemoteData { - /** The third-party API path that is being called. */ - path: string; - /** The data returned from the third-party for this object in its original, unnormalized format. */ - data?: unknown; -} diff --git a/src/api/resources/accounting/types/RemoteEndpointInfo.ts b/src/api/resources/accounting/types/RemoteEndpointInfo.ts deleted file mode 100644 index f28a1667a..000000000 --- a/src/api/resources/accounting/types/RemoteEndpointInfo.ts +++ /dev/null @@ -1,7 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export interface RemoteEndpointInfo { - method: string; - urlPath: string; - fieldTraversalPath: unknown[]; -} diff --git a/src/api/resources/accounting/types/RemoteField.ts b/src/api/resources/accounting/types/RemoteField.ts deleted file mode 100644 index 99a11cae3..000000000 --- a/src/api/resources/accounting/types/RemoteField.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface RemoteField { - remoteFieldClass: Merge.accounting.RemoteFieldRemoteFieldClass; - value?: unknown; -} diff --git a/src/api/resources/accounting/types/RemoteFieldApi.ts b/src/api/resources/accounting/types/RemoteFieldApi.ts deleted file mode 100644 index 65692ecd8..000000000 --- a/src/api/resources/accounting/types/RemoteFieldApi.ts +++ /dev/null @@ -1,12 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface RemoteFieldApi { - schema: Record; - remoteKeyName: string; - remoteEndpointInfo: Merge.accounting.RemoteEndpointInfo; - exampleValues?: unknown[]; - advancedMetadata?: Merge.accounting.AdvancedMetadata; - coverage?: Merge.accounting.RemoteFieldApiCoverage; -} diff --git a/src/api/resources/accounting/types/RemoteFieldApiCoverage.ts b/src/api/resources/accounting/types/RemoteFieldApiCoverage.ts deleted file mode 100644 index 3691c464e..000000000 --- a/src/api/resources/accounting/types/RemoteFieldApiCoverage.ts +++ /dev/null @@ -1,3 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export type RemoteFieldApiCoverage = number | number; diff --git a/src/api/resources/accounting/types/RemoteFieldApiResponse.ts b/src/api/resources/accounting/types/RemoteFieldApiResponse.ts deleted file mode 100644 index 3403713a8..000000000 --- a/src/api/resources/accounting/types/RemoteFieldApiResponse.ts +++ /dev/null @@ -1,31 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface RemoteFieldApiResponse { - account?: Merge.accounting.RemoteFieldApi[]; - accountingAttachment?: Merge.accounting.RemoteFieldApi[]; - balanceSheet?: Merge.accounting.RemoteFieldApi[]; - cashFlowStatement?: Merge.accounting.RemoteFieldApi[]; - companyInfo?: Merge.accounting.RemoteFieldApi[]; - contact?: Merge.accounting.RemoteFieldApi[]; - incomeStatement?: Merge.accounting.RemoteFieldApi[]; - creditNote?: Merge.accounting.RemoteFieldApi[]; - item?: Merge.accounting.RemoteFieldApi[]; - purchaseOrder?: Merge.accounting.RemoteFieldApi[]; - trackingCategory?: Merge.accounting.RemoteFieldApi[]; - journalEntry?: Merge.accounting.RemoteFieldApi[]; - taxRate?: Merge.accounting.RemoteFieldApi[]; - invoice?: Merge.accounting.RemoteFieldApi[]; - payment?: Merge.accounting.RemoteFieldApi[]; - expense?: Merge.accounting.RemoteFieldApi[]; - vendorCredit?: Merge.accounting.RemoteFieldApi[]; - transaction?: Merge.accounting.RemoteFieldApi[]; - accountingPeriod?: Merge.accounting.RemoteFieldApi[]; - generalLedgerTransaction?: Merge.accounting.RemoteFieldApi[]; - bankFeedAccount?: Merge.accounting.RemoteFieldApi[]; - employee?: Merge.accounting.RemoteFieldApi[]; - paymentMethod?: Merge.accounting.RemoteFieldApi[]; - project?: Merge.accounting.RemoteFieldApi[]; - paymentTerm?: Merge.accounting.RemoteFieldApi[]; -} diff --git a/src/api/resources/accounting/types/RemoteFieldClass.ts b/src/api/resources/accounting/types/RemoteFieldClass.ts deleted file mode 100644 index 65aa4b378..000000000 --- a/src/api/resources/accounting/types/RemoteFieldClass.ts +++ /dev/null @@ -1,17 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface RemoteFieldClass { - id?: string; - displayName?: string; - remoteKeyName?: string; - description?: string; - isCustom?: boolean; - isCommonModelField?: boolean; - isRequired?: boolean; - fieldType?: Merge.accounting.FieldTypeEnum; - fieldFormat?: Merge.accounting.FieldFormatEnum; - fieldChoices?: string[]; - itemSchema?: Merge.accounting.ItemSchema; -} diff --git a/src/api/resources/accounting/types/RemoteFieldRemoteFieldClass.ts b/src/api/resources/accounting/types/RemoteFieldRemoteFieldClass.ts deleted file mode 100644 index 9eaa23405..000000000 --- a/src/api/resources/accounting/types/RemoteFieldRemoteFieldClass.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type RemoteFieldRemoteFieldClass = string | Merge.accounting.RemoteFieldClass; diff --git a/src/api/resources/accounting/types/RemoteFieldRequest.ts b/src/api/resources/accounting/types/RemoteFieldRequest.ts deleted file mode 100644 index cd70a0eb7..000000000 --- a/src/api/resources/accounting/types/RemoteFieldRequest.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface RemoteFieldRequest { - remoteFieldClass: Merge.accounting.RemoteFieldRequestRemoteFieldClass; - value?: unknown; -} diff --git a/src/api/resources/accounting/types/RemoteFieldRequestRemoteFieldClass.ts b/src/api/resources/accounting/types/RemoteFieldRequestRemoteFieldClass.ts deleted file mode 100644 index d9c5ca6aa..000000000 --- a/src/api/resources/accounting/types/RemoteFieldRequestRemoteFieldClass.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type RemoteFieldRequestRemoteFieldClass = string | Merge.accounting.RemoteFieldClass; diff --git a/src/api/resources/accounting/types/RemoteKey.ts b/src/api/resources/accounting/types/RemoteKey.ts deleted file mode 100644 index 04d86d608..000000000 --- a/src/api/resources/accounting/types/RemoteKey.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * # The RemoteKey Object - * ### Description - * The `RemoteKey` object is used to represent a request for a new remote key. - * - * ### Usage Example - * Post a `GenerateRemoteKey` to receive a new `RemoteKey`. - */ -export interface RemoteKey { - name: string; - key: string; -} diff --git a/src/api/resources/accounting/types/RemoteResponse.ts b/src/api/resources/accounting/types/RemoteResponse.ts deleted file mode 100644 index dc7edf9e7..000000000 --- a/src/api/resources/accounting/types/RemoteResponse.ts +++ /dev/null @@ -1,21 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The RemoteResponse Object - * ### Description - * The `RemoteResponse` object is used to represent information returned from a third-party endpoint. - * - * ### Usage Example - * View the `RemoteResponse` returned from your `DataPassthrough`. - */ -export interface RemoteResponse { - method: string; - path: string; - status: number; - response?: unknown; - responseHeaders?: Record; - responseType?: Merge.accounting.ResponseTypeEnum; - headers?: Record; -} diff --git a/src/api/resources/accounting/types/ReportItem.ts b/src/api/resources/accounting/types/ReportItem.ts deleted file mode 100644 index 27e32e28d..000000000 --- a/src/api/resources/accounting/types/ReportItem.ts +++ /dev/null @@ -1,27 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * # The ReportItem Object - * ### Description - * The `ReportItem` object is used to represent a report item for a Balance Sheet, Cash Flow Statement or Profit and Loss Report. - * - * ### Usage Example - * Fetch from the `GET BalanceSheet` endpoint and view the balance sheet's report items. - */ -export interface ReportItem { - /** The third-party API ID of the matching object. */ - remoteId?: string; - /** The datetime that this object was created by Merge. */ - createdAt?: Date; - /** The datetime that this object was modified by Merge. */ - modifiedAt?: Date; - /** The report item's name. */ - name?: string; - /** The report item's value. */ - value?: number; - subItems?: Record[]; - /** The company the report item belongs to. */ - company?: string; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - remoteWasDeleted?: boolean; -} diff --git a/src/api/resources/accounting/types/RequestFormatEnum.ts b/src/api/resources/accounting/types/RequestFormatEnum.ts deleted file mode 100644 index 2673da47f..000000000 --- a/src/api/resources/accounting/types/RequestFormatEnum.ts +++ /dev/null @@ -1,13 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * * `JSON` - JSON - * * `XML` - XML - * * `MULTIPART` - MULTIPART - */ -export const RequestFormatEnum = { - Json: "JSON", - Xml: "XML", - Multipart: "MULTIPART", -} as const; -export type RequestFormatEnum = (typeof RequestFormatEnum)[keyof typeof RequestFormatEnum]; diff --git a/src/api/resources/accounting/types/ResponseTypeEnum.ts b/src/api/resources/accounting/types/ResponseTypeEnum.ts deleted file mode 100644 index dfce6bea7..000000000 --- a/src/api/resources/accounting/types/ResponseTypeEnum.ts +++ /dev/null @@ -1,11 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * * `JSON` - JSON - * * `BASE64_GZIP` - BASE64_GZIP - */ -export const ResponseTypeEnum = { - Json: "JSON", - Base64Gzip: "BASE64_GZIP", -} as const; -export type ResponseTypeEnum = (typeof ResponseTypeEnum)[keyof typeof ResponseTypeEnum]; diff --git a/src/api/resources/accounting/types/RoleEnum.ts b/src/api/resources/accounting/types/RoleEnum.ts deleted file mode 100644 index 524088eb7..000000000 --- a/src/api/resources/accounting/types/RoleEnum.ts +++ /dev/null @@ -1,19 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * * `ADMIN` - ADMIN - * * `DEVELOPER` - DEVELOPER - * * `MEMBER` - MEMBER - * * `API` - API - * * `SYSTEM` - SYSTEM - * * `MERGE_TEAM` - MERGE_TEAM - */ -export const RoleEnum = { - Admin: "ADMIN", - Developer: "DEVELOPER", - Member: "MEMBER", - Api: "API", - System: "SYSTEM", - MergeTeam: "MERGE_TEAM", -} as const; -export type RoleEnum = (typeof RoleEnum)[keyof typeof RoleEnum]; diff --git a/src/api/resources/accounting/types/SelectiveSyncConfigurationsUsageEnum.ts b/src/api/resources/accounting/types/SelectiveSyncConfigurationsUsageEnum.ts deleted file mode 100644 index 4fce467f7..000000000 --- a/src/api/resources/accounting/types/SelectiveSyncConfigurationsUsageEnum.ts +++ /dev/null @@ -1,12 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * * `IN_NEXT_SYNC` - IN_NEXT_SYNC - * * `IN_LAST_SYNC` - IN_LAST_SYNC - */ -export const SelectiveSyncConfigurationsUsageEnum = { - InNextSync: "IN_NEXT_SYNC", - InLastSync: "IN_LAST_SYNC", -} as const; -export type SelectiveSyncConfigurationsUsageEnum = - (typeof SelectiveSyncConfigurationsUsageEnum)[keyof typeof SelectiveSyncConfigurationsUsageEnum]; diff --git a/src/api/resources/accounting/types/Status7D1Enum.ts b/src/api/resources/accounting/types/Status7D1Enum.ts deleted file mode 100644 index 73cf53491..000000000 --- a/src/api/resources/accounting/types/Status7D1Enum.ts +++ /dev/null @@ -1,11 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * * `ACTIVE` - ACTIVE - * * `ARCHIVED` - ARCHIVED - */ -export const Status7D1Enum = { - Active: "ACTIVE", - Archived: "ARCHIVED", -} as const; -export type Status7D1Enum = (typeof Status7D1Enum)[keyof typeof Status7D1Enum]; diff --git a/src/api/resources/accounting/types/Status895Enum.ts b/src/api/resources/accounting/types/Status895Enum.ts deleted file mode 100644 index ed4907155..000000000 --- a/src/api/resources/accounting/types/Status895Enum.ts +++ /dev/null @@ -1,11 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * * `ACTIVE` - ACTIVE - * * `INACTIVE` - INACTIVE - */ -export const Status895Enum = { - Active: "ACTIVE", - Inactive: "INACTIVE", -} as const; -export type Status895Enum = (typeof Status895Enum)[keyof typeof Status895Enum]; diff --git a/src/api/resources/accounting/types/StatusFd5Enum.ts b/src/api/resources/accounting/types/StatusFd5Enum.ts deleted file mode 100644 index 2ecbb5852..000000000 --- a/src/api/resources/accounting/types/StatusFd5Enum.ts +++ /dev/null @@ -1,19 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * * `SYNCING` - SYNCING - * * `DONE` - DONE - * * `FAILED` - FAILED - * * `DISABLED` - DISABLED - * * `PAUSED` - PAUSED - * * `PARTIALLY_SYNCED` - PARTIALLY_SYNCED - */ -export const StatusFd5Enum = { - Syncing: "SYNCING", - Done: "DONE", - Failed: "FAILED", - Disabled: "DISABLED", - Paused: "PAUSED", - PartiallySynced: "PARTIALLY_SYNCED", -} as const; -export type StatusFd5Enum = (typeof StatusFd5Enum)[keyof typeof StatusFd5Enum]; diff --git a/src/api/resources/accounting/types/SyncStatus.ts b/src/api/resources/accounting/types/SyncStatus.ts deleted file mode 100644 index b299721db..000000000 --- a/src/api/resources/accounting/types/SyncStatus.ts +++ /dev/null @@ -1,23 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The SyncStatus Object - * ### Description - * The `SyncStatus` object is used to represent the syncing state of an account - * - * ### Usage Example - * View the `SyncStatus` for an account to see how recently its models were synced. - */ -export interface SyncStatus { - modelName: string; - modelId: string; - lastSyncStart?: Date; - nextSyncStart?: Date; - lastSyncResult?: Merge.accounting.LastSyncResultEnum; - lastSyncFinished?: Date; - status: Merge.accounting.SyncStatusStatus; - isInitialSync: boolean; - selectiveSyncConfigurationsUsage?: Merge.accounting.SelectiveSyncConfigurationsUsageEnum; -} diff --git a/src/api/resources/accounting/types/SyncStatusStatus.ts b/src/api/resources/accounting/types/SyncStatusStatus.ts deleted file mode 100644 index ecffae551..000000000 --- a/src/api/resources/accounting/types/SyncStatusStatus.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type SyncStatusStatus = Merge.accounting.StatusFd5Enum | string; diff --git a/src/api/resources/accounting/types/TaxComponent.ts b/src/api/resources/accounting/types/TaxComponent.ts deleted file mode 100644 index d2375c1f3..000000000 --- a/src/api/resources/accounting/types/TaxComponent.ts +++ /dev/null @@ -1,36 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The TaxRate Object - * ### Description - * The `TaxComponent` object is used to represent any sub-taxes that make up the `TaxRate`. - * - * ### Usage Example - * Fetch from the `LIST TaxRates` endpoint and view tax components relevant to a tax rate. - */ -export interface TaxComponent { - id?: string; - /** The third-party API ID of the matching object. */ - remoteId?: string; - /** The datetime that this object was created by Merge. */ - createdAt?: Date; - /** The datetime that this object was modified by Merge. */ - modifiedAt?: Date; - /** The tax rate’s name. */ - name?: string; - /** The tax component’s rate. */ - rate?: string; - /** Returns True if the tax component is compound, False if not. */ - isCompound?: boolean; - /** - * Returns PURCHASE if the tax component corresponds to a purchase tax or SALES if the tax component corresponds to a sales tax. - * - * * `SALES` - SALES - * * `PURCHASE` - PURCHASE - */ - componentType?: Merge.accounting.TaxComponentComponentType; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - remoteWasDeleted?: boolean; -} diff --git a/src/api/resources/accounting/types/TaxComponentComponentType.ts b/src/api/resources/accounting/types/TaxComponentComponentType.ts deleted file mode 100644 index d617e31cf..000000000 --- a/src/api/resources/accounting/types/TaxComponentComponentType.ts +++ /dev/null @@ -1,11 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * Returns PURCHASE if the tax component corresponds to a purchase tax or SALES if the tax component corresponds to a sales tax. - * - * * `SALES` - SALES - * * `PURCHASE` - PURCHASE - */ -export type TaxComponentComponentType = Merge.accounting.ComponentTypeEnum | string; diff --git a/src/api/resources/accounting/types/TaxRate.ts b/src/api/resources/accounting/types/TaxRate.ts deleted file mode 100644 index b627a4df8..000000000 --- a/src/api/resources/accounting/types/TaxRate.ts +++ /dev/null @@ -1,48 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The TaxRate Object - * ### Description - * The `TaxRate` object is used to represent a tax rate. - * - * ### Usage Example - * Fetch from the `LIST TaxRates` endpoint and view tax rates relevant to a company. - */ -export interface TaxRate { - id?: string; - /** The third-party API ID of the matching object. */ - remoteId?: string; - /** The datetime that this object was created by Merge. */ - createdAt?: Date; - /** The datetime that this object was modified by Merge. */ - modifiedAt?: Date; - /** The subsidiary that the tax rate belongs to (in the case of multi-entity systems). */ - company?: Merge.accounting.TaxRateCompany; - /** The tax code associated with this tax rate or group of tax rates from the third-party platform. */ - code?: string; - /** The tax rate’s name. */ - name?: string; - /** The tax rate's description. */ - description?: string; - /** - * The tax rate’s status - `ACTIVE` if an active tax rate, `ARCHIVED` if not active. - * - * * `ACTIVE` - ACTIVE - * * `ARCHIVED` - ARCHIVED - */ - status?: Merge.accounting.TaxRateStatus; - /** The country the tax rate is associated with. */ - country?: string; - /** The tax’s total tax rate - sum of the tax components (not compounded). */ - totalTaxRate?: number; - /** The tax rate’s effective tax rate - total amount of tax with compounding. */ - effectiveTaxRate?: number; - /** The related tax components of the tax rate. */ - taxComponents?: Merge.accounting.TaxRateTaxComponentsItem[]; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - remoteWasDeleted?: boolean; - fieldMappings?: Record; - remoteData?: Merge.accounting.RemoteData[]; -} diff --git a/src/api/resources/accounting/types/TaxRateCompany.ts b/src/api/resources/accounting/types/TaxRateCompany.ts deleted file mode 100644 index 548322fdc..000000000 --- a/src/api/resources/accounting/types/TaxRateCompany.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The subsidiary that the tax rate belongs to (in the case of multi-entity systems). - */ -export type TaxRateCompany = string | Merge.accounting.CompanyInfo; diff --git a/src/api/resources/accounting/types/TaxRateStatus.ts b/src/api/resources/accounting/types/TaxRateStatus.ts deleted file mode 100644 index 58a5c12c1..000000000 --- a/src/api/resources/accounting/types/TaxRateStatus.ts +++ /dev/null @@ -1,11 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The tax rate’s status - `ACTIVE` if an active tax rate, `ARCHIVED` if not active. - * - * * `ACTIVE` - ACTIVE - * * `ARCHIVED` - ARCHIVED - */ -export type TaxRateStatus = Merge.accounting.Status7D1Enum | string; diff --git a/src/api/resources/accounting/types/TaxRateTaxComponentsItem.ts b/src/api/resources/accounting/types/TaxRateTaxComponentsItem.ts deleted file mode 100644 index 916f5412d..000000000 --- a/src/api/resources/accounting/types/TaxRateTaxComponentsItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type TaxRateTaxComponentsItem = string | Merge.accounting.TaxComponent; diff --git a/src/api/resources/accounting/types/TrackingCategory.ts b/src/api/resources/accounting/types/TrackingCategory.ts deleted file mode 100644 index 661ffd0ec..000000000 --- a/src/api/resources/accounting/types/TrackingCategory.ts +++ /dev/null @@ -1,43 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The TrackingCategory Object - * ### Description - * A `TrackingCategory` object represents a categorization method used to classify transactions within an accounting platform. They are often used to group records for reporting and analysis purposes. The most common types of `TrackingCategories` are Classes and Departments. - * - * ### Usage Example - * Fetch from the `GET TrackingCategory` endpoint and view a company's tracking category. - */ -export interface TrackingCategory { - id?: string; - /** The third-party API ID of the matching object. */ - remoteId?: string; - /** The datetime that this object was created by Merge. */ - createdAt?: Date; - /** The datetime that this object was modified by Merge. */ - modifiedAt?: Date; - /** The tracking category's name. */ - name?: string; - /** - * The tracking category's status. - * - * * `ACTIVE` - ACTIVE - * * `ARCHIVED` - ARCHIVED - */ - status?: Merge.accounting.TrackingCategoryStatus; - /** - * The tracking category’s type. - * - * * `CLASS` - CLASS - * * `DEPARTMENT` - DEPARTMENT - */ - categoryType?: Merge.accounting.TrackingCategoryCategoryType; - parentCategory?: string; - /** The company the GeneralLedgerTransaction belongs to. */ - company?: Merge.accounting.TrackingCategoryCompany; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - remoteWasDeleted?: boolean; - fieldMappings?: Record; -} diff --git a/src/api/resources/accounting/types/TrackingCategoryCategoryType.ts b/src/api/resources/accounting/types/TrackingCategoryCategoryType.ts deleted file mode 100644 index 461429e4f..000000000 --- a/src/api/resources/accounting/types/TrackingCategoryCategoryType.ts +++ /dev/null @@ -1,11 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The tracking category’s type. - * - * * `CLASS` - CLASS - * * `DEPARTMENT` - DEPARTMENT - */ -export type TrackingCategoryCategoryType = Merge.accounting.CategoryTypeEnum | string; diff --git a/src/api/resources/accounting/types/TrackingCategoryCompany.ts b/src/api/resources/accounting/types/TrackingCategoryCompany.ts deleted file mode 100644 index 5fe4fd580..000000000 --- a/src/api/resources/accounting/types/TrackingCategoryCompany.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The company the GeneralLedgerTransaction belongs to. - */ -export type TrackingCategoryCompany = string | Merge.accounting.CompanyInfo; diff --git a/src/api/resources/accounting/types/TrackingCategoryStatus.ts b/src/api/resources/accounting/types/TrackingCategoryStatus.ts deleted file mode 100644 index 0c6c8c239..000000000 --- a/src/api/resources/accounting/types/TrackingCategoryStatus.ts +++ /dev/null @@ -1,11 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The tracking category's status. - * - * * `ACTIVE` - ACTIVE - * * `ARCHIVED` - ARCHIVED - */ -export type TrackingCategoryStatus = Merge.accounting.Status7D1Enum | string; diff --git a/src/api/resources/accounting/types/Transaction.ts b/src/api/resources/accounting/types/Transaction.ts deleted file mode 100644 index bb1c35254..000000000 --- a/src/api/resources/accounting/types/Transaction.ts +++ /dev/null @@ -1,365 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The Transaction Object - * ### Description - * The `Transaction` common model includes records of all types of transactions that do not appear in other common models. The type of transaction can be identified through the type field. More specifically, it will contain all types of transactions outside of: - * * __Credit Notes__ - * * __Expenses__ - * * __Invoices__ - * * __Journal Entries__ - * * __Payments__ - * * __Purchase Orders__ - * * __Vendor Credits__ - * - * ### Usage Example - * Fetch from the `GET Transaction` endpoint and view a company's transactions. - */ -export interface Transaction { - id?: string; - /** The third-party API ID of the matching object. */ - remoteId?: string; - /** The datetime that this object was created by Merge. */ - createdAt?: Date; - /** The datetime that this object was modified by Merge. */ - modifiedAt?: Date; - /** The type of transaction, which can by any transaction object not already included in Merge’s common model. */ - transactionType?: string; - /** The transaction's number used for identifying purposes. */ - number?: string; - /** The date upon which the transaction occurred. */ - transactionDate?: Date; - /** The transaction's account. */ - account?: Merge.accounting.TransactionAccount; - /** The contact to whom the transaction relates to. */ - contact?: Merge.accounting.TransactionContact; - /** If the transaction is inclusive or exclusive of tax. `True` if inclusive, `False` if exclusive. */ - inclusiveOfTax?: boolean; - /** The total amount being paid after taxes. */ - totalAmount?: string; - /** - * The transaction's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ - currency?: Merge.accounting.TransactionCurrency; - /** The transaction's exchange rate. */ - exchangeRate?: string; - /** The company the transaction belongs to. */ - company?: string; - trackingCategories?: (Merge.accounting.TransactionTrackingCategoriesItem | undefined)[]; - lineItems?: Merge.accounting.TransactionLineItem[]; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - remoteWasDeleted?: boolean; - /** The accounting period that the Transaction was generated in. */ - accountingPeriod?: Merge.accounting.TransactionAccountingPeriod; - fieldMappings?: Record; - remoteData?: Merge.accounting.RemoteData[]; -} diff --git a/src/api/resources/accounting/types/TransactionAccount.ts b/src/api/resources/accounting/types/TransactionAccount.ts deleted file mode 100644 index 03f38102e..000000000 --- a/src/api/resources/accounting/types/TransactionAccount.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The transaction's account. - */ -export type TransactionAccount = string | Merge.accounting.Account; diff --git a/src/api/resources/accounting/types/TransactionAccountingPeriod.ts b/src/api/resources/accounting/types/TransactionAccountingPeriod.ts deleted file mode 100644 index b9f1525d9..000000000 --- a/src/api/resources/accounting/types/TransactionAccountingPeriod.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The accounting period that the Transaction was generated in. - */ -export type TransactionAccountingPeriod = string | Merge.accounting.AccountingPeriod; diff --git a/src/api/resources/accounting/types/TransactionContact.ts b/src/api/resources/accounting/types/TransactionContact.ts deleted file mode 100644 index bb2ec71ba..000000000 --- a/src/api/resources/accounting/types/TransactionContact.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The contact to whom the transaction relates to. - */ -export type TransactionContact = string | Merge.accounting.Contact; diff --git a/src/api/resources/accounting/types/TransactionCurrency.ts b/src/api/resources/accounting/types/TransactionCurrency.ts deleted file mode 100644 index 14dac24bb..000000000 --- a/src/api/resources/accounting/types/TransactionCurrency.ts +++ /dev/null @@ -1,315 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The transaction's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ -export type TransactionCurrency = Merge.accounting.TransactionCurrencyEnum | string; diff --git a/src/api/resources/accounting/types/TransactionCurrencyEnum.ts b/src/api/resources/accounting/types/TransactionCurrencyEnum.ts deleted file mode 100644 index 16e6ad3f2..000000000 --- a/src/api/resources/accounting/types/TransactionCurrencyEnum.ts +++ /dev/null @@ -1,619 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ -export const TransactionCurrencyEnum = { - Xua: "XUA", - Afn: "AFN", - Afa: "AFA", - All: "ALL", - Alk: "ALK", - Dzd: "DZD", - Adp: "ADP", - Aoa: "AOA", - Aok: "AOK", - Aon: "AON", - Aor: "AOR", - Ara: "ARA", - Ars: "ARS", - Arm: "ARM", - Arp: "ARP", - Arl: "ARL", - Amd: "AMD", - Awg: "AWG", - Aud: "AUD", - Ats: "ATS", - Azn: "AZN", - Azm: "AZM", - Bsd: "BSD", - Bhd: "BHD", - Bdt: "BDT", - Bbd: "BBD", - Byn: "BYN", - Byb: "BYB", - Byr: "BYR", - Bef: "BEF", - Bec: "BEC", - Bel: "BEL", - Bzd: "BZD", - Bmd: "BMD", - Btn: "BTN", - Bob: "BOB", - Bol: "BOL", - Bov: "BOV", - Bop: "BOP", - Bam: "BAM", - Bad: "BAD", - Ban: "BAN", - Bwp: "BWP", - Brc: "BRC", - Brz: "BRZ", - Bre: "BRE", - Brr: "BRR", - Brn: "BRN", - Brb: "BRB", - Brl: "BRL", - Gbp: "GBP", - Bnd: "BND", - Bgl: "BGL", - Bgn: "BGN", - Bgo: "BGO", - Bgm: "BGM", - Buk: "BUK", - Bif: "BIF", - Xpf: "XPF", - Khr: "KHR", - Cad: "CAD", - Cve: "CVE", - Kyd: "KYD", - Xaf: "XAF", - Cle: "CLE", - Clp: "CLP", - Clf: "CLF", - Cnx: "CNX", - Cny: "CNY", - Cnh: "CNH", - Cop: "COP", - Cou: "COU", - Kmf: "KMF", - Cdf: "CDF", - Crc: "CRC", - Hrd: "HRD", - Hrk: "HRK", - Cuc: "CUC", - Cup: "CUP", - Cyp: "CYP", - Czk: "CZK", - Csk: "CSK", - Dkk: "DKK", - Djf: "DJF", - Dop: "DOP", - Nlg: "NLG", - Xcd: "XCD", - Ddm: "DDM", - Ecs: "ECS", - Ecv: "ECV", - Egp: "EGP", - Gqe: "GQE", - Ern: "ERN", - Eek: "EEK", - Etb: "ETB", - Eur: "EUR", - Xba: "XBA", - Xeu: "XEU", - Xbb: "XBB", - Xbc: "XBC", - Xbd: "XBD", - Fkp: "FKP", - Fjd: "FJD", - Fim: "FIM", - Frf: "FRF", - Xfo: "XFO", - Xfu: "XFU", - Gmd: "GMD", - Gek: "GEK", - Gel: "GEL", - Dem: "DEM", - Ghs: "GHS", - Ghc: "GHC", - Gip: "GIP", - Xau: "XAU", - Grd: "GRD", - Gtq: "GTQ", - Gwp: "GWP", - Gnf: "GNF", - Gns: "GNS", - Gyd: "GYD", - Htg: "HTG", - Hnl: "HNL", - Hkd: "HKD", - Huf: "HUF", - Imp: "IMP", - Isk: "ISK", - Isj: "ISJ", - Inr: "INR", - Idr: "IDR", - Irr: "IRR", - Iqd: "IQD", - Iep: "IEP", - Ils: "ILS", - Ilp: "ILP", - Ilr: "ILR", - Itl: "ITL", - Jmd: "JMD", - Jpy: "JPY", - Jod: "JOD", - Kzt: "KZT", - Kes: "KES", - Kwd: "KWD", - Kgs: "KGS", - Lak: "LAK", - Lvl: "LVL", - Lvr: "LVR", - Lbp: "LBP", - Lsl: "LSL", - Lrd: "LRD", - Lyd: "LYD", - Ltl: "LTL", - Ltt: "LTT", - Lul: "LUL", - Luc: "LUC", - Luf: "LUF", - Mop: "MOP", - Mkd: "MKD", - Mkn: "MKN", - Mga: "MGA", - Mgf: "MGF", - Mwk: "MWK", - Myr: "MYR", - Mvr: "MVR", - Mvp: "MVP", - Mlf: "MLF", - Mtl: "MTL", - Mtp: "MTP", - Mru: "MRU", - Mro: "MRO", - Mur: "MUR", - Mxv: "MXV", - Mxn: "MXN", - Mxp: "MXP", - Mdc: "MDC", - Mdl: "MDL", - Mcf: "MCF", - Mnt: "MNT", - Mad: "MAD", - Maf: "MAF", - Mze: "MZE", - Mzn: "MZN", - Mzm: "MZM", - Mmk: "MMK", - Nad: "NAD", - Npr: "NPR", - Ang: "ANG", - Twd: "TWD", - Nzd: "NZD", - Nio: "NIO", - Nic: "NIC", - Ngn: "NGN", - Kpw: "KPW", - Nok: "NOK", - Omr: "OMR", - Pkr: "PKR", - Xpd: "XPD", - Pab: "PAB", - Pgk: "PGK", - Pyg: "PYG", - Pei: "PEI", - Pen: "PEN", - Pes: "PES", - Php: "PHP", - Xpt: "XPT", - Pln: "PLN", - Plz: "PLZ", - Pte: "PTE", - Gwe: "GWE", - Qar: "QAR", - Xre: "XRE", - Rhd: "RHD", - Ron: "RON", - Rol: "ROL", - Rub: "RUB", - Rur: "RUR", - Rwf: "RWF", - Svc: "SVC", - Wst: "WST", - Sar: "SAR", - Rsd: "RSD", - Csd: "CSD", - Scr: "SCR", - Sll: "SLL", - Xag: "XAG", - Sgd: "SGD", - Skk: "SKK", - Sit: "SIT", - Sbd: "SBD", - Sos: "SOS", - Zar: "ZAR", - Zal: "ZAL", - Krh: "KRH", - Krw: "KRW", - Kro: "KRO", - Ssp: "SSP", - Sur: "SUR", - Esp: "ESP", - Esa: "ESA", - Esb: "ESB", - Xdr: "XDR", - Lkr: "LKR", - Shp: "SHP", - Xsu: "XSU", - Sdd: "SDD", - Sdg: "SDG", - Sdp: "SDP", - Srd: "SRD", - Srg: "SRG", - Szl: "SZL", - Sek: "SEK", - Chf: "CHF", - Syp: "SYP", - Stn: "STN", - Std: "STD", - Tvd: "TVD", - Tjr: "TJR", - Tjs: "TJS", - Tzs: "TZS", - Xts: "XTS", - Thb: "THB", - Xxx: "XXX", - Tpe: "TPE", - Top: "TOP", - Ttd: "TTD", - Tnd: "TND", - Try: "TRY", - Trl: "TRL", - Tmt: "TMT", - Tmm: "TMM", - Usd: "USD", - Usn: "USN", - Uss: "USS", - Ugx: "UGX", - Ugs: "UGS", - Uah: "UAH", - Uak: "UAK", - Aed: "AED", - Uyw: "UYW", - Uyu: "UYU", - Uyp: "UYP", - Uyi: "UYI", - Uzs: "UZS", - Vuv: "VUV", - Ves: "VES", - Veb: "VEB", - Vef: "VEF", - Vnd: "VND", - Vnn: "VNN", - Che: "CHE", - Chw: "CHW", - Xof: "XOF", - Ydd: "YDD", - Yer: "YER", - Yun: "YUN", - Yud: "YUD", - Yum: "YUM", - Yur: "YUR", - Zwn: "ZWN", - Zrn: "ZRN", - Zrz: "ZRZ", - Zmw: "ZMW", - Zmk: "ZMK", - Zwd: "ZWD", - Zwr: "ZWR", - Zwl: "ZWL", -} as const; -export type TransactionCurrencyEnum = (typeof TransactionCurrencyEnum)[keyof typeof TransactionCurrencyEnum]; diff --git a/src/api/resources/accounting/types/TransactionLineItem.ts b/src/api/resources/accounting/types/TransactionLineItem.ts deleted file mode 100644 index 79a3888ef..000000000 --- a/src/api/resources/accounting/types/TransactionLineItem.ts +++ /dev/null @@ -1,355 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The TransactionLineItem Object - * ### Description - * The `TransactionLineItem` object is used to represent a transaction's line items. - * - * ### Usage Example - * Fetch from the `GET TransactionLineItem` endpoint and view the transaction's line items. - */ -export interface TransactionLineItem { - id?: string; - /** The third-party API ID of the matching object. */ - remoteId?: string; - /** The datetime that this object was created by Merge. */ - createdAt?: Date; - /** The datetime that this object was modified by Merge. */ - modifiedAt?: Date; - /** An internal note used by the business to clarify purpose of the transaction. */ - memo?: string; - /** The line item's unit price. */ - unitPrice?: string; - /** The line item's quantity. */ - quantity?: string; - item?: Merge.accounting.TransactionLineItemItem; - /** The line item's account. */ - account?: string; - /** The line's associated tracking category. */ - trackingCategory?: string; - /** The transaction line item's associated tracking categories. */ - trackingCategories?: (string | undefined)[]; - /** The line item's total. */ - totalLineAmount?: string; - /** The tax rate that applies to this line item. */ - taxRate?: string; - /** - * The line item's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ - currency?: Merge.accounting.TransactionLineItemCurrency; - /** The line item's exchange rate. */ - exchangeRate?: string; - /** The company the line belongs to. */ - company?: string; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - remoteWasDeleted?: boolean; -} diff --git a/src/api/resources/accounting/types/TransactionLineItemCurrency.ts b/src/api/resources/accounting/types/TransactionLineItemCurrency.ts deleted file mode 100644 index 365feb725..000000000 --- a/src/api/resources/accounting/types/TransactionLineItemCurrency.ts +++ /dev/null @@ -1,315 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The line item's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ -export type TransactionLineItemCurrency = Merge.accounting.TransactionCurrencyEnum | string; diff --git a/src/api/resources/accounting/types/TransactionLineItemItem.ts b/src/api/resources/accounting/types/TransactionLineItemItem.ts deleted file mode 100644 index d4917e045..000000000 --- a/src/api/resources/accounting/types/TransactionLineItemItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type TransactionLineItemItem = string | Merge.accounting.Item; diff --git a/src/api/resources/accounting/types/TransactionTrackingCategoriesItem.ts b/src/api/resources/accounting/types/TransactionTrackingCategoriesItem.ts deleted file mode 100644 index f46e7426b..000000000 --- a/src/api/resources/accounting/types/TransactionTrackingCategoriesItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type TransactionTrackingCategoriesItem = string | Merge.accounting.TrackingCategory; diff --git a/src/api/resources/accounting/types/Type2BbEnum.ts b/src/api/resources/accounting/types/Type2BbEnum.ts deleted file mode 100644 index 9794a7ad5..000000000 --- a/src/api/resources/accounting/types/Type2BbEnum.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * * `INVENTORY` - INVENTORY - * * `NON_INVENTORY` - NON_INVENTORY - * * `SERVICE` - SERVICE - * * `UNKNOWN` - UNKNOWN - */ -export const Type2BbEnum = { - Inventory: "INVENTORY", - NonInventory: "NON_INVENTORY", - Service: "SERVICE", - Unknown: "UNKNOWN", -} as const; -export type Type2BbEnum = (typeof Type2BbEnum)[keyof typeof Type2BbEnum]; diff --git a/src/api/resources/accounting/types/UnderlyingTransactionTypeEnum.ts b/src/api/resources/accounting/types/UnderlyingTransactionTypeEnum.ts deleted file mode 100644 index aaf1395cd..000000000 --- a/src/api/resources/accounting/types/UnderlyingTransactionTypeEnum.ts +++ /dev/null @@ -1,22 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -/** - * * `INVOICE` - INVOICE - * * `EXPENSE` - EXPENSE - * * `TRANSACTION` - TRANSACTION - * * `JOURNAL_ENTRY` - JOURNAL_ENTRY - * * `PAYMENT` - PAYMENT - * * `VENDOR_CREDIT` - VENDOR_CREDIT - * * `CREDIT_NOTE` - CREDIT_NOTE - */ -export const UnderlyingTransactionTypeEnum = { - Invoice: "INVOICE", - Expense: "EXPENSE", - Transaction: "TRANSACTION", - JournalEntry: "JOURNAL_ENTRY", - Payment: "PAYMENT", - VendorCredit: "VENDOR_CREDIT", - CreditNote: "CREDIT_NOTE", -} as const; -export type UnderlyingTransactionTypeEnum = - (typeof UnderlyingTransactionTypeEnum)[keyof typeof UnderlyingTransactionTypeEnum]; diff --git a/src/api/resources/accounting/types/ValidationProblemSource.ts b/src/api/resources/accounting/types/ValidationProblemSource.ts deleted file mode 100644 index 853332073..000000000 --- a/src/api/resources/accounting/types/ValidationProblemSource.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export interface ValidationProblemSource { - pointer: string; -} diff --git a/src/api/resources/accounting/types/VendorCredit.ts b/src/api/resources/accounting/types/VendorCredit.ts deleted file mode 100644 index 7c26775cd..000000000 --- a/src/api/resources/accounting/types/VendorCredit.ts +++ /dev/null @@ -1,356 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The VendorCredit Object - * ### Description - * A `VendorCredit` is transaction issued by a vendor to the accounting company, indicating a reduction or cancellation of the amount owed to the vendor. It is most generally used as an adjustment note used to rectify errors, returns, or overpayments related to a purchasing transaction. A `VendorCredit` can be applied to `Accounts Payable` Invoices to decrease the overall amount of the `Invoice`. - * - * ### Usage Example - * Fetch from the `GET VendorCredit` endpoint and view a company's vendor credits. - */ -export interface VendorCredit { - id?: string; - /** The third-party API ID of the matching object. */ - remoteId?: string; - /** The datetime that this object was created by Merge. */ - createdAt?: Date; - /** The datetime that this object was modified by Merge. */ - modifiedAt?: Date; - /** The vendor credit's number. */ - number?: string; - /** The vendor credit's transaction date. */ - transactionDate?: Date; - /** The vendor that owes the gift or refund. */ - vendor?: Merge.accounting.VendorCreditVendor; - /** The vendor credit's total amount. */ - totalAmount?: number; - /** - * The vendor credit's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ - currency?: Merge.accounting.VendorCreditCurrency; - /** The vendor credit's exchange rate. */ - exchangeRate?: string; - /** If the transaction is inclusive or exclusive of tax. `True` if inclusive, `False` if exclusive. */ - inclusiveOfTax?: boolean; - /** The company the vendor credit belongs to. */ - company?: Merge.accounting.VendorCreditCompany; - lines?: Merge.accounting.VendorCreditLine[]; - trackingCategories?: (Merge.accounting.VendorCreditTrackingCategoriesItem | undefined)[]; - /** A list of VendorCredit Applied to Lines objects. */ - appliedToLines?: Merge.accounting.VendorCreditApplyLineForVendorCredit[]; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - remoteWasDeleted?: boolean; - /** The accounting period that the VendorCredit was generated in. */ - accountingPeriod?: Merge.accounting.VendorCreditAccountingPeriod; - fieldMappings?: Record; - remoteData?: Merge.accounting.RemoteData[]; -} diff --git a/src/api/resources/accounting/types/VendorCreditAccountingPeriod.ts b/src/api/resources/accounting/types/VendorCreditAccountingPeriod.ts deleted file mode 100644 index 7b070b170..000000000 --- a/src/api/resources/accounting/types/VendorCreditAccountingPeriod.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The accounting period that the VendorCredit was generated in. - */ -export type VendorCreditAccountingPeriod = string | Merge.accounting.AccountingPeriod; diff --git a/src/api/resources/accounting/types/VendorCreditApplyLineForInvoice.ts b/src/api/resources/accounting/types/VendorCreditApplyLineForInvoice.ts deleted file mode 100644 index d075dd601..000000000 --- a/src/api/resources/accounting/types/VendorCreditApplyLineForInvoice.ts +++ /dev/null @@ -1,27 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The VendorCreditApplyLine Object - * ### Description - * The `VendorCreditApplyLine` object is used to represent a applied vendor credit. - * - * ### Usage Example - * Fetch from the `GET VendorCredit` endpoint and view the vendor credit's applied to lines. - */ -export interface VendorCreditApplyLineForInvoice { - /** The third-party API ID of the matching object. */ - remoteId?: string; - /** The datetime that this object was created by Merge. */ - createdAt?: Date; - /** The datetime that this object was modified by Merge. */ - modifiedAt?: Date; - vendorCredit?: Merge.accounting.VendorCreditApplyLineForInvoiceVendorCredit; - /** Date that the vendor credit is applied to the invoice. */ - appliedDate?: Date; - /** The amount of the VendorCredit applied to the invoice. */ - appliedAmount?: string; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - remoteWasDeleted?: boolean; -} diff --git a/src/api/resources/accounting/types/VendorCreditApplyLineForInvoiceVendorCredit.ts b/src/api/resources/accounting/types/VendorCreditApplyLineForInvoiceVendorCredit.ts deleted file mode 100644 index f6d43dac9..000000000 --- a/src/api/resources/accounting/types/VendorCreditApplyLineForInvoiceVendorCredit.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type VendorCreditApplyLineForInvoiceVendorCredit = string | Merge.accounting.VendorCredit; diff --git a/src/api/resources/accounting/types/VendorCreditApplyLineForVendorCredit.ts b/src/api/resources/accounting/types/VendorCreditApplyLineForVendorCredit.ts deleted file mode 100644 index 21d6f0cd3..000000000 --- a/src/api/resources/accounting/types/VendorCreditApplyLineForVendorCredit.ts +++ /dev/null @@ -1,27 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The VendorCreditApplyLine Object - * ### Description - * The `VendorCreditApplyLine` object is used to represent a applied vendor credit. - * - * ### Usage Example - * Fetch from the `GET VendorCredit` endpoint and view the vendor credit's applied to lines. - */ -export interface VendorCreditApplyLineForVendorCredit { - /** The third-party API ID of the matching object. */ - remoteId?: string; - /** The datetime that this object was created by Merge. */ - createdAt?: Date; - /** The datetime that this object was modified by Merge. */ - modifiedAt?: Date; - invoice?: Merge.accounting.VendorCreditApplyLineForVendorCreditInvoice; - /** Date that the vendor credit is applied to the invoice. */ - appliedDate?: Date; - /** The amount of the VendorCredit applied to the invoice. */ - appliedAmount?: string; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - remoteWasDeleted?: boolean; -} diff --git a/src/api/resources/accounting/types/VendorCreditApplyLineForVendorCreditInvoice.ts b/src/api/resources/accounting/types/VendorCreditApplyLineForVendorCreditInvoice.ts deleted file mode 100644 index f9bec79ba..000000000 --- a/src/api/resources/accounting/types/VendorCreditApplyLineForVendorCreditInvoice.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type VendorCreditApplyLineForVendorCreditInvoice = string | Merge.accounting.Invoice; diff --git a/src/api/resources/accounting/types/VendorCreditApplyLineForVendorCreditRequest.ts b/src/api/resources/accounting/types/VendorCreditApplyLineForVendorCreditRequest.ts deleted file mode 100644 index 098fe941e..000000000 --- a/src/api/resources/accounting/types/VendorCreditApplyLineForVendorCreditRequest.ts +++ /dev/null @@ -1,23 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The VendorCreditApplyLine Object - * ### Description - * The `VendorCreditApplyLine` object is used to represent a applied vendor credit. - * - * ### Usage Example - * Fetch from the `GET VendorCredit` endpoint and view the vendor credit's applied to lines. - */ -export interface VendorCreditApplyLineForVendorCreditRequest { - /** The third-party API ID of the matching object. */ - remoteId?: string; - invoice?: Merge.accounting.VendorCreditApplyLineForVendorCreditRequestInvoice; - /** Date that the vendor credit is applied to the invoice. */ - appliedDate?: Date; - /** The amount of the VendorCredit applied to the invoice. */ - appliedAmount?: string; - integrationParams?: Record; - linkedAccountParams?: Record; -} diff --git a/src/api/resources/accounting/types/VendorCreditApplyLineForVendorCreditRequestInvoice.ts b/src/api/resources/accounting/types/VendorCreditApplyLineForVendorCreditRequestInvoice.ts deleted file mode 100644 index d5c423523..000000000 --- a/src/api/resources/accounting/types/VendorCreditApplyLineForVendorCreditRequestInvoice.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type VendorCreditApplyLineForVendorCreditRequestInvoice = string | Merge.accounting.Invoice; diff --git a/src/api/resources/accounting/types/VendorCreditCompany.ts b/src/api/resources/accounting/types/VendorCreditCompany.ts deleted file mode 100644 index e69ea8c2f..000000000 --- a/src/api/resources/accounting/types/VendorCreditCompany.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The company the vendor credit belongs to. - */ -export type VendorCreditCompany = string | Merge.accounting.CompanyInfo; diff --git a/src/api/resources/accounting/types/VendorCreditCurrency.ts b/src/api/resources/accounting/types/VendorCreditCurrency.ts deleted file mode 100644 index 1f8450a00..000000000 --- a/src/api/resources/accounting/types/VendorCreditCurrency.ts +++ /dev/null @@ -1,315 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The vendor credit's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ -export type VendorCreditCurrency = Merge.accounting.TransactionCurrencyEnum | string; diff --git a/src/api/resources/accounting/types/VendorCreditLine.ts b/src/api/resources/accounting/types/VendorCreditLine.ts deleted file mode 100644 index 6f2453966..000000000 --- a/src/api/resources/accounting/types/VendorCreditLine.ts +++ /dev/null @@ -1,41 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The VendorCreditLine Object - * ### Description - * The `VendorCreditLine` object is used to represent a vendor credit's line items. - * - * ### Usage Example - * Fetch from the `GET VendorCredit` endpoint and view the vendor credit's line items. - */ -export interface VendorCreditLine { - id?: string; - /** The third-party API ID of the matching object. */ - remoteId?: string; - /** The datetime that this object was created by Merge. */ - createdAt?: Date; - /** The datetime that this object was modified by Merge. */ - modifiedAt?: Date; - /** The full value of the credit. */ - netAmount?: number; - /** The line's associated tracking category. */ - trackingCategory?: string; - /** The vendor credit line item's associated tracking categories. */ - trackingCategories?: (string | undefined)[]; - /** The line's description. */ - description?: string; - /** The line's account. */ - account?: Merge.accounting.VendorCreditLineAccount; - /** The company the line belongs to. */ - company?: string; - project?: Merge.accounting.VendorCreditLineProject; - contact?: Merge.accounting.VendorCreditLineContact; - /** The tax rate that applies to this line item. */ - taxRate?: string; - /** The vendor credit line item's exchange rate. */ - exchangeRate?: string; - /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ - remoteWasDeleted?: boolean; -} diff --git a/src/api/resources/accounting/types/VendorCreditLineAccount.ts b/src/api/resources/accounting/types/VendorCreditLineAccount.ts deleted file mode 100644 index 361037939..000000000 --- a/src/api/resources/accounting/types/VendorCreditLineAccount.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The line's account. - */ -export type VendorCreditLineAccount = string | Merge.accounting.Account; diff --git a/src/api/resources/accounting/types/VendorCreditLineContact.ts b/src/api/resources/accounting/types/VendorCreditLineContact.ts deleted file mode 100644 index 2f17097b7..000000000 --- a/src/api/resources/accounting/types/VendorCreditLineContact.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type VendorCreditLineContact = string | Merge.accounting.Contact; diff --git a/src/api/resources/accounting/types/VendorCreditLineProject.ts b/src/api/resources/accounting/types/VendorCreditLineProject.ts deleted file mode 100644 index 416320890..000000000 --- a/src/api/resources/accounting/types/VendorCreditLineProject.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type VendorCreditLineProject = string | Merge.accounting.Project; diff --git a/src/api/resources/accounting/types/VendorCreditLineRequest.ts b/src/api/resources/accounting/types/VendorCreditLineRequest.ts deleted file mode 100644 index d10020ddf..000000000 --- a/src/api/resources/accounting/types/VendorCreditLineRequest.ts +++ /dev/null @@ -1,36 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The VendorCreditLine Object - * ### Description - * The `VendorCreditLine` object is used to represent a vendor credit's line items. - * - * ### Usage Example - * Fetch from the `GET VendorCredit` endpoint and view the vendor credit's line items. - */ -export interface VendorCreditLineRequest { - /** The third-party API ID of the matching object. */ - remoteId?: string; - /** The full value of the credit. */ - netAmount?: number; - /** The line's associated tracking category. */ - trackingCategory?: string; - /** The vendor credit line item's associated tracking categories. */ - trackingCategories?: (string | undefined)[]; - /** The line's description. */ - description?: string; - /** The line's account. */ - account?: Merge.accounting.VendorCreditLineRequestAccount; - /** The company the line belongs to. */ - company?: string; - project?: Merge.accounting.VendorCreditLineRequestProject; - contact?: Merge.accounting.VendorCreditLineRequestContact; - /** The tax rate that applies to this line item. */ - taxRate?: string; - /** The vendor credit line item's exchange rate. */ - exchangeRate?: string; - integrationParams?: Record; - linkedAccountParams?: Record; -} diff --git a/src/api/resources/accounting/types/VendorCreditLineRequestAccount.ts b/src/api/resources/accounting/types/VendorCreditLineRequestAccount.ts deleted file mode 100644 index 45736bf23..000000000 --- a/src/api/resources/accounting/types/VendorCreditLineRequestAccount.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The line's account. - */ -export type VendorCreditLineRequestAccount = string | Merge.accounting.Account; diff --git a/src/api/resources/accounting/types/VendorCreditLineRequestContact.ts b/src/api/resources/accounting/types/VendorCreditLineRequestContact.ts deleted file mode 100644 index 7bae178ca..000000000 --- a/src/api/resources/accounting/types/VendorCreditLineRequestContact.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type VendorCreditLineRequestContact = string | Merge.accounting.Contact; diff --git a/src/api/resources/accounting/types/VendorCreditLineRequestProject.ts b/src/api/resources/accounting/types/VendorCreditLineRequestProject.ts deleted file mode 100644 index 022818131..000000000 --- a/src/api/resources/accounting/types/VendorCreditLineRequestProject.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type VendorCreditLineRequestProject = string | Merge.accounting.Project; diff --git a/src/api/resources/accounting/types/VendorCreditRequest.ts b/src/api/resources/accounting/types/VendorCreditRequest.ts deleted file mode 100644 index 82157074c..000000000 --- a/src/api/resources/accounting/types/VendorCreditRequest.ts +++ /dev/null @@ -1,346 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * # The VendorCredit Object - * ### Description - * A `VendorCredit` is transaction issued by a vendor to the accounting company, indicating a reduction or cancellation of the amount owed to the vendor. It is most generally used as an adjustment note used to rectify errors, returns, or overpayments related to a purchasing transaction. A `VendorCredit` can be applied to `Accounts Payable` Invoices to decrease the overall amount of the `Invoice`. - * - * ### Usage Example - * Fetch from the `GET VendorCredit` endpoint and view a company's vendor credits. - */ -export interface VendorCreditRequest { - /** The vendor credit's number. */ - number?: string; - /** The vendor credit's transaction date. */ - transactionDate?: Date; - /** The vendor that owes the gift or refund. */ - vendor?: Merge.accounting.VendorCreditRequestVendor; - /** The vendor credit's total amount. */ - totalAmount?: number; - /** - * The vendor credit's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ - currency?: Merge.accounting.VendorCreditRequestCurrency; - /** The vendor credit's exchange rate. */ - exchangeRate?: string; - /** If the transaction is inclusive or exclusive of tax. `True` if inclusive, `False` if exclusive. */ - inclusiveOfTax?: boolean; - /** The company the vendor credit belongs to. */ - company?: Merge.accounting.VendorCreditRequestCompany; - trackingCategories?: (Merge.accounting.VendorCreditRequestTrackingCategoriesItem | undefined)[]; - /** A list of VendorCredit Applied to Lines objects. */ - appliedToLines?: Merge.accounting.VendorCreditApplyLineForVendorCreditRequest[]; - /** The accounting period that the VendorCredit was generated in. */ - accountingPeriod?: Merge.accounting.VendorCreditRequestAccountingPeriod; - integrationParams?: Record; - linkedAccountParams?: Record; -} diff --git a/src/api/resources/accounting/types/VendorCreditRequestAccountingPeriod.ts b/src/api/resources/accounting/types/VendorCreditRequestAccountingPeriod.ts deleted file mode 100644 index e9807ee7f..000000000 --- a/src/api/resources/accounting/types/VendorCreditRequestAccountingPeriod.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The accounting period that the VendorCredit was generated in. - */ -export type VendorCreditRequestAccountingPeriod = string | Merge.accounting.AccountingPeriod; diff --git a/src/api/resources/accounting/types/VendorCreditRequestCompany.ts b/src/api/resources/accounting/types/VendorCreditRequestCompany.ts deleted file mode 100644 index 7879f59e7..000000000 --- a/src/api/resources/accounting/types/VendorCreditRequestCompany.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The company the vendor credit belongs to. - */ -export type VendorCreditRequestCompany = string | Merge.accounting.CompanyInfo; diff --git a/src/api/resources/accounting/types/VendorCreditRequestCurrency.ts b/src/api/resources/accounting/types/VendorCreditRequestCurrency.ts deleted file mode 100644 index 036db4b66..000000000 --- a/src/api/resources/accounting/types/VendorCreditRequestCurrency.ts +++ /dev/null @@ -1,315 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The vendor credit's currency. - * - * * `XUA` - ADB Unit of Account - * * `AFN` - Afghan Afghani - * * `AFA` - Afghan Afghani (1927–2002) - * * `ALL` - Albanian Lek - * * `ALK` - Albanian Lek (1946–1965) - * * `DZD` - Algerian Dinar - * * `ADP` - Andorran Peseta - * * `AOA` - Angolan Kwanza - * * `AOK` - Angolan Kwanza (1977–1991) - * * `AON` - Angolan New Kwanza (1990–2000) - * * `AOR` - Angolan Readjusted Kwanza (1995–1999) - * * `ARA` - Argentine Austral - * * `ARS` - Argentine Peso - * * `ARM` - Argentine Peso (1881–1970) - * * `ARP` - Argentine Peso (1983–1985) - * * `ARL` - Argentine Peso Ley (1970–1983) - * * `AMD` - Armenian Dram - * * `AWG` - Aruban Florin - * * `AUD` - Australian Dollar - * * `ATS` - Austrian Schilling - * * `AZN` - Azerbaijani Manat - * * `AZM` - Azerbaijani Manat (1993–2006) - * * `BSD` - Bahamian Dollar - * * `BHD` - Bahraini Dinar - * * `BDT` - Bangladeshi Taka - * * `BBD` - Barbadian Dollar - * * `BYN` - Belarusian Ruble - * * `BYB` - Belarusian Ruble (1994–1999) - * * `BYR` - Belarusian Ruble (2000–2016) - * * `BEF` - Belgian Franc - * * `BEC` - Belgian Franc (convertible) - * * `BEL` - Belgian Franc (financial) - * * `BZD` - Belize Dollar - * * `BMD` - Bermudan Dollar - * * `BTN` - Bhutanese Ngultrum - * * `BOB` - Bolivian Boliviano - * * `BOL` - Bolivian Boliviano (1863–1963) - * * `BOV` - Bolivian Mvdol - * * `BOP` - Bolivian Peso - * * `BAM` - Bosnia-Herzegovina Convertible Mark - * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994) - * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997) - * * `BWP` - Botswanan Pula - * * `BRC` - Brazilian Cruzado (1986–1989) - * * `BRZ` - Brazilian Cruzeiro (1942–1967) - * * `BRE` - Brazilian Cruzeiro (1990–1993) - * * `BRR` - Brazilian Cruzeiro (1993–1994) - * * `BRN` - Brazilian New Cruzado (1989–1990) - * * `BRB` - Brazilian New Cruzeiro (1967–1986) - * * `BRL` - Brazilian Real - * * `GBP` - British Pound - * * `BND` - Brunei Dollar - * * `BGL` - Bulgarian Hard Lev - * * `BGN` - Bulgarian Lev - * * `BGO` - Bulgarian Lev (1879–1952) - * * `BGM` - Bulgarian Socialist Lev - * * `BUK` - Burmese Kyat - * * `BIF` - Burundian Franc - * * `XPF` - CFP Franc - * * `KHR` - Cambodian Riel - * * `CAD` - Canadian Dollar - * * `CVE` - Cape Verdean Escudo - * * `KYD` - Cayman Islands Dollar - * * `XAF` - Central African CFA Franc - * * `CLE` - Chilean Escudo - * * `CLP` - Chilean Peso - * * `CLF` - Chilean Unit of Account (UF) - * * `CNX` - Chinese People’s Bank Dollar - * * `CNY` - Chinese Yuan - * * `CNH` - Chinese Yuan (offshore) - * * `COP` - Colombian Peso - * * `COU` - Colombian Real Value Unit - * * `KMF` - Comorian Franc - * * `CDF` - Congolese Franc - * * `CRC` - Costa Rican Colón - * * `HRD` - Croatian Dinar - * * `HRK` - Croatian Kuna - * * `CUC` - Cuban Convertible Peso - * * `CUP` - Cuban Peso - * * `CYP` - Cypriot Pound - * * `CZK` - Czech Koruna - * * `CSK` - Czechoslovak Hard Koruna - * * `DKK` - Danish Krone - * * `DJF` - Djiboutian Franc - * * `DOP` - Dominican Peso - * * `NLG` - Dutch Guilder - * * `XCD` - East Caribbean Dollar - * * `DDM` - East German Mark - * * `ECS` - Ecuadorian Sucre - * * `ECV` - Ecuadorian Unit of Constant Value - * * `EGP` - Egyptian Pound - * * `GQE` - Equatorial Guinean Ekwele - * * `ERN` - Eritrean Nakfa - * * `EEK` - Estonian Kroon - * * `ETB` - Ethiopian Birr - * * `EUR` - Euro - * * `XBA` - European Composite Unit - * * `XEU` - European Currency Unit - * * `XBB` - European Monetary Unit - * * `XBC` - European Unit of Account (XBC) - * * `XBD` - European Unit of Account (XBD) - * * `FKP` - Falkland Islands Pound - * * `FJD` - Fijian Dollar - * * `FIM` - Finnish Markka - * * `FRF` - French Franc - * * `XFO` - French Gold Franc - * * `XFU` - French UIC-Franc - * * `GMD` - Gambian Dalasi - * * `GEK` - Georgian Kupon Larit - * * `GEL` - Georgian Lari - * * `DEM` - German Mark - * * `GHS` - Ghanaian Cedi - * * `GHC` - Ghanaian Cedi (1979–2007) - * * `GIP` - Gibraltar Pound - * * `XAU` - Gold - * * `GRD` - Greek Drachma - * * `GTQ` - Guatemalan Quetzal - * * `GWP` - Guinea-Bissau Peso - * * `GNF` - Guinean Franc - * * `GNS` - Guinean Syli - * * `GYD` - Guyanaese Dollar - * * `HTG` - Haitian Gourde - * * `HNL` - Honduran Lempira - * * `HKD` - Hong Kong Dollar - * * `HUF` - Hungarian Forint - * * `IMP` - IMP - * * `ISK` - Icelandic Króna - * * `ISJ` - Icelandic Króna (1918–1981) - * * `INR` - Indian Rupee - * * `IDR` - Indonesian Rupiah - * * `IRR` - Iranian Rial - * * `IQD` - Iraqi Dinar - * * `IEP` - Irish Pound - * * `ILS` - Israeli New Shekel - * * `ILP` - Israeli Pound - * * `ILR` - Israeli Shekel (1980–1985) - * * `ITL` - Italian Lira - * * `JMD` - Jamaican Dollar - * * `JPY` - Japanese Yen - * * `JOD` - Jordanian Dinar - * * `KZT` - Kazakhstani Tenge - * * `KES` - Kenyan Shilling - * * `KWD` - Kuwaiti Dinar - * * `KGS` - Kyrgystani Som - * * `LAK` - Laotian Kip - * * `LVL` - Latvian Lats - * * `LVR` - Latvian Ruble - * * `LBP` - Lebanese Pound - * * `LSL` - Lesotho Loti - * * `LRD` - Liberian Dollar - * * `LYD` - Libyan Dinar - * * `LTL` - Lithuanian Litas - * * `LTT` - Lithuanian Talonas - * * `LUL` - Luxembourg Financial Franc - * * `LUC` - Luxembourgian Convertible Franc - * * `LUF` - Luxembourgian Franc - * * `MOP` - Macanese Pataca - * * `MKD` - Macedonian Denar - * * `MKN` - Macedonian Denar (1992–1993) - * * `MGA` - Malagasy Ariary - * * `MGF` - Malagasy Franc - * * `MWK` - Malawian Kwacha - * * `MYR` - Malaysian Ringgit - * * `MVR` - Maldivian Rufiyaa - * * `MVP` - Maldivian Rupee (1947–1981) - * * `MLF` - Malian Franc - * * `MTL` - Maltese Lira - * * `MTP` - Maltese Pound - * * `MRU` - Mauritanian Ouguiya - * * `MRO` - Mauritanian Ouguiya (1973–2017) - * * `MUR` - Mauritian Rupee - * * `MXV` - Mexican Investment Unit - * * `MXN` - Mexican Peso - * * `MXP` - Mexican Silver Peso (1861–1992) - * * `MDC` - Moldovan Cupon - * * `MDL` - Moldovan Leu - * * `MCF` - Monegasque Franc - * * `MNT` - Mongolian Tugrik - * * `MAD` - Moroccan Dirham - * * `MAF` - Moroccan Franc - * * `MZE` - Mozambican Escudo - * * `MZN` - Mozambican Metical - * * `MZM` - Mozambican Metical (1980–2006) - * * `MMK` - Myanmar Kyat - * * `NAD` - Namibian Dollar - * * `NPR` - Nepalese Rupee - * * `ANG` - Netherlands Antillean Guilder - * * `TWD` - New Taiwan Dollar - * * `NZD` - New Zealand Dollar - * * `NIO` - Nicaraguan Córdoba - * * `NIC` - Nicaraguan Córdoba (1988–1991) - * * `NGN` - Nigerian Naira - * * `KPW` - North Korean Won - * * `NOK` - Norwegian Krone - * * `OMR` - Omani Rial - * * `PKR` - Pakistani Rupee - * * `XPD` - Palladium - * * `PAB` - Panamanian Balboa - * * `PGK` - Papua New Guinean Kina - * * `PYG` - Paraguayan Guarani - * * `PEI` - Peruvian Inti - * * `PEN` - Peruvian Sol - * * `PES` - Peruvian Sol (1863–1965) - * * `PHP` - Philippine Peso - * * `XPT` - Platinum - * * `PLN` - Polish Zloty - * * `PLZ` - Polish Zloty (1950–1995) - * * `PTE` - Portuguese Escudo - * * `GWE` - Portuguese Guinea Escudo - * * `QAR` - Qatari Rial - * * `XRE` - RINET Funds - * * `RHD` - Rhodesian Dollar - * * `RON` - Romanian Leu - * * `ROL` - Romanian Leu (1952–2006) - * * `RUB` - Russian Ruble - * * `RUR` - Russian Ruble (1991–1998) - * * `RWF` - Rwandan Franc - * * `SVC` - Salvadoran Colón - * * `WST` - Samoan Tala - * * `SAR` - Saudi Riyal - * * `RSD` - Serbian Dinar - * * `CSD` - Serbian Dinar (2002–2006) - * * `SCR` - Seychellois Rupee - * * `SLL` - Sierra Leonean Leone - * * `XAG` - Silver - * * `SGD` - Singapore Dollar - * * `SKK` - Slovak Koruna - * * `SIT` - Slovenian Tolar - * * `SBD` - Solomon Islands Dollar - * * `SOS` - Somali Shilling - * * `ZAR` - South African Rand - * * `ZAL` - South African Rand (financial) - * * `KRH` - South Korean Hwan (1953–1962) - * * `KRW` - South Korean Won - * * `KRO` - South Korean Won (1945–1953) - * * `SSP` - South Sudanese Pound - * * `SUR` - Soviet Rouble - * * `ESP` - Spanish Peseta - * * `ESA` - Spanish Peseta (A account) - * * `ESB` - Spanish Peseta (convertible account) - * * `XDR` - Special Drawing Rights - * * `LKR` - Sri Lankan Rupee - * * `SHP` - St. Helena Pound - * * `XSU` - Sucre - * * `SDD` - Sudanese Dinar (1992–2007) - * * `SDG` - Sudanese Pound - * * `SDP` - Sudanese Pound (1957–1998) - * * `SRD` - Surinamese Dollar - * * `SRG` - Surinamese Guilder - * * `SZL` - Swazi Lilangeni - * * `SEK` - Swedish Krona - * * `CHF` - Swiss Franc - * * `SYP` - Syrian Pound - * * `STN` - São Tomé & Príncipe Dobra - * * `STD` - São Tomé & Príncipe Dobra (1977–2017) - * * `TVD` - TVD - * * `TJR` - Tajikistani Ruble - * * `TJS` - Tajikistani Somoni - * * `TZS` - Tanzanian Shilling - * * `XTS` - Testing Currency Code - * * `THB` - Thai Baht - * * `XXX` - The codes assigned for transactions where no currency is involved - * * `TPE` - Timorese Escudo - * * `TOP` - Tongan Paʻanga - * * `TTD` - Trinidad & Tobago Dollar - * * `TND` - Tunisian Dinar - * * `TRY` - Turkish Lira - * * `TRL` - Turkish Lira (1922–2005) - * * `TMT` - Turkmenistani Manat - * * `TMM` - Turkmenistani Manat (1993–2009) - * * `USD` - US Dollar - * * `USN` - US Dollar (Next day) - * * `USS` - US Dollar (Same day) - * * `UGX` - Ugandan Shilling - * * `UGS` - Ugandan Shilling (1966–1987) - * * `UAH` - Ukrainian Hryvnia - * * `UAK` - Ukrainian Karbovanets - * * `AED` - United Arab Emirates Dirham - * * `UYW` - Uruguayan Nominal Wage Index Unit - * * `UYU` - Uruguayan Peso - * * `UYP` - Uruguayan Peso (1975–1993) - * * `UYI` - Uruguayan Peso (Indexed Units) - * * `UZS` - Uzbekistani Som - * * `VUV` - Vanuatu Vatu - * * `VES` - Venezuelan Bolívar - * * `VEB` - Venezuelan Bolívar (1871–2008) - * * `VEF` - Venezuelan Bolívar (2008–2018) - * * `VND` - Vietnamese Dong - * * `VNN` - Vietnamese Dong (1978–1985) - * * `CHE` - WIR Euro - * * `CHW` - WIR Franc - * * `XOF` - West African CFA Franc - * * `YDD` - Yemeni Dinar - * * `YER` - Yemeni Rial - * * `YUN` - Yugoslavian Convertible Dinar (1990–1992) - * * `YUD` - Yugoslavian Hard Dinar (1966–1990) - * * `YUM` - Yugoslavian New Dinar (1994–2002) - * * `YUR` - Yugoslavian Reformed Dinar (1992–1993) - * * `ZWN` - ZWN - * * `ZRN` - Zairean New Zaire (1993–1998) - * * `ZRZ` - Zairean Zaire (1971–1993) - * * `ZMW` - Zambian Kwacha - * * `ZMK` - Zambian Kwacha (1968–2012) - * * `ZWD` - Zimbabwean Dollar (1980–2008) - * * `ZWR` - Zimbabwean Dollar (2008) - * * `ZWL` - Zimbabwean Dollar (2009) - */ -export type VendorCreditRequestCurrency = Merge.accounting.TransactionCurrencyEnum | string; diff --git a/src/api/resources/accounting/types/VendorCreditRequestTrackingCategoriesItem.ts b/src/api/resources/accounting/types/VendorCreditRequestTrackingCategoriesItem.ts deleted file mode 100644 index 7ec321d81..000000000 --- a/src/api/resources/accounting/types/VendorCreditRequestTrackingCategoriesItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type VendorCreditRequestTrackingCategoriesItem = string | Merge.accounting.TrackingCategory; diff --git a/src/api/resources/accounting/types/VendorCreditRequestVendor.ts b/src/api/resources/accounting/types/VendorCreditRequestVendor.ts deleted file mode 100644 index 81316ad06..000000000 --- a/src/api/resources/accounting/types/VendorCreditRequestVendor.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The vendor that owes the gift or refund. - */ -export type VendorCreditRequestVendor = string | Merge.accounting.Contact; diff --git a/src/api/resources/accounting/types/VendorCreditResponse.ts b/src/api/resources/accounting/types/VendorCreditResponse.ts deleted file mode 100644 index 12d15c36c..000000000 --- a/src/api/resources/accounting/types/VendorCreditResponse.ts +++ /dev/null @@ -1,10 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface VendorCreditResponse { - model: Merge.accounting.VendorCredit; - warnings: Merge.accounting.WarningValidationProblem[]; - errors: Merge.accounting.ErrorValidationProblem[]; - logs?: Merge.accounting.DebugModeLog[]; -} diff --git a/src/api/resources/accounting/types/VendorCreditTrackingCategoriesItem.ts b/src/api/resources/accounting/types/VendorCreditTrackingCategoriesItem.ts deleted file mode 100644 index 275e7d778..000000000 --- a/src/api/resources/accounting/types/VendorCreditTrackingCategoriesItem.ts +++ /dev/null @@ -1,5 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export type VendorCreditTrackingCategoriesItem = string | Merge.accounting.TrackingCategory; diff --git a/src/api/resources/accounting/types/VendorCreditVendor.ts b/src/api/resources/accounting/types/VendorCreditVendor.ts deleted file mode 100644 index 13529b3c7..000000000 --- a/src/api/resources/accounting/types/VendorCreditVendor.ts +++ /dev/null @@ -1,8 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -/** - * The vendor that owes the gift or refund. - */ -export type VendorCreditVendor = string | Merge.accounting.Contact; diff --git a/src/api/resources/accounting/types/WarningValidationProblem.ts b/src/api/resources/accounting/types/WarningValidationProblem.ts deleted file mode 100644 index 54e2e5e63..000000000 --- a/src/api/resources/accounting/types/WarningValidationProblem.ts +++ /dev/null @@ -1,10 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../index"; - -export interface WarningValidationProblem { - source?: Merge.accounting.ValidationProblemSource; - title: string; - detail: string; - problemType: string; -} diff --git a/src/api/resources/accounting/types/WebhookReceiver.ts b/src/api/resources/accounting/types/WebhookReceiver.ts deleted file mode 100644 index f9c8ebc4b..000000000 --- a/src/api/resources/accounting/types/WebhookReceiver.ts +++ /dev/null @@ -1,7 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -export interface WebhookReceiver { - event: string; - isActive: boolean; - key?: string; -} diff --git a/src/api/resources/accounting/types/index.ts b/src/api/resources/accounting/types/index.ts deleted file mode 100644 index 22194d0a9..000000000 --- a/src/api/resources/accounting/types/index.ts +++ /dev/null @@ -1,515 +0,0 @@ -export * from "./Account"; -export * from "./AccountAccountType"; -export * from "./AccountAccountTypeEnum"; -export * from "./AccountClassification"; -export * from "./AccountCurrency"; -export * from "./AccountDetails"; -export * from "./AccountDetailsAndActions"; -export * from "./AccountDetailsAndActionsCategory"; -export * from "./AccountDetailsAndActionsIntegration"; -export * from "./AccountDetailsAndActionsStatus"; -export * from "./AccountDetailsAndActionsStatusEnum"; -export * from "./AccountDetailsCategory"; -export * from "./AccountIntegration"; -export * from "./AccountingAttachment"; -export * from "./AccountingAttachmentRequest"; -export * from "./AccountingAttachmentResponse"; -export * from "./AccountingPeriod"; -export * from "./AccountingPeriodStatus"; -export * from "./AccountingPhoneNumber"; -export * from "./AccountingPhoneNumberRequest"; -export * from "./AccountRequest"; -export * from "./AccountRequestAccountType"; -export * from "./AccountRequestClassification"; -export * from "./AccountRequestCurrency"; -export * from "./AccountRequestStatus"; -export * from "./AccountResponse"; -export * from "./AccountStatus"; -export * from "./AccountStatusEnum"; -export * from "./AccountToken"; -export * from "./Address"; -export * from "./AddressCountry"; -export * from "./AddressRequest"; -export * from "./AddressRequestCountry"; -export * from "./AddressRequestType"; -export * from "./AddressType"; -export * from "./AddressTypeEnum"; -export * from "./AdvancedMetadata"; -export * from "./AsyncPassthroughReciept"; -export * from "./AsyncPostTask"; -export * from "./AsyncPostTaskResult"; -export * from "./AsyncPostTaskStatus"; -export * from "./AsyncPostTaskStatusEnum"; -export * from "./AuditLogEvent"; -export * from "./AuditLogEventEventType"; -export * from "./AuditLogEventRole"; -export * from "./AvailableActions"; -export * from "./BalanceSheet"; -export * from "./BalanceSheetCompany"; -export * from "./BalanceSheetCurrency"; -export * from "./BankFeedAccount"; -export * from "./BankFeedAccountAccountType"; -export * from "./BankFeedAccountAccountTypeEnum"; -export * from "./BankFeedAccountCurrency"; -export * from "./BankFeedAccountFeedStatus"; -export * from "./BankFeedAccountRequest"; -export * from "./BankFeedAccountRequestAccountType"; -export * from "./BankFeedAccountRequestCurrency"; -export * from "./BankFeedAccountRequestFeedStatus"; -export * from "./BankFeedAccountResponse"; -export * from "./BankFeedTransaction"; -export * from "./BankFeedTransactionBankFeedAccount"; -export * from "./BankFeedTransactionCreditOrDebit"; -export * from "./BankFeedTransactionRequestRequest"; -export * from "./BankFeedTransactionRequestRequestBankFeedAccount"; -export * from "./BankFeedTransactionRequestRequestCreditOrDebit"; -export * from "./BankFeedTransactionResponse"; -export * from "./CashFlowStatement"; -export * from "./CashFlowStatementCompany"; -export * from "./CashFlowStatementCurrency"; -export * from "./CategoriesEnum"; -export * from "./CategoryEnum"; -export * from "./CategoryTypeEnum"; -export * from "./ClassificationEnum"; -export * from "./CommonModelScopeApi"; -export * from "./CommonModelScopesBodyRequest"; -export * from "./CompanyInfo"; -export * from "./CompanyInfoCurrency"; -export * from "./ComponentTypeEnum"; -export * from "./Contact"; -export * from "./ContactAddressesItem"; -export * from "./ContactRequest"; -export * from "./ContactRequestAddressesItem"; -export * from "./ContactRequestStatus"; -export * from "./ContactResponse"; -export * from "./ContactStatus"; -export * from "./CountryEnum"; -export * from "./CreditNote"; -export * from "./CreditNoteAccountingPeriod"; -export * from "./CreditNoteAppliedPaymentsItem"; -export * from "./CreditNoteApplyLineForCreditNote"; -export * from "./CreditNoteApplyLineForCreditNoteInvoice"; -export * from "./CreditNoteApplyLineForCreditNoteRequest"; -export * from "./CreditNoteApplyLineForCreditNoteRequestInvoice"; -export * from "./CreditNoteApplyLineForInvoice"; -export * from "./CreditNoteApplyLineForInvoiceCreditNote"; -export * from "./CreditNoteCompany"; -export * from "./CreditNoteContact"; -export * from "./CreditNoteCurrency"; -export * from "./CreditNoteLineItem"; -export * from "./CreditNoteLineItemCompany"; -export * from "./CreditNoteLineItemContact"; -export * from "./CreditNoteLineItemItem"; -export * from "./CreditNoteLineItemProject"; -export * from "./CreditNoteLineItemRequest"; -export * from "./CreditNoteLineItemRequestCompany"; -export * from "./CreditNoteLineItemRequestContact"; -export * from "./CreditNoteLineItemRequestItem"; -export * from "./CreditNoteLineItemRequestProject"; -export * from "./CreditNotePaymentsItem"; -export * from "./CreditNoteRequest"; -export * from "./CreditNoteRequestAccountingPeriod"; -export * from "./CreditNoteRequestAppliedPaymentsItem"; -export * from "./CreditNoteRequestCompany"; -export * from "./CreditNoteRequestContact"; -export * from "./CreditNoteRequestCurrency"; -export * from "./CreditNoteRequestLineItemsItem"; -export * from "./CreditNoteRequestPaymentsItem"; -export * from "./CreditNoteRequestStatus"; -export * from "./CreditNoteRequestTrackingCategoriesItem"; -export * from "./CreditNoteResponse"; -export * from "./CreditNoteStatus"; -export * from "./CreditNoteStatusEnum"; -export * from "./CreditNoteTrackingCategoriesItem"; -export * from "./CreditOrDebitEnum"; -export * from "./DataPassthroughRequest"; -export * from "./DataPassthroughRequestMethod"; -export * from "./DebugModeLog"; -export * from "./DebugModelLogSummary"; -export * from "./Employee"; -export * from "./EmployeeCompany"; -export * from "./EmployeeStatus"; -export * from "./EnabledActionsEnum"; -export * from "./EncodingEnum"; -export * from "./ErrorValidationProblem"; -export * from "./EventTypeEnum"; -export * from "./Expense"; -export * from "./ExpenseAccount"; -export * from "./ExpenseAccountingPeriod"; -export * from "./ExpenseCompany"; -export * from "./ExpenseContact"; -export * from "./ExpenseCurrency"; -export * from "./ExpenseEmployee"; -export * from "./ExpenseLine"; -export * from "./ExpenseLineAccount"; -export * from "./ExpenseLineContact"; -export * from "./ExpenseLineCurrency"; -export * from "./ExpenseLineEmployee"; -export * from "./ExpenseLineItem"; -export * from "./ExpenseLineProject"; -export * from "./ExpenseLineRequest"; -export * from "./ExpenseLineRequestAccount"; -export * from "./ExpenseLineRequestContact"; -export * from "./ExpenseLineRequestCurrency"; -export * from "./ExpenseLineRequestEmployee"; -export * from "./ExpenseLineRequestItem"; -export * from "./ExpenseLineRequestProject"; -export * from "./ExpenseLineRequestTrackingCategoriesItem"; -export * from "./ExpenseLineRequestTrackingCategory"; -export * from "./ExpenseLineTrackingCategoriesItem"; -export * from "./ExpenseLineTrackingCategory"; -export * from "./ExpenseReport"; -export * from "./ExpenseReportCompany"; -export * from "./ExpenseReportLine"; -export * from "./ExpenseReportLineAccount"; -export * from "./ExpenseReportLineCompany"; -export * from "./ExpenseReportLineContact"; -export * from "./ExpenseReportLineEmployee"; -export * from "./ExpenseReportLineProject"; -export * from "./ExpenseReportLineRequest"; -export * from "./ExpenseReportLineRequestAccount"; -export * from "./ExpenseReportLineRequestCompany"; -export * from "./ExpenseReportLineRequestContact"; -export * from "./ExpenseReportLineRequestEmployee"; -export * from "./ExpenseReportLineRequestProject"; -export * from "./ExpenseReportLineRequestTaxRate"; -export * from "./ExpenseReportLineTaxRate"; -export * from "./ExpenseReportRequest"; -export * from "./ExpenseReportRequestAccountingPeriod"; -export * from "./ExpenseReportRequestCompany"; -export * from "./ExpenseReportRequestEmployee"; -export * from "./ExpenseReportResponse"; -export * from "./ExpenseReportStatus"; -export * from "./ExpenseReportStatusEnum"; -export * from "./ExpenseRequest"; -export * from "./ExpenseRequestAccount"; -export * from "./ExpenseRequestAccountingPeriod"; -export * from "./ExpenseRequestCompany"; -export * from "./ExpenseRequestContact"; -export * from "./ExpenseRequestCurrency"; -export * from "./ExpenseRequestEmployee"; -export * from "./ExpenseRequestTrackingCategoriesItem"; -export * from "./ExpenseResponse"; -export * from "./ExpenseTrackingCategoriesItem"; -export * from "./ExternalTargetFieldApi"; -export * from "./ExternalTargetFieldApiResponse"; -export * from "./FeedStatusEnum"; -export * from "./FieldFormatEnum"; -export * from "./FieldMappingApiInstance"; -export * from "./FieldMappingApiInstanceRemoteField"; -export * from "./FieldMappingApiInstanceRemoteFieldRemoteEndpointInfo"; -export * from "./FieldMappingApiInstanceResponse"; -export * from "./FieldMappingApiInstanceTargetField"; -export * from "./FieldMappingInstanceResponse"; -export * from "./FieldPermissionDeserializer"; -export * from "./FieldPermissionDeserializerRequest"; -export * from "./FieldTypeEnum"; -export * from "./GeneralLedgerTransaction"; -export * from "./GeneralLedgerTransactionAccountingPeriod"; -export * from "./GeneralLedgerTransactionCompany"; -export * from "./GeneralLedgerTransactionGeneralLedgerTransactionLinesItem"; -export * from "./GeneralLedgerTransactionLine"; -export * from "./GeneralLedgerTransactionLineAccount"; -export * from "./GeneralLedgerTransactionLineBaseCurrency"; -export * from "./GeneralLedgerTransactionLineCompany"; -export * from "./GeneralLedgerTransactionLineContact"; -export * from "./GeneralLedgerTransactionLineEmployee"; -export * from "./GeneralLedgerTransactionLineItem"; -export * from "./GeneralLedgerTransactionLineProject"; -export * from "./GeneralLedgerTransactionLineTrackingCategoriesItem"; -export * from "./GeneralLedgerTransactionLineTransactionCurrency"; -export * from "./GeneralLedgerTransactionTrackingCategoriesItem"; -export * from "./GeneralLedgerTransactionUnderlyingTransactionType"; -export * from "./IncomeStatement"; -export * from "./IncomeStatementCompany"; -export * from "./IncomeStatementCurrency"; -export * from "./IndividualCommonModelScopeDeserializer"; -export * from "./IndividualCommonModelScopeDeserializerRequest"; -export * from "./Invoice"; -export * from "./InvoiceAccountingPeriod"; -export * from "./InvoiceAppliedCreditNotesItem"; -export * from "./InvoiceAppliedPaymentsItem"; -export * from "./InvoiceAppliedVendorCreditsItem"; -export * from "./InvoiceCompany"; -export * from "./InvoiceContact"; -export * from "./InvoiceCurrency"; -export * from "./InvoiceEmployee"; -export * from "./InvoiceLineItem"; -export * from "./InvoiceLineItemAccount"; -export * from "./InvoiceLineItemContact"; -export * from "./InvoiceLineItemCurrency"; -export * from "./InvoiceLineItemEmployee"; -export * from "./InvoiceLineItemItem"; -export * from "./InvoiceLineItemProject"; -export * from "./InvoiceLineItemRequest"; -export * from "./InvoiceLineItemRequestAccount"; -export * from "./InvoiceLineItemRequestContact"; -export * from "./InvoiceLineItemRequestCurrency"; -export * from "./InvoiceLineItemRequestEmployee"; -export * from "./InvoiceLineItemRequestItem"; -export * from "./InvoiceLineItemRequestProject"; -export * from "./InvoiceLineItemRequestTrackingCategoriesItem"; -export * from "./InvoiceLineItemRequestTrackingCategory"; -export * from "./InvoiceLineItemTrackingCategoriesItem"; -export * from "./InvoiceLineItemTrackingCategory"; -export * from "./InvoicePaymentsItem"; -export * from "./InvoicePaymentTerm"; -export * from "./InvoicePurchaseOrdersItem"; -export * from "./InvoiceRequest"; -export * from "./InvoiceRequestCompany"; -export * from "./InvoiceRequestContact"; -export * from "./InvoiceRequestCurrency"; -export * from "./InvoiceRequestEmployee"; -export * from "./InvoiceRequestPaymentsItem"; -export * from "./InvoiceRequestPaymentTerm"; -export * from "./InvoiceRequestPurchaseOrdersItem"; -export * from "./InvoiceRequestStatus"; -export * from "./InvoiceRequestTrackingCategoriesItem"; -export * from "./InvoiceRequestType"; -export * from "./InvoiceResponse"; -export * from "./InvoiceStatus"; -export * from "./InvoiceStatusEnum"; -export * from "./InvoiceTrackingCategoriesItem"; -export * from "./InvoiceType"; -export * from "./InvoiceTypeEnum"; -export * from "./Issue"; -export * from "./IssueStatus"; -export * from "./IssueStatusEnum"; -export * from "./Item"; -export * from "./ItemCompany"; -export * from "./ItemFormatEnum"; -export * from "./ItemPurchaseAccount"; -export * from "./ItemPurchaseTaxRate"; -export * from "./ItemRequestRequest"; -export * from "./ItemRequestRequestCompany"; -export * from "./ItemRequestRequestPurchaseAccount"; -export * from "./ItemRequestRequestPurchaseTaxRate"; -export * from "./ItemRequestRequestSalesAccount"; -export * from "./ItemRequestRequestSalesTaxRate"; -export * from "./ItemRequestRequestStatus"; -export * from "./ItemRequestRequestType"; -export * from "./ItemResponse"; -export * from "./ItemSalesAccount"; -export * from "./ItemSalesTaxRate"; -export * from "./ItemSchema"; -export * from "./ItemStatus"; -export * from "./ItemType"; -export * from "./ItemTypeEnum"; -export * from "./JournalEntry"; -export * from "./JournalEntryAccountingPeriod"; -export * from "./JournalEntryAppliedPaymentsItem"; -export * from "./JournalEntryCompany"; -export * from "./JournalEntryCurrency"; -export * from "./JournalEntryPaymentsItem"; -export * from "./JournalEntryPostingStatus"; -export * from "./JournalEntryRequest"; -export * from "./JournalEntryRequestCompany"; -export * from "./JournalEntryRequestCurrency"; -export * from "./JournalEntryRequestPaymentsItem"; -export * from "./JournalEntryRequestPostingStatus"; -export * from "./JournalEntryRequestTrackingCategoriesItem"; -export * from "./JournalEntryResponse"; -export * from "./JournalEntryTrackingCategoriesItem"; -export * from "./JournalLine"; -export * from "./JournalLineAccount"; -export * from "./JournalLineCurrency"; -export * from "./JournalLineProject"; -export * from "./JournalLineRequest"; -export * from "./JournalLineRequestAccount"; -export * from "./JournalLineRequestCurrency"; -export * from "./JournalLineRequestProject"; -export * from "./JournalLineRequestTrackingCategoriesItem"; -export * from "./JournalLineRequestTrackingCategory"; -export * from "./JournalLineTrackingCategoriesItem"; -export * from "./JournalLineTrackingCategory"; -export * from "./LanguageEnum"; -export * from "./LastSyncResultEnum"; -export * from "./LinkedAccountStatus"; -export * from "./LinkToken"; -export * from "./MetaResponse"; -export * from "./MethodEnum"; -export * from "./MethodTypeEnum"; -export * from "./ModelOperation"; -export * from "./ModelPermissionDeserializer"; -export * from "./ModelPermissionDeserializerRequest"; -export * from "./MultipartFormFieldRequest"; -export * from "./MultipartFormFieldRequestEncoding"; -export * from "./PaginatedAccountDetailsAndActionsList"; -export * from "./PaginatedAccountingAttachmentList"; -export * from "./PaginatedAccountingPeriodList"; -export * from "./PaginatedAccountList"; -export * from "./PaginatedAuditLogEventList"; -export * from "./PaginatedBalanceSheetList"; -export * from "./PaginatedBankFeedAccountList"; -export * from "./PaginatedBankFeedTransactionList"; -export * from "./PaginatedCashFlowStatementList"; -export * from "./PaginatedCompanyInfoList"; -export * from "./PaginatedContactList"; -export * from "./PaginatedCreditNoteList"; -export * from "./PaginatedEmployeeList"; -export * from "./PaginatedExpenseList"; -export * from "./PaginatedExpenseReportLineList"; -export * from "./PaginatedExpenseReportList"; -export * from "./PaginatedGeneralLedgerTransactionList"; -export * from "./PaginatedIncomeStatementList"; -export * from "./PaginatedInvoiceList"; -export * from "./PaginatedIssueList"; -export * from "./PaginatedItemList"; -export * from "./PaginatedJournalEntryList"; -export * from "./PaginatedPaymentList"; -export * from "./PaginatedPaymentMethodList"; -export * from "./PaginatedPaymentTermList"; -export * from "./PaginatedProjectList"; -export * from "./PaginatedPurchaseOrderList"; -export * from "./PaginatedRemoteFieldClassList"; -export * from "./PaginatedSyncStatusList"; -export * from "./PaginatedTaxRateList"; -export * from "./PaginatedTrackingCategoryList"; -export * from "./PaginatedTransactionList"; -export * from "./PaginatedVendorCreditList"; -export * from "./PatchedContactRequest"; -export * from "./PatchedContactRequestAddressesItem"; -export * from "./PatchedItemRequestRequest"; -export * from "./PatchedItemRequestRequestStatus"; -export * from "./PatchedItemRequestRequestType"; -export * from "./PatchedPaymentRequest"; -export * from "./PatchedPaymentRequestAccount"; -export * from "./PatchedPaymentRequestAccountingPeriod"; -export * from "./PatchedPaymentRequestAppliedToLinesItem"; -export * from "./PatchedPaymentRequestCompany"; -export * from "./PatchedPaymentRequestContact"; -export * from "./PatchedPaymentRequestCurrency"; -export * from "./PatchedPaymentRequestPaymentMethod"; -export * from "./PatchedPaymentRequestTrackingCategoriesItem"; -export * from "./PatchedPaymentRequestType"; -export * from "./Payment"; -export * from "./PaymentAccount"; -export * from "./PaymentAccountingPeriod"; -export * from "./PaymentAppliedToLinesItem"; -export * from "./PaymentCompany"; -export * from "./PaymentContact"; -export * from "./PaymentCurrency"; -export * from "./PaymentLineItem"; -export * from "./PaymentLineItemRequest"; -export * from "./PaymentMethod"; -export * from "./PaymentMethodMethodType"; -export * from "./PaymentPaymentMethod"; -export * from "./PaymentRequest"; -export * from "./PaymentRequestAccount"; -export * from "./PaymentRequestAccountingPeriod"; -export * from "./PaymentRequestAppliedToLinesItem"; -export * from "./PaymentRequestCompany"; -export * from "./PaymentRequestContact"; -export * from "./PaymentRequestCurrency"; -export * from "./PaymentRequestPaymentMethod"; -export * from "./PaymentRequestTrackingCategoriesItem"; -export * from "./PaymentRequestType"; -export * from "./PaymentResponse"; -export * from "./PaymentTerm"; -export * from "./PaymentTermCompany"; -export * from "./PaymentTrackingCategoriesItem"; -export * from "./PaymentType"; -export * from "./PaymentTypeEnum"; -export * from "./PostingStatusEnum"; -export * from "./Project"; -export * from "./ProjectCompany"; -export * from "./ProjectContact"; -export * from "./PurchaseOrder"; -export * from "./PurchaseOrderAccountingPeriod"; -export * from "./PurchaseOrderCompany"; -export * from "./PurchaseOrderCurrency"; -export * from "./PurchaseOrderDeliveryAddress"; -export * from "./PurchaseOrderLineItem"; -export * from "./PurchaseOrderLineItemCurrency"; -export * from "./PurchaseOrderLineItemItem"; -export * from "./PurchaseOrderLineItemRequest"; -export * from "./PurchaseOrderLineItemRequestCurrency"; -export * from "./PurchaseOrderLineItemRequestItem"; -export * from "./PurchaseOrderPaymentTerm"; -export * from "./PurchaseOrderRequest"; -export * from "./PurchaseOrderRequestCompany"; -export * from "./PurchaseOrderRequestCurrency"; -export * from "./PurchaseOrderRequestDeliveryAddress"; -export * from "./PurchaseOrderRequestPaymentTerm"; -export * from "./PurchaseOrderRequestStatus"; -export * from "./PurchaseOrderRequestTrackingCategoriesItem"; -export * from "./PurchaseOrderRequestVendor"; -export * from "./PurchaseOrderResponse"; -export * from "./PurchaseOrderStatus"; -export * from "./PurchaseOrderStatusEnum"; -export * from "./PurchaseOrderTrackingCategoriesItem"; -export * from "./PurchaseOrderVendor"; -export * from "./RemoteData"; -export * from "./RemoteEndpointInfo"; -export * from "./RemoteField"; -export * from "./RemoteFieldApi"; -export * from "./RemoteFieldApiCoverage"; -export * from "./RemoteFieldApiResponse"; -export * from "./RemoteFieldClass"; -export * from "./RemoteFieldRemoteFieldClass"; -export * from "./RemoteFieldRequest"; -export * from "./RemoteFieldRequestRemoteFieldClass"; -export * from "./RemoteKey"; -export * from "./RemoteResponse"; -export * from "./ReportItem"; -export * from "./RequestFormatEnum"; -export * from "./ResponseTypeEnum"; -export * from "./RoleEnum"; -export * from "./SelectiveSyncConfigurationsUsageEnum"; -export * from "./Status7D1Enum"; -export * from "./Status895Enum"; -export * from "./StatusFd5Enum"; -export * from "./SyncStatus"; -export * from "./SyncStatusStatus"; -export * from "./TaxComponent"; -export * from "./TaxComponentComponentType"; -export * from "./TaxRate"; -export * from "./TaxRateCompany"; -export * from "./TaxRateStatus"; -export * from "./TaxRateTaxComponentsItem"; -export * from "./TrackingCategory"; -export * from "./TrackingCategoryCategoryType"; -export * from "./TrackingCategoryCompany"; -export * from "./TrackingCategoryStatus"; -export * from "./Transaction"; -export * from "./TransactionAccount"; -export * from "./TransactionAccountingPeriod"; -export * from "./TransactionContact"; -export * from "./TransactionCurrency"; -export * from "./TransactionCurrencyEnum"; -export * from "./TransactionLineItem"; -export * from "./TransactionLineItemCurrency"; -export * from "./TransactionLineItemItem"; -export * from "./TransactionTrackingCategoriesItem"; -export * from "./Type2BbEnum"; -export * from "./UnderlyingTransactionTypeEnum"; -export * from "./ValidationProblemSource"; -export * from "./VendorCredit"; -export * from "./VendorCreditAccountingPeriod"; -export * from "./VendorCreditApplyLineForInvoice"; -export * from "./VendorCreditApplyLineForInvoiceVendorCredit"; -export * from "./VendorCreditApplyLineForVendorCredit"; -export * from "./VendorCreditApplyLineForVendorCreditInvoice"; -export * from "./VendorCreditApplyLineForVendorCreditRequest"; -export * from "./VendorCreditApplyLineForVendorCreditRequestInvoice"; -export * from "./VendorCreditCompany"; -export * from "./VendorCreditCurrency"; -export * from "./VendorCreditLine"; -export * from "./VendorCreditLineAccount"; -export * from "./VendorCreditLineContact"; -export * from "./VendorCreditLineProject"; -export * from "./VendorCreditLineRequest"; -export * from "./VendorCreditLineRequestAccount"; -export * from "./VendorCreditLineRequestContact"; -export * from "./VendorCreditLineRequestProject"; -export * from "./VendorCreditRequest"; -export * from "./VendorCreditRequestAccountingPeriod"; -export * from "./VendorCreditRequestCompany"; -export * from "./VendorCreditRequestCurrency"; -export * from "./VendorCreditRequestTrackingCategoriesItem"; -export * from "./VendorCreditRequestVendor"; -export * from "./VendorCreditResponse"; -export * from "./VendorCreditTrackingCategoriesItem"; -export * from "./VendorCreditVendor"; -export * from "./WarningValidationProblem"; -export * from "./WebhookReceiver"; diff --git a/src/serialization/resources/accounting/index.ts b/src/serialization/resources/accounting/index.ts deleted file mode 100644 index 3e15e2907..000000000 --- a/src/serialization/resources/accounting/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./resources"; -export * from "./types"; diff --git a/src/serialization/resources/accounting/resources/accounts/client/index.ts b/src/serialization/resources/accounting/resources/accounts/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/serialization/resources/accounting/resources/accounts/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/serialization/resources/accounting/resources/accounts/client/requests/AccountEndpointRequest.ts b/src/serialization/resources/accounting/resources/accounts/client/requests/AccountEndpointRequest.ts deleted file mode 100644 index c933d7956..000000000 --- a/src/serialization/resources/accounting/resources/accounts/client/requests/AccountEndpointRequest.ts +++ /dev/null @@ -1,19 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../../api/index"; -import * as core from "../../../../../../../core"; -import type * as serializers from "../../../../../../index"; -import { AccountRequest } from "../../../../types/AccountRequest"; - -export const AccountEndpointRequest: core.serialization.Schema< - serializers.accounting.AccountEndpointRequest.Raw, - Omit -> = core.serialization.object({ - model: AccountRequest, -}); - -export declare namespace AccountEndpointRequest { - export interface Raw { - model: AccountRequest.Raw; - } -} diff --git a/src/serialization/resources/accounting/resources/accounts/client/requests/index.ts b/src/serialization/resources/accounting/resources/accounts/client/requests/index.ts deleted file mode 100644 index 9d9d5d6fe..000000000 --- a/src/serialization/resources/accounting/resources/accounts/client/requests/index.ts +++ /dev/null @@ -1 +0,0 @@ -export { AccountEndpointRequest } from "./AccountEndpointRequest"; diff --git a/src/serialization/resources/accounting/resources/accounts/index.ts b/src/serialization/resources/accounting/resources/accounts/index.ts deleted file mode 100644 index d2ec2302c..000000000 --- a/src/serialization/resources/accounting/resources/accounts/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./client"; -export * from "./types"; diff --git a/src/serialization/resources/accounting/resources/accounts/types/AccountsListRequestClassification.ts b/src/serialization/resources/accounting/resources/accounts/types/AccountsListRequestClassification.ts deleted file mode 100644 index ffe9cdc68..000000000 --- a/src/serialization/resources/accounting/resources/accounts/types/AccountsListRequestClassification.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; - -export const AccountsListRequestClassification: core.serialization.Schema< - serializers.accounting.AccountsListRequestClassification.Raw, - Merge.accounting.AccountsListRequestClassification -> = core.serialization.enum_(["", "ASSET", "EQUITY", "EXPENSE", "LIABILITY", "REVENUE"]); - -export declare namespace AccountsListRequestClassification { - export type Raw = "" | "ASSET" | "EQUITY" | "EXPENSE" | "LIABILITY" | "REVENUE"; -} diff --git a/src/serialization/resources/accounting/resources/accounts/types/AccountsListRequestRemoteFields.ts b/src/serialization/resources/accounting/resources/accounts/types/AccountsListRequestRemoteFields.ts deleted file mode 100644 index fbe8812f1..000000000 --- a/src/serialization/resources/accounting/resources/accounts/types/AccountsListRequestRemoteFields.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; - -export const AccountsListRequestRemoteFields: core.serialization.Schema< - serializers.accounting.AccountsListRequestRemoteFields.Raw, - Merge.accounting.AccountsListRequestRemoteFields -> = core.serialization.enum_(["classification", "classification,status", "status"]); - -export declare namespace AccountsListRequestRemoteFields { - export type Raw = "classification" | "classification,status" | "status"; -} diff --git a/src/serialization/resources/accounting/resources/accounts/types/AccountsListRequestShowEnumOrigins.ts b/src/serialization/resources/accounting/resources/accounts/types/AccountsListRequestShowEnumOrigins.ts deleted file mode 100644 index aa682048c..000000000 --- a/src/serialization/resources/accounting/resources/accounts/types/AccountsListRequestShowEnumOrigins.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; - -export const AccountsListRequestShowEnumOrigins: core.serialization.Schema< - serializers.accounting.AccountsListRequestShowEnumOrigins.Raw, - Merge.accounting.AccountsListRequestShowEnumOrigins -> = core.serialization.enum_(["classification", "classification,status", "status"]); - -export declare namespace AccountsListRequestShowEnumOrigins { - export type Raw = "classification" | "classification,status" | "status"; -} diff --git a/src/serialization/resources/accounting/resources/accounts/types/AccountsListRequestStatus.ts b/src/serialization/resources/accounting/resources/accounts/types/AccountsListRequestStatus.ts deleted file mode 100644 index 52dc676e0..000000000 --- a/src/serialization/resources/accounting/resources/accounts/types/AccountsListRequestStatus.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; - -export const AccountsListRequestStatus: core.serialization.Schema< - serializers.accounting.AccountsListRequestStatus.Raw, - Merge.accounting.AccountsListRequestStatus -> = core.serialization.enum_(["", "ACTIVE", "INACTIVE", "PENDING"]); - -export declare namespace AccountsListRequestStatus { - export type Raw = "" | "ACTIVE" | "INACTIVE" | "PENDING"; -} diff --git a/src/serialization/resources/accounting/resources/accounts/types/AccountsRetrieveRequestRemoteFields.ts b/src/serialization/resources/accounting/resources/accounts/types/AccountsRetrieveRequestRemoteFields.ts deleted file mode 100644 index 45a2ae072..000000000 --- a/src/serialization/resources/accounting/resources/accounts/types/AccountsRetrieveRequestRemoteFields.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; - -export const AccountsRetrieveRequestRemoteFields: core.serialization.Schema< - serializers.accounting.AccountsRetrieveRequestRemoteFields.Raw, - Merge.accounting.AccountsRetrieveRequestRemoteFields -> = core.serialization.enum_(["classification", "classification,status", "status"]); - -export declare namespace AccountsRetrieveRequestRemoteFields { - export type Raw = "classification" | "classification,status" | "status"; -} diff --git a/src/serialization/resources/accounting/resources/accounts/types/AccountsRetrieveRequestShowEnumOrigins.ts b/src/serialization/resources/accounting/resources/accounts/types/AccountsRetrieveRequestShowEnumOrigins.ts deleted file mode 100644 index 5b672a687..000000000 --- a/src/serialization/resources/accounting/resources/accounts/types/AccountsRetrieveRequestShowEnumOrigins.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; - -export const AccountsRetrieveRequestShowEnumOrigins: core.serialization.Schema< - serializers.accounting.AccountsRetrieveRequestShowEnumOrigins.Raw, - Merge.accounting.AccountsRetrieveRequestShowEnumOrigins -> = core.serialization.enum_(["classification", "classification,status", "status"]); - -export declare namespace AccountsRetrieveRequestShowEnumOrigins { - export type Raw = "classification" | "classification,status" | "status"; -} diff --git a/src/serialization/resources/accounting/resources/accounts/types/index.ts b/src/serialization/resources/accounting/resources/accounts/types/index.ts deleted file mode 100644 index 6e355c26c..000000000 --- a/src/serialization/resources/accounting/resources/accounts/types/index.ts +++ /dev/null @@ -1,6 +0,0 @@ -export * from "./AccountsListRequestClassification"; -export * from "./AccountsListRequestRemoteFields"; -export * from "./AccountsListRequestShowEnumOrigins"; -export * from "./AccountsListRequestStatus"; -export * from "./AccountsRetrieveRequestRemoteFields"; -export * from "./AccountsRetrieveRequestShowEnumOrigins"; diff --git a/src/serialization/resources/accounting/resources/asyncPassthrough/index.ts b/src/serialization/resources/accounting/resources/asyncPassthrough/index.ts deleted file mode 100644 index eea524d65..000000000 --- a/src/serialization/resources/accounting/resources/asyncPassthrough/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./types"; diff --git a/src/serialization/resources/accounting/resources/asyncPassthrough/types/AsyncPassthroughRetrieveResponse.ts b/src/serialization/resources/accounting/resources/asyncPassthrough/types/AsyncPassthroughRetrieveResponse.ts deleted file mode 100644 index 270d9010f..000000000 --- a/src/serialization/resources/accounting/resources/asyncPassthrough/types/AsyncPassthroughRetrieveResponse.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; -import { RemoteResponse } from "../../../types/RemoteResponse"; - -export const AsyncPassthroughRetrieveResponse: core.serialization.Schema< - serializers.accounting.AsyncPassthroughRetrieveResponse.Raw, - Merge.accounting.AsyncPassthroughRetrieveResponse -> = core.serialization.undiscriminatedUnion([RemoteResponse, core.serialization.string()]); - -export declare namespace AsyncPassthroughRetrieveResponse { - export type Raw = RemoteResponse.Raw | string; -} diff --git a/src/serialization/resources/accounting/resources/asyncPassthrough/types/index.ts b/src/serialization/resources/accounting/resources/asyncPassthrough/types/index.ts deleted file mode 100644 index f2b2d0e21..000000000 --- a/src/serialization/resources/accounting/resources/asyncPassthrough/types/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./AsyncPassthroughRetrieveResponse"; diff --git a/src/serialization/resources/accounting/resources/attachments/client/index.ts b/src/serialization/resources/accounting/resources/attachments/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/serialization/resources/accounting/resources/attachments/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/serialization/resources/accounting/resources/attachments/client/requests/AccountingAttachmentEndpointRequest.ts b/src/serialization/resources/accounting/resources/attachments/client/requests/AccountingAttachmentEndpointRequest.ts deleted file mode 100644 index 3aa8b9ab1..000000000 --- a/src/serialization/resources/accounting/resources/attachments/client/requests/AccountingAttachmentEndpointRequest.ts +++ /dev/null @@ -1,19 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../../api/index"; -import * as core from "../../../../../../../core"; -import type * as serializers from "../../../../../../index"; -import { AccountingAttachmentRequest } from "../../../../types/AccountingAttachmentRequest"; - -export const AccountingAttachmentEndpointRequest: core.serialization.Schema< - serializers.accounting.AccountingAttachmentEndpointRequest.Raw, - Omit -> = core.serialization.object({ - model: AccountingAttachmentRequest, -}); - -export declare namespace AccountingAttachmentEndpointRequest { - export interface Raw { - model: AccountingAttachmentRequest.Raw; - } -} diff --git a/src/serialization/resources/accounting/resources/attachments/client/requests/index.ts b/src/serialization/resources/accounting/resources/attachments/client/requests/index.ts deleted file mode 100644 index 6400efcff..000000000 --- a/src/serialization/resources/accounting/resources/attachments/client/requests/index.ts +++ /dev/null @@ -1 +0,0 @@ -export { AccountingAttachmentEndpointRequest } from "./AccountingAttachmentEndpointRequest"; diff --git a/src/serialization/resources/accounting/resources/attachments/index.ts b/src/serialization/resources/accounting/resources/attachments/index.ts deleted file mode 100644 index 5ec76921e..000000000 --- a/src/serialization/resources/accounting/resources/attachments/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./client"; diff --git a/src/serialization/resources/accounting/resources/bankFeedAccounts/client/index.ts b/src/serialization/resources/accounting/resources/bankFeedAccounts/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/serialization/resources/accounting/resources/bankFeedAccounts/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/serialization/resources/accounting/resources/bankFeedAccounts/client/requests/BankFeedAccountEndpointRequest.ts b/src/serialization/resources/accounting/resources/bankFeedAccounts/client/requests/BankFeedAccountEndpointRequest.ts deleted file mode 100644 index 67a0e1bd4..000000000 --- a/src/serialization/resources/accounting/resources/bankFeedAccounts/client/requests/BankFeedAccountEndpointRequest.ts +++ /dev/null @@ -1,19 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../../api/index"; -import * as core from "../../../../../../../core"; -import type * as serializers from "../../../../../../index"; -import { BankFeedAccountRequest } from "../../../../types/BankFeedAccountRequest"; - -export const BankFeedAccountEndpointRequest: core.serialization.Schema< - serializers.accounting.BankFeedAccountEndpointRequest.Raw, - Omit -> = core.serialization.object({ - model: BankFeedAccountRequest, -}); - -export declare namespace BankFeedAccountEndpointRequest { - export interface Raw { - model: BankFeedAccountRequest.Raw; - } -} diff --git a/src/serialization/resources/accounting/resources/bankFeedAccounts/client/requests/index.ts b/src/serialization/resources/accounting/resources/bankFeedAccounts/client/requests/index.ts deleted file mode 100644 index 72d1a9b7f..000000000 --- a/src/serialization/resources/accounting/resources/bankFeedAccounts/client/requests/index.ts +++ /dev/null @@ -1 +0,0 @@ -export { BankFeedAccountEndpointRequest } from "./BankFeedAccountEndpointRequest"; diff --git a/src/serialization/resources/accounting/resources/bankFeedAccounts/index.ts b/src/serialization/resources/accounting/resources/bankFeedAccounts/index.ts deleted file mode 100644 index 5ec76921e..000000000 --- a/src/serialization/resources/accounting/resources/bankFeedAccounts/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./client"; diff --git a/src/serialization/resources/accounting/resources/bankFeedTransactions/client/index.ts b/src/serialization/resources/accounting/resources/bankFeedTransactions/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/serialization/resources/accounting/resources/bankFeedTransactions/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/serialization/resources/accounting/resources/bankFeedTransactions/client/requests/BankFeedTransactionEndpointRequest.ts b/src/serialization/resources/accounting/resources/bankFeedTransactions/client/requests/BankFeedTransactionEndpointRequest.ts deleted file mode 100644 index 320796165..000000000 --- a/src/serialization/resources/accounting/resources/bankFeedTransactions/client/requests/BankFeedTransactionEndpointRequest.ts +++ /dev/null @@ -1,19 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../../api/index"; -import * as core from "../../../../../../../core"; -import type * as serializers from "../../../../../../index"; -import { BankFeedTransactionRequestRequest } from "../../../../types/BankFeedTransactionRequestRequest"; - -export const BankFeedTransactionEndpointRequest: core.serialization.Schema< - serializers.accounting.BankFeedTransactionEndpointRequest.Raw, - Omit -> = core.serialization.object({ - model: BankFeedTransactionRequestRequest, -}); - -export declare namespace BankFeedTransactionEndpointRequest { - export interface Raw { - model: BankFeedTransactionRequestRequest.Raw; - } -} diff --git a/src/serialization/resources/accounting/resources/bankFeedTransactions/client/requests/index.ts b/src/serialization/resources/accounting/resources/bankFeedTransactions/client/requests/index.ts deleted file mode 100644 index 8e407151a..000000000 --- a/src/serialization/resources/accounting/resources/bankFeedTransactions/client/requests/index.ts +++ /dev/null @@ -1 +0,0 @@ -export { BankFeedTransactionEndpointRequest } from "./BankFeedTransactionEndpointRequest"; diff --git a/src/serialization/resources/accounting/resources/bankFeedTransactions/index.ts b/src/serialization/resources/accounting/resources/bankFeedTransactions/index.ts deleted file mode 100644 index 5ec76921e..000000000 --- a/src/serialization/resources/accounting/resources/bankFeedTransactions/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./client"; diff --git a/src/serialization/resources/accounting/resources/companyInfo/index.ts b/src/serialization/resources/accounting/resources/companyInfo/index.ts deleted file mode 100644 index eea524d65..000000000 --- a/src/serialization/resources/accounting/resources/companyInfo/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./types"; diff --git a/src/serialization/resources/accounting/resources/companyInfo/types/CompanyInfoListRequestExpand.ts b/src/serialization/resources/accounting/resources/companyInfo/types/CompanyInfoListRequestExpand.ts deleted file mode 100644 index 9ec1d1cc3..000000000 --- a/src/serialization/resources/accounting/resources/companyInfo/types/CompanyInfoListRequestExpand.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; - -export const CompanyInfoListRequestExpand: core.serialization.Schema< - serializers.accounting.CompanyInfoListRequestExpand.Raw, - Merge.accounting.CompanyInfoListRequestExpand -> = core.serialization.enum_(["addresses", "addresses,phone_numbers", "phone_numbers"]); - -export declare namespace CompanyInfoListRequestExpand { - export type Raw = "addresses" | "addresses,phone_numbers" | "phone_numbers"; -} diff --git a/src/serialization/resources/accounting/resources/companyInfo/types/CompanyInfoRetrieveRequestExpand.ts b/src/serialization/resources/accounting/resources/companyInfo/types/CompanyInfoRetrieveRequestExpand.ts deleted file mode 100644 index fd6d46784..000000000 --- a/src/serialization/resources/accounting/resources/companyInfo/types/CompanyInfoRetrieveRequestExpand.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; - -export const CompanyInfoRetrieveRequestExpand: core.serialization.Schema< - serializers.accounting.CompanyInfoRetrieveRequestExpand.Raw, - Merge.accounting.CompanyInfoRetrieveRequestExpand -> = core.serialization.enum_(["addresses", "addresses,phone_numbers", "phone_numbers"]); - -export declare namespace CompanyInfoRetrieveRequestExpand { - export type Raw = "addresses" | "addresses,phone_numbers" | "phone_numbers"; -} diff --git a/src/serialization/resources/accounting/resources/companyInfo/types/index.ts b/src/serialization/resources/accounting/resources/companyInfo/types/index.ts deleted file mode 100644 index 8f0d30c91..000000000 --- a/src/serialization/resources/accounting/resources/companyInfo/types/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./CompanyInfoListRequestExpand"; -export * from "./CompanyInfoRetrieveRequestExpand"; diff --git a/src/serialization/resources/accounting/resources/contacts/client/index.ts b/src/serialization/resources/accounting/resources/contacts/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/serialization/resources/accounting/resources/contacts/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/serialization/resources/accounting/resources/contacts/client/requests/ContactEndpointRequest.ts b/src/serialization/resources/accounting/resources/contacts/client/requests/ContactEndpointRequest.ts deleted file mode 100644 index 76684b634..000000000 --- a/src/serialization/resources/accounting/resources/contacts/client/requests/ContactEndpointRequest.ts +++ /dev/null @@ -1,19 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../../api/index"; -import * as core from "../../../../../../../core"; -import type * as serializers from "../../../../../../index"; -import { ContactRequest } from "../../../../types/ContactRequest"; - -export const ContactEndpointRequest: core.serialization.Schema< - serializers.accounting.ContactEndpointRequest.Raw, - Omit -> = core.serialization.object({ - model: ContactRequest, -}); - -export declare namespace ContactEndpointRequest { - export interface Raw { - model: ContactRequest.Raw; - } -} diff --git a/src/serialization/resources/accounting/resources/contacts/client/requests/PatchedContactEndpointRequest.ts b/src/serialization/resources/accounting/resources/contacts/client/requests/PatchedContactEndpointRequest.ts deleted file mode 100644 index 9d7a75576..000000000 --- a/src/serialization/resources/accounting/resources/contacts/client/requests/PatchedContactEndpointRequest.ts +++ /dev/null @@ -1,19 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../../api/index"; -import * as core from "../../../../../../../core"; -import type * as serializers from "../../../../../../index"; -import { PatchedContactRequest } from "../../../../types/PatchedContactRequest"; - -export const PatchedContactEndpointRequest: core.serialization.Schema< - serializers.accounting.PatchedContactEndpointRequest.Raw, - Omit -> = core.serialization.object({ - model: PatchedContactRequest, -}); - -export declare namespace PatchedContactEndpointRequest { - export interface Raw { - model: PatchedContactRequest.Raw; - } -} diff --git a/src/serialization/resources/accounting/resources/contacts/client/requests/index.ts b/src/serialization/resources/accounting/resources/contacts/client/requests/index.ts deleted file mode 100644 index b5ae8a3b4..000000000 --- a/src/serialization/resources/accounting/resources/contacts/client/requests/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export { ContactEndpointRequest } from "./ContactEndpointRequest"; -export { PatchedContactEndpointRequest } from "./PatchedContactEndpointRequest"; diff --git a/src/serialization/resources/accounting/resources/contacts/index.ts b/src/serialization/resources/accounting/resources/contacts/index.ts deleted file mode 100644 index d2ec2302c..000000000 --- a/src/serialization/resources/accounting/resources/contacts/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./client"; -export * from "./types"; diff --git a/src/serialization/resources/accounting/resources/contacts/types/ContactsListRequestExpand.ts b/src/serialization/resources/accounting/resources/contacts/types/ContactsListRequestExpand.ts deleted file mode 100644 index 9bbc3d291..000000000 --- a/src/serialization/resources/accounting/resources/contacts/types/ContactsListRequestExpand.ts +++ /dev/null @@ -1,29 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; - -export const ContactsListRequestExpand: core.serialization.Schema< - serializers.accounting.ContactsListRequestExpand.Raw, - Merge.accounting.ContactsListRequestExpand -> = core.serialization.enum_([ - "addresses", - "addresses,company", - "addresses,phone_numbers", - "addresses,phone_numbers,company", - "company", - "phone_numbers", - "phone_numbers,company", -]); - -export declare namespace ContactsListRequestExpand { - export type Raw = - | "addresses" - | "addresses,company" - | "addresses,phone_numbers" - | "addresses,phone_numbers,company" - | "company" - | "phone_numbers" - | "phone_numbers,company"; -} diff --git a/src/serialization/resources/accounting/resources/contacts/types/ContactsListRequestStatus.ts b/src/serialization/resources/accounting/resources/contacts/types/ContactsListRequestStatus.ts deleted file mode 100644 index 4dd7297f7..000000000 --- a/src/serialization/resources/accounting/resources/contacts/types/ContactsListRequestStatus.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; - -export const ContactsListRequestStatus: core.serialization.Schema< - serializers.accounting.ContactsListRequestStatus.Raw, - Merge.accounting.ContactsListRequestStatus -> = core.serialization.enum_(["", "ACTIVE", "ARCHIVED"]); - -export declare namespace ContactsListRequestStatus { - export type Raw = "" | "ACTIVE" | "ARCHIVED"; -} diff --git a/src/serialization/resources/accounting/resources/contacts/types/ContactsRetrieveRequestExpand.ts b/src/serialization/resources/accounting/resources/contacts/types/ContactsRetrieveRequestExpand.ts deleted file mode 100644 index 5414c43f0..000000000 --- a/src/serialization/resources/accounting/resources/contacts/types/ContactsRetrieveRequestExpand.ts +++ /dev/null @@ -1,29 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; - -export const ContactsRetrieveRequestExpand: core.serialization.Schema< - serializers.accounting.ContactsRetrieveRequestExpand.Raw, - Merge.accounting.ContactsRetrieveRequestExpand -> = core.serialization.enum_([ - "addresses", - "addresses,company", - "addresses,phone_numbers", - "addresses,phone_numbers,company", - "company", - "phone_numbers", - "phone_numbers,company", -]); - -export declare namespace ContactsRetrieveRequestExpand { - export type Raw = - | "addresses" - | "addresses,company" - | "addresses,phone_numbers" - | "addresses,phone_numbers,company" - | "company" - | "phone_numbers" - | "phone_numbers,company"; -} diff --git a/src/serialization/resources/accounting/resources/contacts/types/index.ts b/src/serialization/resources/accounting/resources/contacts/types/index.ts deleted file mode 100644 index 97a5d68db..000000000 --- a/src/serialization/resources/accounting/resources/contacts/types/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -export * from "./ContactsListRequestExpand"; -export * from "./ContactsListRequestStatus"; -export * from "./ContactsRetrieveRequestExpand"; diff --git a/src/serialization/resources/accounting/resources/creditNotes/client/index.ts b/src/serialization/resources/accounting/resources/creditNotes/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/serialization/resources/accounting/resources/creditNotes/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/serialization/resources/accounting/resources/creditNotes/client/requests/CreditNoteEndpointRequest.ts b/src/serialization/resources/accounting/resources/creditNotes/client/requests/CreditNoteEndpointRequest.ts deleted file mode 100644 index f46d90f49..000000000 --- a/src/serialization/resources/accounting/resources/creditNotes/client/requests/CreditNoteEndpointRequest.ts +++ /dev/null @@ -1,19 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../../api/index"; -import * as core from "../../../../../../../core"; -import type * as serializers from "../../../../../../index"; -import { CreditNoteRequest } from "../../../../types/CreditNoteRequest"; - -export const CreditNoteEndpointRequest: core.serialization.Schema< - serializers.accounting.CreditNoteEndpointRequest.Raw, - Omit -> = core.serialization.object({ - model: CreditNoteRequest, -}); - -export declare namespace CreditNoteEndpointRequest { - export interface Raw { - model: CreditNoteRequest.Raw; - } -} diff --git a/src/serialization/resources/accounting/resources/creditNotes/client/requests/index.ts b/src/serialization/resources/accounting/resources/creditNotes/client/requests/index.ts deleted file mode 100644 index fa5837d6a..000000000 --- a/src/serialization/resources/accounting/resources/creditNotes/client/requests/index.ts +++ /dev/null @@ -1 +0,0 @@ -export { CreditNoteEndpointRequest } from "./CreditNoteEndpointRequest"; diff --git a/src/serialization/resources/accounting/resources/creditNotes/index.ts b/src/serialization/resources/accounting/resources/creditNotes/index.ts deleted file mode 100644 index d2ec2302c..000000000 --- a/src/serialization/resources/accounting/resources/creditNotes/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./client"; -export * from "./types"; diff --git a/src/serialization/resources/accounting/resources/creditNotes/types/CreditNotesListRequestExpand.ts b/src/serialization/resources/accounting/resources/creditNotes/types/CreditNotesListRequestExpand.ts deleted file mode 100644 index 5b8302ddd..000000000 --- a/src/serialization/resources/accounting/resources/creditNotes/types/CreditNotesListRequestExpand.ts +++ /dev/null @@ -1,269 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; - -export const CreditNotesListRequestExpand: core.serialization.Schema< - serializers.accounting.CreditNotesListRequestExpand.Raw, - Merge.accounting.CreditNotesListRequestExpand -> = core.serialization.enum_([ - "accounting_period", - "applied_payments", - "applied_payments,accounting_period", - "applied_payments,company", - "applied_payments,company,accounting_period", - "applied_payments,contact", - "applied_payments,contact,accounting_period", - "applied_payments,contact,company", - "applied_payments,contact,company,accounting_period", - "applied_payments,line_items", - "applied_payments,line_items,accounting_period", - "applied_payments,line_items,company", - "applied_payments,line_items,company,accounting_period", - "applied_payments,line_items,contact", - "applied_payments,line_items,contact,accounting_period", - "applied_payments,line_items,contact,company", - "applied_payments,line_items,contact,company,accounting_period", - "applied_payments,line_items,tracking_categories", - "applied_payments,line_items,tracking_categories,accounting_period", - "applied_payments,line_items,tracking_categories,company", - "applied_payments,line_items,tracking_categories,company,accounting_period", - "applied_payments,line_items,tracking_categories,contact", - "applied_payments,line_items,tracking_categories,contact,accounting_period", - "applied_payments,line_items,tracking_categories,contact,company", - "applied_payments,line_items,tracking_categories,contact,company,accounting_period", - "applied_payments,tracking_categories", - "applied_payments,tracking_categories,accounting_period", - "applied_payments,tracking_categories,company", - "applied_payments,tracking_categories,company,accounting_period", - "applied_payments,tracking_categories,contact", - "applied_payments,tracking_categories,contact,accounting_period", - "applied_payments,tracking_categories,contact,company", - "applied_payments,tracking_categories,contact,company,accounting_period", - "company", - "company,accounting_period", - "contact", - "contact,accounting_period", - "contact,company", - "contact,company,accounting_period", - "line_items", - "line_items,accounting_period", - "line_items,company", - "line_items,company,accounting_period", - "line_items,contact", - "line_items,contact,accounting_period", - "line_items,contact,company", - "line_items,contact,company,accounting_period", - "line_items,tracking_categories", - "line_items,tracking_categories,accounting_period", - "line_items,tracking_categories,company", - "line_items,tracking_categories,company,accounting_period", - "line_items,tracking_categories,contact", - "line_items,tracking_categories,contact,accounting_period", - "line_items,tracking_categories,contact,company", - "line_items,tracking_categories,contact,company,accounting_period", - "payments", - "payments,accounting_period", - "payments,applied_payments", - "payments,applied_payments,accounting_period", - "payments,applied_payments,company", - "payments,applied_payments,company,accounting_period", - "payments,applied_payments,contact", - "payments,applied_payments,contact,accounting_period", - "payments,applied_payments,contact,company", - "payments,applied_payments,contact,company,accounting_period", - "payments,applied_payments,line_items", - "payments,applied_payments,line_items,accounting_period", - "payments,applied_payments,line_items,company", - "payments,applied_payments,line_items,company,accounting_period", - "payments,applied_payments,line_items,contact", - "payments,applied_payments,line_items,contact,accounting_period", - "payments,applied_payments,line_items,contact,company", - "payments,applied_payments,line_items,contact,company,accounting_period", - "payments,applied_payments,line_items,tracking_categories", - "payments,applied_payments,line_items,tracking_categories,accounting_period", - "payments,applied_payments,line_items,tracking_categories,company", - "payments,applied_payments,line_items,tracking_categories,company,accounting_period", - "payments,applied_payments,line_items,tracking_categories,contact", - "payments,applied_payments,line_items,tracking_categories,contact,accounting_period", - "payments,applied_payments,line_items,tracking_categories,contact,company", - "payments,applied_payments,line_items,tracking_categories,contact,company,accounting_period", - "payments,applied_payments,tracking_categories", - "payments,applied_payments,tracking_categories,accounting_period", - "payments,applied_payments,tracking_categories,company", - "payments,applied_payments,tracking_categories,company,accounting_period", - "payments,applied_payments,tracking_categories,contact", - "payments,applied_payments,tracking_categories,contact,accounting_period", - "payments,applied_payments,tracking_categories,contact,company", - "payments,applied_payments,tracking_categories,contact,company,accounting_period", - "payments,company", - "payments,company,accounting_period", - "payments,contact", - "payments,contact,accounting_period", - "payments,contact,company", - "payments,contact,company,accounting_period", - "payments,line_items", - "payments,line_items,accounting_period", - "payments,line_items,company", - "payments,line_items,company,accounting_period", - "payments,line_items,contact", - "payments,line_items,contact,accounting_period", - "payments,line_items,contact,company", - "payments,line_items,contact,company,accounting_period", - "payments,line_items,tracking_categories", - "payments,line_items,tracking_categories,accounting_period", - "payments,line_items,tracking_categories,company", - "payments,line_items,tracking_categories,company,accounting_period", - "payments,line_items,tracking_categories,contact", - "payments,line_items,tracking_categories,contact,accounting_period", - "payments,line_items,tracking_categories,contact,company", - "payments,line_items,tracking_categories,contact,company,accounting_period", - "payments,tracking_categories", - "payments,tracking_categories,accounting_period", - "payments,tracking_categories,company", - "payments,tracking_categories,company,accounting_period", - "payments,tracking_categories,contact", - "payments,tracking_categories,contact,accounting_period", - "payments,tracking_categories,contact,company", - "payments,tracking_categories,contact,company,accounting_period", - "tracking_categories", - "tracking_categories,accounting_period", - "tracking_categories,company", - "tracking_categories,company,accounting_period", - "tracking_categories,contact", - "tracking_categories,contact,accounting_period", - "tracking_categories,contact,company", - "tracking_categories,contact,company,accounting_period", -]); - -export declare namespace CreditNotesListRequestExpand { - export type Raw = - | "accounting_period" - | "applied_payments" - | "applied_payments,accounting_period" - | "applied_payments,company" - | "applied_payments,company,accounting_period" - | "applied_payments,contact" - | "applied_payments,contact,accounting_period" - | "applied_payments,contact,company" - | "applied_payments,contact,company,accounting_period" - | "applied_payments,line_items" - | "applied_payments,line_items,accounting_period" - | "applied_payments,line_items,company" - | "applied_payments,line_items,company,accounting_period" - | "applied_payments,line_items,contact" - | "applied_payments,line_items,contact,accounting_period" - | "applied_payments,line_items,contact,company" - | "applied_payments,line_items,contact,company,accounting_period" - | "applied_payments,line_items,tracking_categories" - | "applied_payments,line_items,tracking_categories,accounting_period" - | "applied_payments,line_items,tracking_categories,company" - | "applied_payments,line_items,tracking_categories,company,accounting_period" - | "applied_payments,line_items,tracking_categories,contact" - | "applied_payments,line_items,tracking_categories,contact,accounting_period" - | "applied_payments,line_items,tracking_categories,contact,company" - | "applied_payments,line_items,tracking_categories,contact,company,accounting_period" - | "applied_payments,tracking_categories" - | "applied_payments,tracking_categories,accounting_period" - | "applied_payments,tracking_categories,company" - | "applied_payments,tracking_categories,company,accounting_period" - | "applied_payments,tracking_categories,contact" - | "applied_payments,tracking_categories,contact,accounting_period" - | "applied_payments,tracking_categories,contact,company" - | "applied_payments,tracking_categories,contact,company,accounting_period" - | "company" - | "company,accounting_period" - | "contact" - | "contact,accounting_period" - | "contact,company" - | "contact,company,accounting_period" - | "line_items" - | "line_items,accounting_period" - | "line_items,company" - | "line_items,company,accounting_period" - | "line_items,contact" - | "line_items,contact,accounting_period" - | "line_items,contact,company" - | "line_items,contact,company,accounting_period" - | "line_items,tracking_categories" - | "line_items,tracking_categories,accounting_period" - | "line_items,tracking_categories,company" - | "line_items,tracking_categories,company,accounting_period" - | "line_items,tracking_categories,contact" - | "line_items,tracking_categories,contact,accounting_period" - | "line_items,tracking_categories,contact,company" - | "line_items,tracking_categories,contact,company,accounting_period" - | "payments" - | "payments,accounting_period" - | "payments,applied_payments" - | "payments,applied_payments,accounting_period" - | "payments,applied_payments,company" - | "payments,applied_payments,company,accounting_period" - | "payments,applied_payments,contact" - | "payments,applied_payments,contact,accounting_period" - | "payments,applied_payments,contact,company" - | "payments,applied_payments,contact,company,accounting_period" - | "payments,applied_payments,line_items" - | "payments,applied_payments,line_items,accounting_period" - | "payments,applied_payments,line_items,company" - | "payments,applied_payments,line_items,company,accounting_period" - | "payments,applied_payments,line_items,contact" - | "payments,applied_payments,line_items,contact,accounting_period" - | "payments,applied_payments,line_items,contact,company" - | "payments,applied_payments,line_items,contact,company,accounting_period" - | "payments,applied_payments,line_items,tracking_categories" - | "payments,applied_payments,line_items,tracking_categories,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,company" - | "payments,applied_payments,line_items,tracking_categories,company,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,contact" - | "payments,applied_payments,line_items,tracking_categories,contact,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,contact,company" - | "payments,applied_payments,line_items,tracking_categories,contact,company,accounting_period" - | "payments,applied_payments,tracking_categories" - | "payments,applied_payments,tracking_categories,accounting_period" - | "payments,applied_payments,tracking_categories,company" - | "payments,applied_payments,tracking_categories,company,accounting_period" - | "payments,applied_payments,tracking_categories,contact" - | "payments,applied_payments,tracking_categories,contact,accounting_period" - | "payments,applied_payments,tracking_categories,contact,company" - | "payments,applied_payments,tracking_categories,contact,company,accounting_period" - | "payments,company" - | "payments,company,accounting_period" - | "payments,contact" - | "payments,contact,accounting_period" - | "payments,contact,company" - | "payments,contact,company,accounting_period" - | "payments,line_items" - | "payments,line_items,accounting_period" - | "payments,line_items,company" - | "payments,line_items,company,accounting_period" - | "payments,line_items,contact" - | "payments,line_items,contact,accounting_period" - | "payments,line_items,contact,company" - | "payments,line_items,contact,company,accounting_period" - | "payments,line_items,tracking_categories" - | "payments,line_items,tracking_categories,accounting_period" - | "payments,line_items,tracking_categories,company" - | "payments,line_items,tracking_categories,company,accounting_period" - | "payments,line_items,tracking_categories,contact" - | "payments,line_items,tracking_categories,contact,accounting_period" - | "payments,line_items,tracking_categories,contact,company" - | "payments,line_items,tracking_categories,contact,company,accounting_period" - | "payments,tracking_categories" - | "payments,tracking_categories,accounting_period" - | "payments,tracking_categories,company" - | "payments,tracking_categories,company,accounting_period" - | "payments,tracking_categories,contact" - | "payments,tracking_categories,contact,accounting_period" - | "payments,tracking_categories,contact,company" - | "payments,tracking_categories,contact,company,accounting_period" - | "tracking_categories" - | "tracking_categories,accounting_period" - | "tracking_categories,company" - | "tracking_categories,company,accounting_period" - | "tracking_categories,contact" - | "tracking_categories,contact,accounting_period" - | "tracking_categories,contact,company" - | "tracking_categories,contact,company,accounting_period"; -} diff --git a/src/serialization/resources/accounting/resources/creditNotes/types/CreditNotesListRequestRemoteFields.ts b/src/serialization/resources/accounting/resources/creditNotes/types/CreditNotesListRequestRemoteFields.ts deleted file mode 100644 index d02a8b761..000000000 --- a/src/serialization/resources/accounting/resources/creditNotes/types/CreditNotesListRequestRemoteFields.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; - -export const CreditNotesListRequestRemoteFields: core.serialization.Schema< - serializers.accounting.CreditNotesListRequestRemoteFields.Raw, - Merge.accounting.CreditNotesListRequestRemoteFields -> = core.serialization.enum_(["status", "status,type", "type"]); - -export declare namespace CreditNotesListRequestRemoteFields { - export type Raw = "status" | "status,type" | "type"; -} diff --git a/src/serialization/resources/accounting/resources/creditNotes/types/CreditNotesListRequestShowEnumOrigins.ts b/src/serialization/resources/accounting/resources/creditNotes/types/CreditNotesListRequestShowEnumOrigins.ts deleted file mode 100644 index bedef0c22..000000000 --- a/src/serialization/resources/accounting/resources/creditNotes/types/CreditNotesListRequestShowEnumOrigins.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; - -export const CreditNotesListRequestShowEnumOrigins: core.serialization.Schema< - serializers.accounting.CreditNotesListRequestShowEnumOrigins.Raw, - Merge.accounting.CreditNotesListRequestShowEnumOrigins -> = core.serialization.enum_(["status", "status,type", "type"]); - -export declare namespace CreditNotesListRequestShowEnumOrigins { - export type Raw = "status" | "status,type" | "type"; -} diff --git a/src/serialization/resources/accounting/resources/creditNotes/types/CreditNotesRetrieveRequestExpand.ts b/src/serialization/resources/accounting/resources/creditNotes/types/CreditNotesRetrieveRequestExpand.ts deleted file mode 100644 index 3b8343821..000000000 --- a/src/serialization/resources/accounting/resources/creditNotes/types/CreditNotesRetrieveRequestExpand.ts +++ /dev/null @@ -1,269 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; - -export const CreditNotesRetrieveRequestExpand: core.serialization.Schema< - serializers.accounting.CreditNotesRetrieveRequestExpand.Raw, - Merge.accounting.CreditNotesRetrieveRequestExpand -> = core.serialization.enum_([ - "accounting_period", - "applied_payments", - "applied_payments,accounting_period", - "applied_payments,company", - "applied_payments,company,accounting_period", - "applied_payments,contact", - "applied_payments,contact,accounting_period", - "applied_payments,contact,company", - "applied_payments,contact,company,accounting_period", - "applied_payments,line_items", - "applied_payments,line_items,accounting_period", - "applied_payments,line_items,company", - "applied_payments,line_items,company,accounting_period", - "applied_payments,line_items,contact", - "applied_payments,line_items,contact,accounting_period", - "applied_payments,line_items,contact,company", - "applied_payments,line_items,contact,company,accounting_period", - "applied_payments,line_items,tracking_categories", - "applied_payments,line_items,tracking_categories,accounting_period", - "applied_payments,line_items,tracking_categories,company", - "applied_payments,line_items,tracking_categories,company,accounting_period", - "applied_payments,line_items,tracking_categories,contact", - "applied_payments,line_items,tracking_categories,contact,accounting_period", - "applied_payments,line_items,tracking_categories,contact,company", - "applied_payments,line_items,tracking_categories,contact,company,accounting_period", - "applied_payments,tracking_categories", - "applied_payments,tracking_categories,accounting_period", - "applied_payments,tracking_categories,company", - "applied_payments,tracking_categories,company,accounting_period", - "applied_payments,tracking_categories,contact", - "applied_payments,tracking_categories,contact,accounting_period", - "applied_payments,tracking_categories,contact,company", - "applied_payments,tracking_categories,contact,company,accounting_period", - "company", - "company,accounting_period", - "contact", - "contact,accounting_period", - "contact,company", - "contact,company,accounting_period", - "line_items", - "line_items,accounting_period", - "line_items,company", - "line_items,company,accounting_period", - "line_items,contact", - "line_items,contact,accounting_period", - "line_items,contact,company", - "line_items,contact,company,accounting_period", - "line_items,tracking_categories", - "line_items,tracking_categories,accounting_period", - "line_items,tracking_categories,company", - "line_items,tracking_categories,company,accounting_period", - "line_items,tracking_categories,contact", - "line_items,tracking_categories,contact,accounting_period", - "line_items,tracking_categories,contact,company", - "line_items,tracking_categories,contact,company,accounting_period", - "payments", - "payments,accounting_period", - "payments,applied_payments", - "payments,applied_payments,accounting_period", - "payments,applied_payments,company", - "payments,applied_payments,company,accounting_period", - "payments,applied_payments,contact", - "payments,applied_payments,contact,accounting_period", - "payments,applied_payments,contact,company", - "payments,applied_payments,contact,company,accounting_period", - "payments,applied_payments,line_items", - "payments,applied_payments,line_items,accounting_period", - "payments,applied_payments,line_items,company", - "payments,applied_payments,line_items,company,accounting_period", - "payments,applied_payments,line_items,contact", - "payments,applied_payments,line_items,contact,accounting_period", - "payments,applied_payments,line_items,contact,company", - "payments,applied_payments,line_items,contact,company,accounting_period", - "payments,applied_payments,line_items,tracking_categories", - "payments,applied_payments,line_items,tracking_categories,accounting_period", - "payments,applied_payments,line_items,tracking_categories,company", - "payments,applied_payments,line_items,tracking_categories,company,accounting_period", - "payments,applied_payments,line_items,tracking_categories,contact", - "payments,applied_payments,line_items,tracking_categories,contact,accounting_period", - "payments,applied_payments,line_items,tracking_categories,contact,company", - "payments,applied_payments,line_items,tracking_categories,contact,company,accounting_period", - "payments,applied_payments,tracking_categories", - "payments,applied_payments,tracking_categories,accounting_period", - "payments,applied_payments,tracking_categories,company", - "payments,applied_payments,tracking_categories,company,accounting_period", - "payments,applied_payments,tracking_categories,contact", - "payments,applied_payments,tracking_categories,contact,accounting_period", - "payments,applied_payments,tracking_categories,contact,company", - "payments,applied_payments,tracking_categories,contact,company,accounting_period", - "payments,company", - "payments,company,accounting_period", - "payments,contact", - "payments,contact,accounting_period", - "payments,contact,company", - "payments,contact,company,accounting_period", - "payments,line_items", - "payments,line_items,accounting_period", - "payments,line_items,company", - "payments,line_items,company,accounting_period", - "payments,line_items,contact", - "payments,line_items,contact,accounting_period", - "payments,line_items,contact,company", - "payments,line_items,contact,company,accounting_period", - "payments,line_items,tracking_categories", - "payments,line_items,tracking_categories,accounting_period", - "payments,line_items,tracking_categories,company", - "payments,line_items,tracking_categories,company,accounting_period", - "payments,line_items,tracking_categories,contact", - "payments,line_items,tracking_categories,contact,accounting_period", - "payments,line_items,tracking_categories,contact,company", - "payments,line_items,tracking_categories,contact,company,accounting_period", - "payments,tracking_categories", - "payments,tracking_categories,accounting_period", - "payments,tracking_categories,company", - "payments,tracking_categories,company,accounting_period", - "payments,tracking_categories,contact", - "payments,tracking_categories,contact,accounting_period", - "payments,tracking_categories,contact,company", - "payments,tracking_categories,contact,company,accounting_period", - "tracking_categories", - "tracking_categories,accounting_period", - "tracking_categories,company", - "tracking_categories,company,accounting_period", - "tracking_categories,contact", - "tracking_categories,contact,accounting_period", - "tracking_categories,contact,company", - "tracking_categories,contact,company,accounting_period", -]); - -export declare namespace CreditNotesRetrieveRequestExpand { - export type Raw = - | "accounting_period" - | "applied_payments" - | "applied_payments,accounting_period" - | "applied_payments,company" - | "applied_payments,company,accounting_period" - | "applied_payments,contact" - | "applied_payments,contact,accounting_period" - | "applied_payments,contact,company" - | "applied_payments,contact,company,accounting_period" - | "applied_payments,line_items" - | "applied_payments,line_items,accounting_period" - | "applied_payments,line_items,company" - | "applied_payments,line_items,company,accounting_period" - | "applied_payments,line_items,contact" - | "applied_payments,line_items,contact,accounting_period" - | "applied_payments,line_items,contact,company" - | "applied_payments,line_items,contact,company,accounting_period" - | "applied_payments,line_items,tracking_categories" - | "applied_payments,line_items,tracking_categories,accounting_period" - | "applied_payments,line_items,tracking_categories,company" - | "applied_payments,line_items,tracking_categories,company,accounting_period" - | "applied_payments,line_items,tracking_categories,contact" - | "applied_payments,line_items,tracking_categories,contact,accounting_period" - | "applied_payments,line_items,tracking_categories,contact,company" - | "applied_payments,line_items,tracking_categories,contact,company,accounting_period" - | "applied_payments,tracking_categories" - | "applied_payments,tracking_categories,accounting_period" - | "applied_payments,tracking_categories,company" - | "applied_payments,tracking_categories,company,accounting_period" - | "applied_payments,tracking_categories,contact" - | "applied_payments,tracking_categories,contact,accounting_period" - | "applied_payments,tracking_categories,contact,company" - | "applied_payments,tracking_categories,contact,company,accounting_period" - | "company" - | "company,accounting_period" - | "contact" - | "contact,accounting_period" - | "contact,company" - | "contact,company,accounting_period" - | "line_items" - | "line_items,accounting_period" - | "line_items,company" - | "line_items,company,accounting_period" - | "line_items,contact" - | "line_items,contact,accounting_period" - | "line_items,contact,company" - | "line_items,contact,company,accounting_period" - | "line_items,tracking_categories" - | "line_items,tracking_categories,accounting_period" - | "line_items,tracking_categories,company" - | "line_items,tracking_categories,company,accounting_period" - | "line_items,tracking_categories,contact" - | "line_items,tracking_categories,contact,accounting_period" - | "line_items,tracking_categories,contact,company" - | "line_items,tracking_categories,contact,company,accounting_period" - | "payments" - | "payments,accounting_period" - | "payments,applied_payments" - | "payments,applied_payments,accounting_period" - | "payments,applied_payments,company" - | "payments,applied_payments,company,accounting_period" - | "payments,applied_payments,contact" - | "payments,applied_payments,contact,accounting_period" - | "payments,applied_payments,contact,company" - | "payments,applied_payments,contact,company,accounting_period" - | "payments,applied_payments,line_items" - | "payments,applied_payments,line_items,accounting_period" - | "payments,applied_payments,line_items,company" - | "payments,applied_payments,line_items,company,accounting_period" - | "payments,applied_payments,line_items,contact" - | "payments,applied_payments,line_items,contact,accounting_period" - | "payments,applied_payments,line_items,contact,company" - | "payments,applied_payments,line_items,contact,company,accounting_period" - | "payments,applied_payments,line_items,tracking_categories" - | "payments,applied_payments,line_items,tracking_categories,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,company" - | "payments,applied_payments,line_items,tracking_categories,company,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,contact" - | "payments,applied_payments,line_items,tracking_categories,contact,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,contact,company" - | "payments,applied_payments,line_items,tracking_categories,contact,company,accounting_period" - | "payments,applied_payments,tracking_categories" - | "payments,applied_payments,tracking_categories,accounting_period" - | "payments,applied_payments,tracking_categories,company" - | "payments,applied_payments,tracking_categories,company,accounting_period" - | "payments,applied_payments,tracking_categories,contact" - | "payments,applied_payments,tracking_categories,contact,accounting_period" - | "payments,applied_payments,tracking_categories,contact,company" - | "payments,applied_payments,tracking_categories,contact,company,accounting_period" - | "payments,company" - | "payments,company,accounting_period" - | "payments,contact" - | "payments,contact,accounting_period" - | "payments,contact,company" - | "payments,contact,company,accounting_period" - | "payments,line_items" - | "payments,line_items,accounting_period" - | "payments,line_items,company" - | "payments,line_items,company,accounting_period" - | "payments,line_items,contact" - | "payments,line_items,contact,accounting_period" - | "payments,line_items,contact,company" - | "payments,line_items,contact,company,accounting_period" - | "payments,line_items,tracking_categories" - | "payments,line_items,tracking_categories,accounting_period" - | "payments,line_items,tracking_categories,company" - | "payments,line_items,tracking_categories,company,accounting_period" - | "payments,line_items,tracking_categories,contact" - | "payments,line_items,tracking_categories,contact,accounting_period" - | "payments,line_items,tracking_categories,contact,company" - | "payments,line_items,tracking_categories,contact,company,accounting_period" - | "payments,tracking_categories" - | "payments,tracking_categories,accounting_period" - | "payments,tracking_categories,company" - | "payments,tracking_categories,company,accounting_period" - | "payments,tracking_categories,contact" - | "payments,tracking_categories,contact,accounting_period" - | "payments,tracking_categories,contact,company" - | "payments,tracking_categories,contact,company,accounting_period" - | "tracking_categories" - | "tracking_categories,accounting_period" - | "tracking_categories,company" - | "tracking_categories,company,accounting_period" - | "tracking_categories,contact" - | "tracking_categories,contact,accounting_period" - | "tracking_categories,contact,company" - | "tracking_categories,contact,company,accounting_period"; -} diff --git a/src/serialization/resources/accounting/resources/creditNotes/types/CreditNotesRetrieveRequestRemoteFields.ts b/src/serialization/resources/accounting/resources/creditNotes/types/CreditNotesRetrieveRequestRemoteFields.ts deleted file mode 100644 index 8c5e552e2..000000000 --- a/src/serialization/resources/accounting/resources/creditNotes/types/CreditNotesRetrieveRequestRemoteFields.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; - -export const CreditNotesRetrieveRequestRemoteFields: core.serialization.Schema< - serializers.accounting.CreditNotesRetrieveRequestRemoteFields.Raw, - Merge.accounting.CreditNotesRetrieveRequestRemoteFields -> = core.serialization.enum_(["status", "status,type", "type"]); - -export declare namespace CreditNotesRetrieveRequestRemoteFields { - export type Raw = "status" | "status,type" | "type"; -} diff --git a/src/serialization/resources/accounting/resources/creditNotes/types/CreditNotesRetrieveRequestShowEnumOrigins.ts b/src/serialization/resources/accounting/resources/creditNotes/types/CreditNotesRetrieveRequestShowEnumOrigins.ts deleted file mode 100644 index 877c70b69..000000000 --- a/src/serialization/resources/accounting/resources/creditNotes/types/CreditNotesRetrieveRequestShowEnumOrigins.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; - -export const CreditNotesRetrieveRequestShowEnumOrigins: core.serialization.Schema< - serializers.accounting.CreditNotesRetrieveRequestShowEnumOrigins.Raw, - Merge.accounting.CreditNotesRetrieveRequestShowEnumOrigins -> = core.serialization.enum_(["status", "status,type", "type"]); - -export declare namespace CreditNotesRetrieveRequestShowEnumOrigins { - export type Raw = "status" | "status,type" | "type"; -} diff --git a/src/serialization/resources/accounting/resources/creditNotes/types/index.ts b/src/serialization/resources/accounting/resources/creditNotes/types/index.ts deleted file mode 100644 index 87be1efa5..000000000 --- a/src/serialization/resources/accounting/resources/creditNotes/types/index.ts +++ /dev/null @@ -1,6 +0,0 @@ -export * from "./CreditNotesListRequestExpand"; -export * from "./CreditNotesListRequestRemoteFields"; -export * from "./CreditNotesListRequestShowEnumOrigins"; -export * from "./CreditNotesRetrieveRequestExpand"; -export * from "./CreditNotesRetrieveRequestRemoteFields"; -export * from "./CreditNotesRetrieveRequestShowEnumOrigins"; diff --git a/src/serialization/resources/accounting/resources/expenseReports/client/index.ts b/src/serialization/resources/accounting/resources/expenseReports/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/serialization/resources/accounting/resources/expenseReports/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/serialization/resources/accounting/resources/expenseReports/client/requests/ExpenseReportEndpointRequest.ts b/src/serialization/resources/accounting/resources/expenseReports/client/requests/ExpenseReportEndpointRequest.ts deleted file mode 100644 index faff0160f..000000000 --- a/src/serialization/resources/accounting/resources/expenseReports/client/requests/ExpenseReportEndpointRequest.ts +++ /dev/null @@ -1,19 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../../api/index"; -import * as core from "../../../../../../../core"; -import type * as serializers from "../../../../../../index"; -import { ExpenseReportRequest } from "../../../../types/ExpenseReportRequest"; - -export const ExpenseReportEndpointRequest: core.serialization.Schema< - serializers.accounting.ExpenseReportEndpointRequest.Raw, - Omit -> = core.serialization.object({ - model: ExpenseReportRequest, -}); - -export declare namespace ExpenseReportEndpointRequest { - export interface Raw { - model: ExpenseReportRequest.Raw; - } -} diff --git a/src/serialization/resources/accounting/resources/expenseReports/client/requests/index.ts b/src/serialization/resources/accounting/resources/expenseReports/client/requests/index.ts deleted file mode 100644 index 86f81d85a..000000000 --- a/src/serialization/resources/accounting/resources/expenseReports/client/requests/index.ts +++ /dev/null @@ -1 +0,0 @@ -export { ExpenseReportEndpointRequest } from "./ExpenseReportEndpointRequest"; diff --git a/src/serialization/resources/accounting/resources/expenseReports/index.ts b/src/serialization/resources/accounting/resources/expenseReports/index.ts deleted file mode 100644 index d2ec2302c..000000000 --- a/src/serialization/resources/accounting/resources/expenseReports/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./client"; -export * from "./types"; diff --git a/src/serialization/resources/accounting/resources/expenseReports/types/ExpenseReportsLinesListRequestExpand.ts b/src/serialization/resources/accounting/resources/expenseReports/types/ExpenseReportsLinesListRequestExpand.ts deleted file mode 100644 index 4b3bb7c65..000000000 --- a/src/serialization/resources/accounting/resources/expenseReports/types/ExpenseReportsLinesListRequestExpand.ts +++ /dev/null @@ -1,141 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; - -export const ExpenseReportsLinesListRequestExpand: core.serialization.Schema< - serializers.accounting.ExpenseReportsLinesListRequestExpand.Raw, - Merge.accounting.ExpenseReportsLinesListRequestExpand -> = core.serialization.enum_([ - "account", - "account,company", - "account,company,contact", - "account,company,contact,tax_rate", - "account,company,tax_rate", - "account,contact", - "account,contact,tax_rate", - "account,employee", - "account,employee,company", - "account,employee,company,contact", - "account,employee,company,contact,tax_rate", - "account,employee,company,tax_rate", - "account,employee,contact", - "account,employee,contact,tax_rate", - "account,employee,project", - "account,employee,project,company", - "account,employee,project,company,contact", - "account,employee,project,company,contact,tax_rate", - "account,employee,project,company,tax_rate", - "account,employee,project,contact", - "account,employee,project,contact,tax_rate", - "account,employee,project,tax_rate", - "account,employee,tax_rate", - "account,project", - "account,project,company", - "account,project,company,contact", - "account,project,company,contact,tax_rate", - "account,project,company,tax_rate", - "account,project,contact", - "account,project,contact,tax_rate", - "account,project,tax_rate", - "account,tax_rate", - "company", - "company,contact", - "company,contact,tax_rate", - "company,tax_rate", - "contact", - "contact,tax_rate", - "employee", - "employee,company", - "employee,company,contact", - "employee,company,contact,tax_rate", - "employee,company,tax_rate", - "employee,contact", - "employee,contact,tax_rate", - "employee,project", - "employee,project,company", - "employee,project,company,contact", - "employee,project,company,contact,tax_rate", - "employee,project,company,tax_rate", - "employee,project,contact", - "employee,project,contact,tax_rate", - "employee,project,tax_rate", - "employee,tax_rate", - "project", - "project,company", - "project,company,contact", - "project,company,contact,tax_rate", - "project,company,tax_rate", - "project,contact", - "project,contact,tax_rate", - "project,tax_rate", - "tax_rate", -]); - -export declare namespace ExpenseReportsLinesListRequestExpand { - export type Raw = - | "account" - | "account,company" - | "account,company,contact" - | "account,company,contact,tax_rate" - | "account,company,tax_rate" - | "account,contact" - | "account,contact,tax_rate" - | "account,employee" - | "account,employee,company" - | "account,employee,company,contact" - | "account,employee,company,contact,tax_rate" - | "account,employee,company,tax_rate" - | "account,employee,contact" - | "account,employee,contact,tax_rate" - | "account,employee,project" - | "account,employee,project,company" - | "account,employee,project,company,contact" - | "account,employee,project,company,contact,tax_rate" - | "account,employee,project,company,tax_rate" - | "account,employee,project,contact" - | "account,employee,project,contact,tax_rate" - | "account,employee,project,tax_rate" - | "account,employee,tax_rate" - | "account,project" - | "account,project,company" - | "account,project,company,contact" - | "account,project,company,contact,tax_rate" - | "account,project,company,tax_rate" - | "account,project,contact" - | "account,project,contact,tax_rate" - | "account,project,tax_rate" - | "account,tax_rate" - | "company" - | "company,contact" - | "company,contact,tax_rate" - | "company,tax_rate" - | "contact" - | "contact,tax_rate" - | "employee" - | "employee,company" - | "employee,company,contact" - | "employee,company,contact,tax_rate" - | "employee,company,tax_rate" - | "employee,contact" - | "employee,contact,tax_rate" - | "employee,project" - | "employee,project,company" - | "employee,project,company,contact" - | "employee,project,company,contact,tax_rate" - | "employee,project,company,tax_rate" - | "employee,project,contact" - | "employee,project,contact,tax_rate" - | "employee,project,tax_rate" - | "employee,tax_rate" - | "project" - | "project,company" - | "project,company,contact" - | "project,company,contact,tax_rate" - | "project,company,tax_rate" - | "project,contact" - | "project,contact,tax_rate" - | "project,tax_rate" - | "tax_rate"; -} diff --git a/src/serialization/resources/accounting/resources/expenseReports/types/ExpenseReportsListRequestExpand.ts b/src/serialization/resources/accounting/resources/expenseReports/types/ExpenseReportsListRequestExpand.ts deleted file mode 100644 index 9bdbf8250..000000000 --- a/src/serialization/resources/accounting/resources/expenseReports/types/ExpenseReportsListRequestExpand.ts +++ /dev/null @@ -1,45 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; - -export const ExpenseReportsListRequestExpand: core.serialization.Schema< - serializers.accounting.ExpenseReportsListRequestExpand.Raw, - Merge.accounting.ExpenseReportsListRequestExpand -> = core.serialization.enum_([ - "accounting_period", - "accounting_period,company", - "company", - "employee", - "employee,accounting_period", - "employee,accounting_period,company", - "employee,company", - "lines", - "lines,accounting_period", - "lines,accounting_period,company", - "lines,company", - "lines,employee", - "lines,employee,accounting_period", - "lines,employee,accounting_period,company", - "lines,employee,company", -]); - -export declare namespace ExpenseReportsListRequestExpand { - export type Raw = - | "accounting_period" - | "accounting_period,company" - | "company" - | "employee" - | "employee,accounting_period" - | "employee,accounting_period,company" - | "employee,company" - | "lines" - | "lines,accounting_period" - | "lines,accounting_period,company" - | "lines,company" - | "lines,employee" - | "lines,employee,accounting_period" - | "lines,employee,accounting_period,company" - | "lines,employee,company"; -} diff --git a/src/serialization/resources/accounting/resources/expenseReports/types/ExpenseReportsRetrieveRequestExpand.ts b/src/serialization/resources/accounting/resources/expenseReports/types/ExpenseReportsRetrieveRequestExpand.ts deleted file mode 100644 index b3a77896b..000000000 --- a/src/serialization/resources/accounting/resources/expenseReports/types/ExpenseReportsRetrieveRequestExpand.ts +++ /dev/null @@ -1,45 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; - -export const ExpenseReportsRetrieveRequestExpand: core.serialization.Schema< - serializers.accounting.ExpenseReportsRetrieveRequestExpand.Raw, - Merge.accounting.ExpenseReportsRetrieveRequestExpand -> = core.serialization.enum_([ - "accounting_period", - "accounting_period,company", - "company", - "employee", - "employee,accounting_period", - "employee,accounting_period,company", - "employee,company", - "lines", - "lines,accounting_period", - "lines,accounting_period,company", - "lines,company", - "lines,employee", - "lines,employee,accounting_period", - "lines,employee,accounting_period,company", - "lines,employee,company", -]); - -export declare namespace ExpenseReportsRetrieveRequestExpand { - export type Raw = - | "accounting_period" - | "accounting_period,company" - | "company" - | "employee" - | "employee,accounting_period" - | "employee,accounting_period,company" - | "employee,company" - | "lines" - | "lines,accounting_period" - | "lines,accounting_period,company" - | "lines,company" - | "lines,employee" - | "lines,employee,accounting_period" - | "lines,employee,accounting_period,company" - | "lines,employee,company"; -} diff --git a/src/serialization/resources/accounting/resources/expenseReports/types/index.ts b/src/serialization/resources/accounting/resources/expenseReports/types/index.ts deleted file mode 100644 index 9dd83d9ba..000000000 --- a/src/serialization/resources/accounting/resources/expenseReports/types/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -export * from "./ExpenseReportsLinesListRequestExpand"; -export * from "./ExpenseReportsListRequestExpand"; -export * from "./ExpenseReportsRetrieveRequestExpand"; diff --git a/src/serialization/resources/accounting/resources/expenses/client/index.ts b/src/serialization/resources/accounting/resources/expenses/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/serialization/resources/accounting/resources/expenses/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/serialization/resources/accounting/resources/expenses/client/requests/ExpenseEndpointRequest.ts b/src/serialization/resources/accounting/resources/expenses/client/requests/ExpenseEndpointRequest.ts deleted file mode 100644 index e0e651d21..000000000 --- a/src/serialization/resources/accounting/resources/expenses/client/requests/ExpenseEndpointRequest.ts +++ /dev/null @@ -1,19 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../../api/index"; -import * as core from "../../../../../../../core"; -import type * as serializers from "../../../../../../index"; -import { ExpenseRequest } from "../../../../types/ExpenseRequest"; - -export const ExpenseEndpointRequest: core.serialization.Schema< - serializers.accounting.ExpenseEndpointRequest.Raw, - Omit -> = core.serialization.object({ - model: ExpenseRequest, -}); - -export declare namespace ExpenseEndpointRequest { - export interface Raw { - model: ExpenseRequest.Raw; - } -} diff --git a/src/serialization/resources/accounting/resources/expenses/client/requests/index.ts b/src/serialization/resources/accounting/resources/expenses/client/requests/index.ts deleted file mode 100644 index bb1ef9330..000000000 --- a/src/serialization/resources/accounting/resources/expenses/client/requests/index.ts +++ /dev/null @@ -1 +0,0 @@ -export { ExpenseEndpointRequest } from "./ExpenseEndpointRequest"; diff --git a/src/serialization/resources/accounting/resources/expenses/index.ts b/src/serialization/resources/accounting/resources/expenses/index.ts deleted file mode 100644 index d2ec2302c..000000000 --- a/src/serialization/resources/accounting/resources/expenses/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./client"; -export * from "./types"; diff --git a/src/serialization/resources/accounting/resources/expenses/types/ExpensesListRequestExpand.ts b/src/serialization/resources/accounting/resources/expenses/types/ExpensesListRequestExpand.ts deleted file mode 100644 index 8b959b2e2..000000000 --- a/src/serialization/resources/accounting/resources/expenses/types/ExpensesListRequestExpand.ts +++ /dev/null @@ -1,141 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; - -export const ExpensesListRequestExpand: core.serialization.Schema< - serializers.accounting.ExpensesListRequestExpand.Raw, - Merge.accounting.ExpensesListRequestExpand -> = core.serialization.enum_([ - "account", - "account,accounting_period", - "account,company", - "account,company,accounting_period", - "account,company,employee", - "account,company,employee,accounting_period", - "account,contact", - "account,contact,accounting_period", - "account,contact,company", - "account,contact,company,accounting_period", - "account,contact,company,employee", - "account,contact,company,employee,accounting_period", - "account,contact,employee", - "account,contact,employee,accounting_period", - "account,employee", - "account,employee,accounting_period", - "accounting_period", - "company", - "company,accounting_period", - "company,employee", - "company,employee,accounting_period", - "contact", - "contact,accounting_period", - "contact,company", - "contact,company,accounting_period", - "contact,company,employee", - "contact,company,employee,accounting_period", - "contact,employee", - "contact,employee,accounting_period", - "employee", - "employee,accounting_period", - "tracking_categories", - "tracking_categories,account", - "tracking_categories,account,accounting_period", - "tracking_categories,account,company", - "tracking_categories,account,company,accounting_period", - "tracking_categories,account,company,employee", - "tracking_categories,account,company,employee,accounting_period", - "tracking_categories,account,contact", - "tracking_categories,account,contact,accounting_period", - "tracking_categories,account,contact,company", - "tracking_categories,account,contact,company,accounting_period", - "tracking_categories,account,contact,company,employee", - "tracking_categories,account,contact,company,employee,accounting_period", - "tracking_categories,account,contact,employee", - "tracking_categories,account,contact,employee,accounting_period", - "tracking_categories,account,employee", - "tracking_categories,account,employee,accounting_period", - "tracking_categories,accounting_period", - "tracking_categories,company", - "tracking_categories,company,accounting_period", - "tracking_categories,company,employee", - "tracking_categories,company,employee,accounting_period", - "tracking_categories,contact", - "tracking_categories,contact,accounting_period", - "tracking_categories,contact,company", - "tracking_categories,contact,company,accounting_period", - "tracking_categories,contact,company,employee", - "tracking_categories,contact,company,employee,accounting_period", - "tracking_categories,contact,employee", - "tracking_categories,contact,employee,accounting_period", - "tracking_categories,employee", - "tracking_categories,employee,accounting_period", -]); - -export declare namespace ExpensesListRequestExpand { - export type Raw = - | "account" - | "account,accounting_period" - | "account,company" - | "account,company,accounting_period" - | "account,company,employee" - | "account,company,employee,accounting_period" - | "account,contact" - | "account,contact,accounting_period" - | "account,contact,company" - | "account,contact,company,accounting_period" - | "account,contact,company,employee" - | "account,contact,company,employee,accounting_period" - | "account,contact,employee" - | "account,contact,employee,accounting_period" - | "account,employee" - | "account,employee,accounting_period" - | "accounting_period" - | "company" - | "company,accounting_period" - | "company,employee" - | "company,employee,accounting_period" - | "contact" - | "contact,accounting_period" - | "contact,company" - | "contact,company,accounting_period" - | "contact,company,employee" - | "contact,company,employee,accounting_period" - | "contact,employee" - | "contact,employee,accounting_period" - | "employee" - | "employee,accounting_period" - | "tracking_categories" - | "tracking_categories,account" - | "tracking_categories,account,accounting_period" - | "tracking_categories,account,company" - | "tracking_categories,account,company,accounting_period" - | "tracking_categories,account,company,employee" - | "tracking_categories,account,company,employee,accounting_period" - | "tracking_categories,account,contact" - | "tracking_categories,account,contact,accounting_period" - | "tracking_categories,account,contact,company" - | "tracking_categories,account,contact,company,accounting_period" - | "tracking_categories,account,contact,company,employee" - | "tracking_categories,account,contact,company,employee,accounting_period" - | "tracking_categories,account,contact,employee" - | "tracking_categories,account,contact,employee,accounting_period" - | "tracking_categories,account,employee" - | "tracking_categories,account,employee,accounting_period" - | "tracking_categories,accounting_period" - | "tracking_categories,company" - | "tracking_categories,company,accounting_period" - | "tracking_categories,company,employee" - | "tracking_categories,company,employee,accounting_period" - | "tracking_categories,contact" - | "tracking_categories,contact,accounting_period" - | "tracking_categories,contact,company" - | "tracking_categories,contact,company,accounting_period" - | "tracking_categories,contact,company,employee" - | "tracking_categories,contact,company,employee,accounting_period" - | "tracking_categories,contact,employee" - | "tracking_categories,contact,employee,accounting_period" - | "tracking_categories,employee" - | "tracking_categories,employee,accounting_period"; -} diff --git a/src/serialization/resources/accounting/resources/expenses/types/ExpensesRetrieveRequestExpand.ts b/src/serialization/resources/accounting/resources/expenses/types/ExpensesRetrieveRequestExpand.ts deleted file mode 100644 index 3fd4eda0e..000000000 --- a/src/serialization/resources/accounting/resources/expenses/types/ExpensesRetrieveRequestExpand.ts +++ /dev/null @@ -1,141 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; - -export const ExpensesRetrieveRequestExpand: core.serialization.Schema< - serializers.accounting.ExpensesRetrieveRequestExpand.Raw, - Merge.accounting.ExpensesRetrieveRequestExpand -> = core.serialization.enum_([ - "account", - "account,accounting_period", - "account,company", - "account,company,accounting_period", - "account,company,employee", - "account,company,employee,accounting_period", - "account,contact", - "account,contact,accounting_period", - "account,contact,company", - "account,contact,company,accounting_period", - "account,contact,company,employee", - "account,contact,company,employee,accounting_period", - "account,contact,employee", - "account,contact,employee,accounting_period", - "account,employee", - "account,employee,accounting_period", - "accounting_period", - "company", - "company,accounting_period", - "company,employee", - "company,employee,accounting_period", - "contact", - "contact,accounting_period", - "contact,company", - "contact,company,accounting_period", - "contact,company,employee", - "contact,company,employee,accounting_period", - "contact,employee", - "contact,employee,accounting_period", - "employee", - "employee,accounting_period", - "tracking_categories", - "tracking_categories,account", - "tracking_categories,account,accounting_period", - "tracking_categories,account,company", - "tracking_categories,account,company,accounting_period", - "tracking_categories,account,company,employee", - "tracking_categories,account,company,employee,accounting_period", - "tracking_categories,account,contact", - "tracking_categories,account,contact,accounting_period", - "tracking_categories,account,contact,company", - "tracking_categories,account,contact,company,accounting_period", - "tracking_categories,account,contact,company,employee", - "tracking_categories,account,contact,company,employee,accounting_period", - "tracking_categories,account,contact,employee", - "tracking_categories,account,contact,employee,accounting_period", - "tracking_categories,account,employee", - "tracking_categories,account,employee,accounting_period", - "tracking_categories,accounting_period", - "tracking_categories,company", - "tracking_categories,company,accounting_period", - "tracking_categories,company,employee", - "tracking_categories,company,employee,accounting_period", - "tracking_categories,contact", - "tracking_categories,contact,accounting_period", - "tracking_categories,contact,company", - "tracking_categories,contact,company,accounting_period", - "tracking_categories,contact,company,employee", - "tracking_categories,contact,company,employee,accounting_period", - "tracking_categories,contact,employee", - "tracking_categories,contact,employee,accounting_period", - "tracking_categories,employee", - "tracking_categories,employee,accounting_period", -]); - -export declare namespace ExpensesRetrieveRequestExpand { - export type Raw = - | "account" - | "account,accounting_period" - | "account,company" - | "account,company,accounting_period" - | "account,company,employee" - | "account,company,employee,accounting_period" - | "account,contact" - | "account,contact,accounting_period" - | "account,contact,company" - | "account,contact,company,accounting_period" - | "account,contact,company,employee" - | "account,contact,company,employee,accounting_period" - | "account,contact,employee" - | "account,contact,employee,accounting_period" - | "account,employee" - | "account,employee,accounting_period" - | "accounting_period" - | "company" - | "company,accounting_period" - | "company,employee" - | "company,employee,accounting_period" - | "contact" - | "contact,accounting_period" - | "contact,company" - | "contact,company,accounting_period" - | "contact,company,employee" - | "contact,company,employee,accounting_period" - | "contact,employee" - | "contact,employee,accounting_period" - | "employee" - | "employee,accounting_period" - | "tracking_categories" - | "tracking_categories,account" - | "tracking_categories,account,accounting_period" - | "tracking_categories,account,company" - | "tracking_categories,account,company,accounting_period" - | "tracking_categories,account,company,employee" - | "tracking_categories,account,company,employee,accounting_period" - | "tracking_categories,account,contact" - | "tracking_categories,account,contact,accounting_period" - | "tracking_categories,account,contact,company" - | "tracking_categories,account,contact,company,accounting_period" - | "tracking_categories,account,contact,company,employee" - | "tracking_categories,account,contact,company,employee,accounting_period" - | "tracking_categories,account,contact,employee" - | "tracking_categories,account,contact,employee,accounting_period" - | "tracking_categories,account,employee" - | "tracking_categories,account,employee,accounting_period" - | "tracking_categories,accounting_period" - | "tracking_categories,company" - | "tracking_categories,company,accounting_period" - | "tracking_categories,company,employee" - | "tracking_categories,company,employee,accounting_period" - | "tracking_categories,contact" - | "tracking_categories,contact,accounting_period" - | "tracking_categories,contact,company" - | "tracking_categories,contact,company,accounting_period" - | "tracking_categories,contact,company,employee" - | "tracking_categories,contact,company,employee,accounting_period" - | "tracking_categories,contact,employee" - | "tracking_categories,contact,employee,accounting_period" - | "tracking_categories,employee" - | "tracking_categories,employee,accounting_period"; -} diff --git a/src/serialization/resources/accounting/resources/expenses/types/index.ts b/src/serialization/resources/accounting/resources/expenses/types/index.ts deleted file mode 100644 index 2a53835eb..000000000 --- a/src/serialization/resources/accounting/resources/expenses/types/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./ExpensesListRequestExpand"; -export * from "./ExpensesRetrieveRequestExpand"; diff --git a/src/serialization/resources/accounting/resources/fieldMapping/client/index.ts b/src/serialization/resources/accounting/resources/fieldMapping/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/serialization/resources/accounting/resources/fieldMapping/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/serialization/resources/accounting/resources/fieldMapping/client/requests/CreateFieldMappingRequest.ts b/src/serialization/resources/accounting/resources/fieldMapping/client/requests/CreateFieldMappingRequest.ts deleted file mode 100644 index e92cb2afa..000000000 --- a/src/serialization/resources/accounting/resources/fieldMapping/client/requests/CreateFieldMappingRequest.ts +++ /dev/null @@ -1,31 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../../api/index"; -import * as core from "../../../../../../../core"; -import type * as serializers from "../../../../../../index"; - -export const CreateFieldMappingRequest: core.serialization.Schema< - serializers.accounting.CreateFieldMappingRequest.Raw, - Omit -> = core.serialization.object({ - targetFieldName: core.serialization.property("target_field_name", core.serialization.string()), - targetFieldDescription: core.serialization.property("target_field_description", core.serialization.string()), - remoteFieldTraversalPath: core.serialization.property( - "remote_field_traversal_path", - core.serialization.list(core.serialization.unknown()), - ), - remoteMethod: core.serialization.property("remote_method", core.serialization.string()), - remoteUrlPath: core.serialization.property("remote_url_path", core.serialization.string()), - commonModelName: core.serialization.property("common_model_name", core.serialization.string()), -}); - -export declare namespace CreateFieldMappingRequest { - export interface Raw { - target_field_name: string; - target_field_description: string; - remote_field_traversal_path: unknown[]; - remote_method: string; - remote_url_path: string; - common_model_name: string; - } -} diff --git a/src/serialization/resources/accounting/resources/fieldMapping/client/requests/PatchedEditFieldMappingRequest.ts b/src/serialization/resources/accounting/resources/fieldMapping/client/requests/PatchedEditFieldMappingRequest.ts deleted file mode 100644 index cb2730986..000000000 --- a/src/serialization/resources/accounting/resources/fieldMapping/client/requests/PatchedEditFieldMappingRequest.ts +++ /dev/null @@ -1,25 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../../api/index"; -import * as core from "../../../../../../../core"; -import type * as serializers from "../../../../../../index"; - -export const PatchedEditFieldMappingRequest: core.serialization.Schema< - serializers.accounting.PatchedEditFieldMappingRequest.Raw, - Merge.accounting.PatchedEditFieldMappingRequest -> = core.serialization.object({ - remoteFieldTraversalPath: core.serialization.property( - "remote_field_traversal_path", - core.serialization.list(core.serialization.unknown()).optional(), - ), - remoteMethod: core.serialization.property("remote_method", core.serialization.string().optional()), - remoteUrlPath: core.serialization.property("remote_url_path", core.serialization.string().optional()), -}); - -export declare namespace PatchedEditFieldMappingRequest { - export interface Raw { - remote_field_traversal_path?: unknown[] | null; - remote_method?: string | null; - remote_url_path?: string | null; - } -} diff --git a/src/serialization/resources/accounting/resources/fieldMapping/client/requests/index.ts b/src/serialization/resources/accounting/resources/fieldMapping/client/requests/index.ts deleted file mode 100644 index 9bb691d70..000000000 --- a/src/serialization/resources/accounting/resources/fieldMapping/client/requests/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export { CreateFieldMappingRequest } from "./CreateFieldMappingRequest"; -export { PatchedEditFieldMappingRequest } from "./PatchedEditFieldMappingRequest"; diff --git a/src/serialization/resources/accounting/resources/fieldMapping/index.ts b/src/serialization/resources/accounting/resources/fieldMapping/index.ts deleted file mode 100644 index 5ec76921e..000000000 --- a/src/serialization/resources/accounting/resources/fieldMapping/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./client"; diff --git a/src/serialization/resources/accounting/resources/forceResync/client/index.ts b/src/serialization/resources/accounting/resources/forceResync/client/index.ts deleted file mode 100644 index d5680837c..000000000 --- a/src/serialization/resources/accounting/resources/forceResync/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * as syncStatusResyncCreate from "./syncStatusResyncCreate"; diff --git a/src/serialization/resources/accounting/resources/forceResync/client/syncStatusResyncCreate.ts b/src/serialization/resources/accounting/resources/forceResync/client/syncStatusResyncCreate.ts deleted file mode 100644 index 8da695cf7..000000000 --- a/src/serialization/resources/accounting/resources/forceResync/client/syncStatusResyncCreate.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; -import { SyncStatus } from "../../../types/SyncStatus"; - -export const Response: core.serialization.Schema< - serializers.accounting.forceResync.syncStatusResyncCreate.Response.Raw, - Merge.accounting.SyncStatus[] -> = core.serialization.list(SyncStatus); - -export declare namespace Response { - export type Raw = SyncStatus.Raw[]; -} diff --git a/src/serialization/resources/accounting/resources/forceResync/index.ts b/src/serialization/resources/accounting/resources/forceResync/index.ts deleted file mode 100644 index 5ec76921e..000000000 --- a/src/serialization/resources/accounting/resources/forceResync/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./client"; diff --git a/src/serialization/resources/accounting/resources/generalLedgerTransactions/index.ts b/src/serialization/resources/accounting/resources/generalLedgerTransactions/index.ts deleted file mode 100644 index eea524d65..000000000 --- a/src/serialization/resources/accounting/resources/generalLedgerTransactions/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./types"; diff --git a/src/serialization/resources/accounting/resources/generalLedgerTransactions/types/GeneralLedgerTransactionsListRequestExpand.ts b/src/serialization/resources/accounting/resources/generalLedgerTransactions/types/GeneralLedgerTransactionsListRequestExpand.ts deleted file mode 100644 index 972bbfe2b..000000000 --- a/src/serialization/resources/accounting/resources/generalLedgerTransactions/types/GeneralLedgerTransactionsListRequestExpand.ts +++ /dev/null @@ -1,45 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; - -export const GeneralLedgerTransactionsListRequestExpand: core.serialization.Schema< - serializers.accounting.GeneralLedgerTransactionsListRequestExpand.Raw, - Merge.accounting.GeneralLedgerTransactionsListRequestExpand -> = core.serialization.enum_([ - "accounting_period", - "company", - "company,accounting_period", - "general_ledger_transaction_lines", - "general_ledger_transaction_lines,accounting_period", - "general_ledger_transaction_lines,company", - "general_ledger_transaction_lines,company,accounting_period", - "tracking_categories", - "tracking_categories,accounting_period", - "tracking_categories,company", - "tracking_categories,company,accounting_period", - "tracking_categories,general_ledger_transaction_lines", - "tracking_categories,general_ledger_transaction_lines,accounting_period", - "tracking_categories,general_ledger_transaction_lines,company", - "tracking_categories,general_ledger_transaction_lines,company,accounting_period", -]); - -export declare namespace GeneralLedgerTransactionsListRequestExpand { - export type Raw = - | "accounting_period" - | "company" - | "company,accounting_period" - | "general_ledger_transaction_lines" - | "general_ledger_transaction_lines,accounting_period" - | "general_ledger_transaction_lines,company" - | "general_ledger_transaction_lines,company,accounting_period" - | "tracking_categories" - | "tracking_categories,accounting_period" - | "tracking_categories,company" - | "tracking_categories,company,accounting_period" - | "tracking_categories,general_ledger_transaction_lines" - | "tracking_categories,general_ledger_transaction_lines,accounting_period" - | "tracking_categories,general_ledger_transaction_lines,company" - | "tracking_categories,general_ledger_transaction_lines,company,accounting_period"; -} diff --git a/src/serialization/resources/accounting/resources/generalLedgerTransactions/types/GeneralLedgerTransactionsRetrieveRequestExpand.ts b/src/serialization/resources/accounting/resources/generalLedgerTransactions/types/GeneralLedgerTransactionsRetrieveRequestExpand.ts deleted file mode 100644 index c3116e138..000000000 --- a/src/serialization/resources/accounting/resources/generalLedgerTransactions/types/GeneralLedgerTransactionsRetrieveRequestExpand.ts +++ /dev/null @@ -1,45 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; - -export const GeneralLedgerTransactionsRetrieveRequestExpand: core.serialization.Schema< - serializers.accounting.GeneralLedgerTransactionsRetrieveRequestExpand.Raw, - Merge.accounting.GeneralLedgerTransactionsRetrieveRequestExpand -> = core.serialization.enum_([ - "accounting_period", - "company", - "company,accounting_period", - "general_ledger_transaction_lines", - "general_ledger_transaction_lines,accounting_period", - "general_ledger_transaction_lines,company", - "general_ledger_transaction_lines,company,accounting_period", - "tracking_categories", - "tracking_categories,accounting_period", - "tracking_categories,company", - "tracking_categories,company,accounting_period", - "tracking_categories,general_ledger_transaction_lines", - "tracking_categories,general_ledger_transaction_lines,accounting_period", - "tracking_categories,general_ledger_transaction_lines,company", - "tracking_categories,general_ledger_transaction_lines,company,accounting_period", -]); - -export declare namespace GeneralLedgerTransactionsRetrieveRequestExpand { - export type Raw = - | "accounting_period" - | "company" - | "company,accounting_period" - | "general_ledger_transaction_lines" - | "general_ledger_transaction_lines,accounting_period" - | "general_ledger_transaction_lines,company" - | "general_ledger_transaction_lines,company,accounting_period" - | "tracking_categories" - | "tracking_categories,accounting_period" - | "tracking_categories,company" - | "tracking_categories,company,accounting_period" - | "tracking_categories,general_ledger_transaction_lines" - | "tracking_categories,general_ledger_transaction_lines,accounting_period" - | "tracking_categories,general_ledger_transaction_lines,company" - | "tracking_categories,general_ledger_transaction_lines,company,accounting_period"; -} diff --git a/src/serialization/resources/accounting/resources/generalLedgerTransactions/types/index.ts b/src/serialization/resources/accounting/resources/generalLedgerTransactions/types/index.ts deleted file mode 100644 index e77fb4471..000000000 --- a/src/serialization/resources/accounting/resources/generalLedgerTransactions/types/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./GeneralLedgerTransactionsListRequestExpand"; -export * from "./GeneralLedgerTransactionsRetrieveRequestExpand"; diff --git a/src/serialization/resources/accounting/resources/generateKey/client/index.ts b/src/serialization/resources/accounting/resources/generateKey/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/serialization/resources/accounting/resources/generateKey/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/serialization/resources/accounting/resources/generateKey/client/requests/GenerateRemoteKeyRequest.ts b/src/serialization/resources/accounting/resources/generateKey/client/requests/GenerateRemoteKeyRequest.ts deleted file mode 100644 index 614a15166..000000000 --- a/src/serialization/resources/accounting/resources/generateKey/client/requests/GenerateRemoteKeyRequest.ts +++ /dev/null @@ -1,18 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../../api/index"; -import * as core from "../../../../../../../core"; -import type * as serializers from "../../../../../../index"; - -export const GenerateRemoteKeyRequest: core.serialization.Schema< - serializers.accounting.GenerateRemoteKeyRequest.Raw, - Merge.accounting.GenerateRemoteKeyRequest -> = core.serialization.object({ - name: core.serialization.string(), -}); - -export declare namespace GenerateRemoteKeyRequest { - export interface Raw { - name: string; - } -} diff --git a/src/serialization/resources/accounting/resources/generateKey/client/requests/index.ts b/src/serialization/resources/accounting/resources/generateKey/client/requests/index.ts deleted file mode 100644 index 0df6e7c8b..000000000 --- a/src/serialization/resources/accounting/resources/generateKey/client/requests/index.ts +++ /dev/null @@ -1 +0,0 @@ -export { GenerateRemoteKeyRequest } from "./GenerateRemoteKeyRequest"; diff --git a/src/serialization/resources/accounting/resources/generateKey/index.ts b/src/serialization/resources/accounting/resources/generateKey/index.ts deleted file mode 100644 index 5ec76921e..000000000 --- a/src/serialization/resources/accounting/resources/generateKey/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./client"; diff --git a/src/serialization/resources/accounting/resources/index.ts b/src/serialization/resources/accounting/resources/index.ts deleted file mode 100644 index 4528f9241..000000000 --- a/src/serialization/resources/accounting/resources/index.ts +++ /dev/null @@ -1,69 +0,0 @@ -export * as accounts from "./accounts"; -export * from "./accounts/client/requests"; -export * from "./accounts/types"; -export * as asyncPassthrough from "./asyncPassthrough"; -export * from "./asyncPassthrough/types"; -export * as attachments from "./attachments"; -export * from "./attachments/client/requests"; -export * as bankFeedAccounts from "./bankFeedAccounts"; -export * from "./bankFeedAccounts/client/requests"; -export * as bankFeedTransactions from "./bankFeedTransactions"; -export * from "./bankFeedTransactions/client/requests"; -export * as companyInfo from "./companyInfo"; -export * from "./companyInfo/types"; -export * as contacts from "./contacts"; -export * from "./contacts/client/requests"; -export * from "./contacts/types"; -export * as creditNotes from "./creditNotes"; -export * from "./creditNotes/client/requests"; -export * from "./creditNotes/types"; -export * as expenseReports from "./expenseReports"; -export * from "./expenseReports/client/requests"; -export * from "./expenseReports/types"; -export * as expenses from "./expenses"; -export * from "./expenses/client/requests"; -export * from "./expenses/types"; -export * as fieldMapping from "./fieldMapping"; -export * from "./fieldMapping/client/requests"; -export * as forceResync from "./forceResync"; -export * as generalLedgerTransactions from "./generalLedgerTransactions"; -export * from "./generalLedgerTransactions/types"; -export * as generateKey from "./generateKey"; -export * from "./generateKey/client/requests"; -export * as invoices from "./invoices"; -export * from "./invoices/client/requests"; -export * from "./invoices/types"; -export * as issues from "./issues"; -export * from "./issues/types"; -export * as items from "./items"; -export * from "./items/client/requests"; -export * from "./items/types"; -export * as journalEntries from "./journalEntries"; -export * from "./journalEntries/client/requests"; -export * from "./journalEntries/types"; -export * as linkedAccounts from "./linkedAccounts"; -export * from "./linkedAccounts/types"; -export * as linkToken from "./linkToken"; -export * from "./linkToken/client/requests"; -export * from "./linkToken/types"; -export * as payments from "./payments"; -export * from "./payments/client/requests"; -export * from "./payments/types"; -export * as projects from "./projects"; -export * from "./projects/types"; -export * as purchaseOrders from "./purchaseOrders"; -export * from "./purchaseOrders/client/requests"; -export * from "./purchaseOrders/types"; -export * as regenerateKey from "./regenerateKey"; -export * from "./regenerateKey/client/requests"; -export * as scopes from "./scopes"; -export * from "./scopes/client/requests"; -export * as trackingCategories from "./trackingCategories"; -export * from "./trackingCategories/types"; -export * as transactions from "./transactions"; -export * from "./transactions/types"; -export * as vendorCredits from "./vendorCredits"; -export * from "./vendorCredits/client/requests"; -export * from "./vendorCredits/types"; -export * as webhookReceivers from "./webhookReceivers"; -export * from "./webhookReceivers/client/requests"; diff --git a/src/serialization/resources/accounting/resources/invoices/client/index.ts b/src/serialization/resources/accounting/resources/invoices/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/serialization/resources/accounting/resources/invoices/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/serialization/resources/accounting/resources/invoices/client/requests/InvoiceEndpointRequest.ts b/src/serialization/resources/accounting/resources/invoices/client/requests/InvoiceEndpointRequest.ts deleted file mode 100644 index 1308f9676..000000000 --- a/src/serialization/resources/accounting/resources/invoices/client/requests/InvoiceEndpointRequest.ts +++ /dev/null @@ -1,19 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../../api/index"; -import * as core from "../../../../../../../core"; -import type * as serializers from "../../../../../../index"; -import { InvoiceRequest } from "../../../../types/InvoiceRequest"; - -export const InvoiceEndpointRequest: core.serialization.Schema< - serializers.accounting.InvoiceEndpointRequest.Raw, - Omit -> = core.serialization.object({ - model: InvoiceRequest, -}); - -export declare namespace InvoiceEndpointRequest { - export interface Raw { - model: InvoiceRequest.Raw; - } -} diff --git a/src/serialization/resources/accounting/resources/invoices/client/requests/PatchedInvoiceEndpointRequest.ts b/src/serialization/resources/accounting/resources/invoices/client/requests/PatchedInvoiceEndpointRequest.ts deleted file mode 100644 index 878f7419e..000000000 --- a/src/serialization/resources/accounting/resources/invoices/client/requests/PatchedInvoiceEndpointRequest.ts +++ /dev/null @@ -1,19 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../../api/index"; -import * as core from "../../../../../../../core"; -import type * as serializers from "../../../../../../index"; -import { InvoiceRequest } from "../../../../types/InvoiceRequest"; - -export const PatchedInvoiceEndpointRequest: core.serialization.Schema< - serializers.accounting.PatchedInvoiceEndpointRequest.Raw, - Omit -> = core.serialization.object({ - model: InvoiceRequest, -}); - -export declare namespace PatchedInvoiceEndpointRequest { - export interface Raw { - model: InvoiceRequest.Raw; - } -} diff --git a/src/serialization/resources/accounting/resources/invoices/client/requests/index.ts b/src/serialization/resources/accounting/resources/invoices/client/requests/index.ts deleted file mode 100644 index 71b7cdcff..000000000 --- a/src/serialization/resources/accounting/resources/invoices/client/requests/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export { InvoiceEndpointRequest } from "./InvoiceEndpointRequest"; -export { PatchedInvoiceEndpointRequest } from "./PatchedInvoiceEndpointRequest"; diff --git a/src/serialization/resources/accounting/resources/invoices/index.ts b/src/serialization/resources/accounting/resources/invoices/index.ts deleted file mode 100644 index d2ec2302c..000000000 --- a/src/serialization/resources/accounting/resources/invoices/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./client"; -export * from "./types"; diff --git a/src/serialization/resources/accounting/resources/invoices/types/InvoicesListRequestExpand.ts b/src/serialization/resources/accounting/resources/invoices/types/InvoicesListRequestExpand.ts deleted file mode 100644 index ed222d64f..000000000 --- a/src/serialization/resources/accounting/resources/invoices/types/InvoicesListRequestExpand.ts +++ /dev/null @@ -1,8205 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; - -export const InvoicesListRequestExpand: core.serialization.Schema< - serializers.accounting.InvoicesListRequestExpand.Raw, - Merge.accounting.InvoicesListRequestExpand -> = core.serialization.enum_([ - "accounting_period", - "accounting_period,payment_term", - "applied_credit_notes", - "applied_credit_notes,accounting_period", - "applied_credit_notes,accounting_period,payment_term", - "applied_credit_notes,applied_vendor_credits", - "applied_credit_notes,applied_vendor_credits,accounting_period", - "applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "applied_credit_notes,applied_vendor_credits,company", - "applied_credit_notes,applied_vendor_credits,company,accounting_period", - "applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "applied_credit_notes,applied_vendor_credits,company,employee", - "applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "applied_credit_notes,applied_vendor_credits,company,payment_term", - "applied_credit_notes,applied_vendor_credits,contact", - "applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "applied_credit_notes,applied_vendor_credits,contact,company", - "applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "applied_credit_notes,applied_vendor_credits,contact,company,employee", - "applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "applied_credit_notes,applied_vendor_credits,contact,employee", - "applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "applied_credit_notes,applied_vendor_credits,contact,payment_term", - "applied_credit_notes,applied_vendor_credits,employee", - "applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "applied_credit_notes,applied_vendor_credits,employee,payment_term", - "applied_credit_notes,applied_vendor_credits,payment_term", - "applied_credit_notes,company", - "applied_credit_notes,company,accounting_period", - "applied_credit_notes,company,accounting_period,payment_term", - "applied_credit_notes,company,employee", - "applied_credit_notes,company,employee,accounting_period", - "applied_credit_notes,company,employee,accounting_period,payment_term", - "applied_credit_notes,company,employee,payment_term", - "applied_credit_notes,company,payment_term", - "applied_credit_notes,contact", - "applied_credit_notes,contact,accounting_period", - "applied_credit_notes,contact,accounting_period,payment_term", - "applied_credit_notes,contact,company", - "applied_credit_notes,contact,company,accounting_period", - "applied_credit_notes,contact,company,accounting_period,payment_term", - "applied_credit_notes,contact,company,employee", - "applied_credit_notes,contact,company,employee,accounting_period", - "applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "applied_credit_notes,contact,company,employee,payment_term", - "applied_credit_notes,contact,company,payment_term", - "applied_credit_notes,contact,employee", - "applied_credit_notes,contact,employee,accounting_period", - "applied_credit_notes,contact,employee,accounting_period,payment_term", - "applied_credit_notes,contact,employee,payment_term", - "applied_credit_notes,contact,payment_term", - "applied_credit_notes,employee", - "applied_credit_notes,employee,accounting_period", - "applied_credit_notes,employee,accounting_period,payment_term", - "applied_credit_notes,employee,payment_term", - "applied_credit_notes,payment_term", - "applied_payments", - "applied_payments,accounting_period", - "applied_payments,accounting_period,payment_term", - "applied_payments,applied_credit_notes", - "applied_payments,applied_credit_notes,accounting_period", - "applied_payments,applied_credit_notes,accounting_period,payment_term", - "applied_payments,applied_credit_notes,applied_vendor_credits", - "applied_payments,applied_credit_notes,applied_vendor_credits,accounting_period", - "applied_payments,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "applied_payments,applied_credit_notes,applied_vendor_credits,company", - "applied_payments,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "applied_payments,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "applied_payments,applied_credit_notes,applied_vendor_credits,company,employee", - "applied_payments,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "applied_payments,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "applied_payments,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "applied_payments,applied_credit_notes,applied_vendor_credits,company,payment_term", - "applied_payments,applied_credit_notes,applied_vendor_credits,contact", - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,company", - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,employee", - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "applied_payments,applied_credit_notes,applied_vendor_credits,employee", - "applied_payments,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "applied_payments,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "applied_payments,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "applied_payments,applied_credit_notes,applied_vendor_credits,payment_term", - "applied_payments,applied_credit_notes,company", - "applied_payments,applied_credit_notes,company,accounting_period", - "applied_payments,applied_credit_notes,company,accounting_period,payment_term", - "applied_payments,applied_credit_notes,company,employee", - "applied_payments,applied_credit_notes,company,employee,accounting_period", - "applied_payments,applied_credit_notes,company,employee,accounting_period,payment_term", - "applied_payments,applied_credit_notes,company,employee,payment_term", - "applied_payments,applied_credit_notes,company,payment_term", - "applied_payments,applied_credit_notes,contact", - "applied_payments,applied_credit_notes,contact,accounting_period", - "applied_payments,applied_credit_notes,contact,accounting_period,payment_term", - "applied_payments,applied_credit_notes,contact,company", - "applied_payments,applied_credit_notes,contact,company,accounting_period", - "applied_payments,applied_credit_notes,contact,company,accounting_period,payment_term", - "applied_payments,applied_credit_notes,contact,company,employee", - "applied_payments,applied_credit_notes,contact,company,employee,accounting_period", - "applied_payments,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "applied_payments,applied_credit_notes,contact,company,employee,payment_term", - "applied_payments,applied_credit_notes,contact,company,payment_term", - "applied_payments,applied_credit_notes,contact,employee", - "applied_payments,applied_credit_notes,contact,employee,accounting_period", - "applied_payments,applied_credit_notes,contact,employee,accounting_period,payment_term", - "applied_payments,applied_credit_notes,contact,employee,payment_term", - "applied_payments,applied_credit_notes,contact,payment_term", - "applied_payments,applied_credit_notes,employee", - "applied_payments,applied_credit_notes,employee,accounting_period", - "applied_payments,applied_credit_notes,employee,accounting_period,payment_term", - "applied_payments,applied_credit_notes,employee,payment_term", - "applied_payments,applied_credit_notes,payment_term", - "applied_payments,applied_vendor_credits", - "applied_payments,applied_vendor_credits,accounting_period", - "applied_payments,applied_vendor_credits,accounting_period,payment_term", - "applied_payments,applied_vendor_credits,company", - "applied_payments,applied_vendor_credits,company,accounting_period", - "applied_payments,applied_vendor_credits,company,accounting_period,payment_term", - "applied_payments,applied_vendor_credits,company,employee", - "applied_payments,applied_vendor_credits,company,employee,accounting_period", - "applied_payments,applied_vendor_credits,company,employee,accounting_period,payment_term", - "applied_payments,applied_vendor_credits,company,employee,payment_term", - "applied_payments,applied_vendor_credits,company,payment_term", - "applied_payments,applied_vendor_credits,contact", - "applied_payments,applied_vendor_credits,contact,accounting_period", - "applied_payments,applied_vendor_credits,contact,accounting_period,payment_term", - "applied_payments,applied_vendor_credits,contact,company", - "applied_payments,applied_vendor_credits,contact,company,accounting_period", - "applied_payments,applied_vendor_credits,contact,company,accounting_period,payment_term", - "applied_payments,applied_vendor_credits,contact,company,employee", - "applied_payments,applied_vendor_credits,contact,company,employee,accounting_period", - "applied_payments,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "applied_payments,applied_vendor_credits,contact,company,employee,payment_term", - "applied_payments,applied_vendor_credits,contact,company,payment_term", - "applied_payments,applied_vendor_credits,contact,employee", - "applied_payments,applied_vendor_credits,contact,employee,accounting_period", - "applied_payments,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "applied_payments,applied_vendor_credits,contact,employee,payment_term", - "applied_payments,applied_vendor_credits,contact,payment_term", - "applied_payments,applied_vendor_credits,employee", - "applied_payments,applied_vendor_credits,employee,accounting_period", - "applied_payments,applied_vendor_credits,employee,accounting_period,payment_term", - "applied_payments,applied_vendor_credits,employee,payment_term", - "applied_payments,applied_vendor_credits,payment_term", - "applied_payments,company", - "applied_payments,company,accounting_period", - "applied_payments,company,accounting_period,payment_term", - "applied_payments,company,employee", - "applied_payments,company,employee,accounting_period", - "applied_payments,company,employee,accounting_period,payment_term", - "applied_payments,company,employee,payment_term", - "applied_payments,company,payment_term", - "applied_payments,contact", - "applied_payments,contact,accounting_period", - "applied_payments,contact,accounting_period,payment_term", - "applied_payments,contact,company", - "applied_payments,contact,company,accounting_period", - "applied_payments,contact,company,accounting_period,payment_term", - "applied_payments,contact,company,employee", - "applied_payments,contact,company,employee,accounting_period", - "applied_payments,contact,company,employee,accounting_period,payment_term", - "applied_payments,contact,company,employee,payment_term", - "applied_payments,contact,company,payment_term", - "applied_payments,contact,employee", - "applied_payments,contact,employee,accounting_period", - "applied_payments,contact,employee,accounting_period,payment_term", - "applied_payments,contact,employee,payment_term", - "applied_payments,contact,payment_term", - "applied_payments,employee", - "applied_payments,employee,accounting_period", - "applied_payments,employee,accounting_period,payment_term", - "applied_payments,employee,payment_term", - "applied_payments,line_items", - "applied_payments,line_items,accounting_period", - "applied_payments,line_items,accounting_period,payment_term", - "applied_payments,line_items,applied_credit_notes", - "applied_payments,line_items,applied_credit_notes,accounting_period", - "applied_payments,line_items,applied_credit_notes,accounting_period,payment_term", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,accounting_period", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,payment_term", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,employee", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,payment_term", - "applied_payments,line_items,applied_credit_notes,company", - "applied_payments,line_items,applied_credit_notes,company,accounting_period", - "applied_payments,line_items,applied_credit_notes,company,accounting_period,payment_term", - "applied_payments,line_items,applied_credit_notes,company,employee", - "applied_payments,line_items,applied_credit_notes,company,employee,accounting_period", - "applied_payments,line_items,applied_credit_notes,company,employee,accounting_period,payment_term", - "applied_payments,line_items,applied_credit_notes,company,employee,payment_term", - "applied_payments,line_items,applied_credit_notes,company,payment_term", - "applied_payments,line_items,applied_credit_notes,contact", - "applied_payments,line_items,applied_credit_notes,contact,accounting_period", - "applied_payments,line_items,applied_credit_notes,contact,accounting_period,payment_term", - "applied_payments,line_items,applied_credit_notes,contact,company", - "applied_payments,line_items,applied_credit_notes,contact,company,accounting_period", - "applied_payments,line_items,applied_credit_notes,contact,company,accounting_period,payment_term", - "applied_payments,line_items,applied_credit_notes,contact,company,employee", - "applied_payments,line_items,applied_credit_notes,contact,company,employee,accounting_period", - "applied_payments,line_items,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "applied_payments,line_items,applied_credit_notes,contact,company,employee,payment_term", - "applied_payments,line_items,applied_credit_notes,contact,company,payment_term", - "applied_payments,line_items,applied_credit_notes,contact,employee", - "applied_payments,line_items,applied_credit_notes,contact,employee,accounting_period", - "applied_payments,line_items,applied_credit_notes,contact,employee,accounting_period,payment_term", - "applied_payments,line_items,applied_credit_notes,contact,employee,payment_term", - "applied_payments,line_items,applied_credit_notes,contact,payment_term", - "applied_payments,line_items,applied_credit_notes,employee", - "applied_payments,line_items,applied_credit_notes,employee,accounting_period", - "applied_payments,line_items,applied_credit_notes,employee,accounting_period,payment_term", - "applied_payments,line_items,applied_credit_notes,employee,payment_term", - "applied_payments,line_items,applied_credit_notes,payment_term", - "applied_payments,line_items,applied_vendor_credits", - "applied_payments,line_items,applied_vendor_credits,accounting_period", - "applied_payments,line_items,applied_vendor_credits,accounting_period,payment_term", - "applied_payments,line_items,applied_vendor_credits,company", - "applied_payments,line_items,applied_vendor_credits,company,accounting_period", - "applied_payments,line_items,applied_vendor_credits,company,accounting_period,payment_term", - "applied_payments,line_items,applied_vendor_credits,company,employee", - "applied_payments,line_items,applied_vendor_credits,company,employee,accounting_period", - "applied_payments,line_items,applied_vendor_credits,company,employee,accounting_period,payment_term", - "applied_payments,line_items,applied_vendor_credits,company,employee,payment_term", - "applied_payments,line_items,applied_vendor_credits,company,payment_term", - "applied_payments,line_items,applied_vendor_credits,contact", - "applied_payments,line_items,applied_vendor_credits,contact,accounting_period", - "applied_payments,line_items,applied_vendor_credits,contact,accounting_period,payment_term", - "applied_payments,line_items,applied_vendor_credits,contact,company", - "applied_payments,line_items,applied_vendor_credits,contact,company,accounting_period", - "applied_payments,line_items,applied_vendor_credits,contact,company,accounting_period,payment_term", - "applied_payments,line_items,applied_vendor_credits,contact,company,employee", - "applied_payments,line_items,applied_vendor_credits,contact,company,employee,accounting_period", - "applied_payments,line_items,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "applied_payments,line_items,applied_vendor_credits,contact,company,employee,payment_term", - "applied_payments,line_items,applied_vendor_credits,contact,company,payment_term", - "applied_payments,line_items,applied_vendor_credits,contact,employee", - "applied_payments,line_items,applied_vendor_credits,contact,employee,accounting_period", - "applied_payments,line_items,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "applied_payments,line_items,applied_vendor_credits,contact,employee,payment_term", - "applied_payments,line_items,applied_vendor_credits,contact,payment_term", - "applied_payments,line_items,applied_vendor_credits,employee", - "applied_payments,line_items,applied_vendor_credits,employee,accounting_period", - "applied_payments,line_items,applied_vendor_credits,employee,accounting_period,payment_term", - "applied_payments,line_items,applied_vendor_credits,employee,payment_term", - "applied_payments,line_items,applied_vendor_credits,payment_term", - "applied_payments,line_items,company", - "applied_payments,line_items,company,accounting_period", - "applied_payments,line_items,company,accounting_period,payment_term", - "applied_payments,line_items,company,employee", - "applied_payments,line_items,company,employee,accounting_period", - "applied_payments,line_items,company,employee,accounting_period,payment_term", - "applied_payments,line_items,company,employee,payment_term", - "applied_payments,line_items,company,payment_term", - "applied_payments,line_items,contact", - "applied_payments,line_items,contact,accounting_period", - "applied_payments,line_items,contact,accounting_period,payment_term", - "applied_payments,line_items,contact,company", - "applied_payments,line_items,contact,company,accounting_period", - "applied_payments,line_items,contact,company,accounting_period,payment_term", - "applied_payments,line_items,contact,company,employee", - "applied_payments,line_items,contact,company,employee,accounting_period", - "applied_payments,line_items,contact,company,employee,accounting_period,payment_term", - "applied_payments,line_items,contact,company,employee,payment_term", - "applied_payments,line_items,contact,company,payment_term", - "applied_payments,line_items,contact,employee", - "applied_payments,line_items,contact,employee,accounting_period", - "applied_payments,line_items,contact,employee,accounting_period,payment_term", - "applied_payments,line_items,contact,employee,payment_term", - "applied_payments,line_items,contact,payment_term", - "applied_payments,line_items,employee", - "applied_payments,line_items,employee,accounting_period", - "applied_payments,line_items,employee,accounting_period,payment_term", - "applied_payments,line_items,employee,payment_term", - "applied_payments,line_items,payment_term", - "applied_payments,line_items,purchase_orders", - "applied_payments,line_items,purchase_orders,accounting_period", - "applied_payments,line_items,purchase_orders,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes", - "applied_payments,line_items,purchase_orders,applied_credit_notes,accounting_period", - "applied_payments,line_items,purchase_orders,applied_credit_notes,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,company", - "applied_payments,line_items,purchase_orders,applied_credit_notes,company,accounting_period", - "applied_payments,line_items,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,company,employee", - "applied_payments,line_items,purchase_orders,applied_credit_notes,company,employee,accounting_period", - "applied_payments,line_items,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,company,employee,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,company,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact", - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,accounting_period", - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company", - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,accounting_period", - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee", - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,employee", - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,employee,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,employee", - "applied_payments,line_items,purchase_orders,applied_credit_notes,employee,accounting_period", - "applied_payments,line_items,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,employee,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,payment_term", - "applied_payments,line_items,purchase_orders,applied_vendor_credits", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,accounting_period", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,company", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,company,accounting_period", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,company,employee", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,company,employee,payment_term", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,company,payment_term", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,accounting_period", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,payment_term", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,employee", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,payment_term", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,employee", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,employee,accounting_period", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,employee,payment_term", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,payment_term", - "applied_payments,line_items,purchase_orders,company", - "applied_payments,line_items,purchase_orders,company,accounting_period", - "applied_payments,line_items,purchase_orders,company,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,company,employee", - "applied_payments,line_items,purchase_orders,company,employee,accounting_period", - "applied_payments,line_items,purchase_orders,company,employee,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,company,employee,payment_term", - "applied_payments,line_items,purchase_orders,company,payment_term", - "applied_payments,line_items,purchase_orders,contact", - "applied_payments,line_items,purchase_orders,contact,accounting_period", - "applied_payments,line_items,purchase_orders,contact,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,contact,company", - "applied_payments,line_items,purchase_orders,contact,company,accounting_period", - "applied_payments,line_items,purchase_orders,contact,company,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,contact,company,employee", - "applied_payments,line_items,purchase_orders,contact,company,employee,accounting_period", - "applied_payments,line_items,purchase_orders,contact,company,employee,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,contact,company,employee,payment_term", - "applied_payments,line_items,purchase_orders,contact,company,payment_term", - "applied_payments,line_items,purchase_orders,contact,employee", - "applied_payments,line_items,purchase_orders,contact,employee,accounting_period", - "applied_payments,line_items,purchase_orders,contact,employee,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,contact,employee,payment_term", - "applied_payments,line_items,purchase_orders,contact,payment_term", - "applied_payments,line_items,purchase_orders,employee", - "applied_payments,line_items,purchase_orders,employee,accounting_period", - "applied_payments,line_items,purchase_orders,employee,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,employee,payment_term", - "applied_payments,line_items,purchase_orders,payment_term", - "applied_payments,line_items,tracking_categories", - "applied_payments,line_items,tracking_categories,accounting_period", - "applied_payments,line_items,tracking_categories,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes", - "applied_payments,line_items,tracking_categories,applied_credit_notes,accounting_period", - "applied_payments,line_items,tracking_categories,applied_credit_notes,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,company", - "applied_payments,line_items,tracking_categories,applied_credit_notes,company,accounting_period", - "applied_payments,line_items,tracking_categories,applied_credit_notes,company,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,company,employee", - "applied_payments,line_items,tracking_categories,applied_credit_notes,company,employee,accounting_period", - "applied_payments,line_items,tracking_categories,applied_credit_notes,company,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,company,employee,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,company,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact", - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,accounting_period", - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company", - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,accounting_period", - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee", - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period", - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,employee", - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,employee,accounting_period", - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,employee,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,employee", - "applied_payments,line_items,tracking_categories,applied_credit_notes,employee,accounting_period", - "applied_payments,line_items,tracking_categories,applied_credit_notes,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,employee,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,payment_term", - "applied_payments,line_items,tracking_categories,applied_vendor_credits", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,accounting_period", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,company", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,company,accounting_period", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,company,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,company,employee", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,company,employee,accounting_period", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,company,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,company,employee,payment_term", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,company,payment_term", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,accounting_period", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,accounting_period", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,payment_term", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,payment_term", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,employee", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,accounting_period", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,payment_term", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,payment_term", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,employee", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,employee,accounting_period", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,employee,payment_term", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,payment_term", - "applied_payments,line_items,tracking_categories,company", - "applied_payments,line_items,tracking_categories,company,accounting_period", - "applied_payments,line_items,tracking_categories,company,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,company,employee", - "applied_payments,line_items,tracking_categories,company,employee,accounting_period", - "applied_payments,line_items,tracking_categories,company,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,company,employee,payment_term", - "applied_payments,line_items,tracking_categories,company,payment_term", - "applied_payments,line_items,tracking_categories,contact", - "applied_payments,line_items,tracking_categories,contact,accounting_period", - "applied_payments,line_items,tracking_categories,contact,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,contact,company", - "applied_payments,line_items,tracking_categories,contact,company,accounting_period", - "applied_payments,line_items,tracking_categories,contact,company,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,contact,company,employee", - "applied_payments,line_items,tracking_categories,contact,company,employee,accounting_period", - "applied_payments,line_items,tracking_categories,contact,company,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,contact,company,employee,payment_term", - "applied_payments,line_items,tracking_categories,contact,company,payment_term", - "applied_payments,line_items,tracking_categories,contact,employee", - "applied_payments,line_items,tracking_categories,contact,employee,accounting_period", - "applied_payments,line_items,tracking_categories,contact,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,contact,employee,payment_term", - "applied_payments,line_items,tracking_categories,contact,payment_term", - "applied_payments,line_items,tracking_categories,employee", - "applied_payments,line_items,tracking_categories,employee,accounting_period", - "applied_payments,line_items,tracking_categories,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,employee,payment_term", - "applied_payments,line_items,tracking_categories,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders", - "applied_payments,line_items,tracking_categories,purchase_orders,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,company", - "applied_payments,line_items,tracking_categories,purchase_orders,company,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,company,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,company,employee", - "applied_payments,line_items,tracking_categories,purchase_orders,company,employee,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,company,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,company,employee,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,company,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,contact", - "applied_payments,line_items,tracking_categories,purchase_orders,contact,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,contact,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,contact,company", - "applied_payments,line_items,tracking_categories,purchase_orders,contact,company,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,contact,company,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,contact,company,employee", - "applied_payments,line_items,tracking_categories,purchase_orders,contact,company,employee,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,contact,company,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,contact,company,employee,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,contact,company,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,contact,employee", - "applied_payments,line_items,tracking_categories,purchase_orders,contact,employee,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,contact,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,contact,employee,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,contact,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,employee", - "applied_payments,line_items,tracking_categories,purchase_orders,employee,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,employee,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,payment_term", - "applied_payments,payment_term", - "applied_payments,purchase_orders", - "applied_payments,purchase_orders,accounting_period", - "applied_payments,purchase_orders,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_credit_notes", - "applied_payments,purchase_orders,applied_credit_notes,accounting_period", - "applied_payments,purchase_orders,applied_credit_notes,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,company", - "applied_payments,purchase_orders,applied_credit_notes,company,accounting_period", - "applied_payments,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,company,employee", - "applied_payments,purchase_orders,applied_credit_notes,company,employee,accounting_period", - "applied_payments,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,company,employee,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,company,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,contact", - "applied_payments,purchase_orders,applied_credit_notes,contact,accounting_period", - "applied_payments,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,contact,company", - "applied_payments,purchase_orders,applied_credit_notes,contact,company,accounting_period", - "applied_payments,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,contact,company,employee", - "applied_payments,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - "applied_payments,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,contact,company,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,contact,employee", - "applied_payments,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - "applied_payments,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,contact,employee,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,contact,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,employee", - "applied_payments,purchase_orders,applied_credit_notes,employee,accounting_period", - "applied_payments,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,employee,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,payment_term", - "applied_payments,purchase_orders,applied_vendor_credits", - "applied_payments,purchase_orders,applied_vendor_credits,accounting_period", - "applied_payments,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_vendor_credits,company", - "applied_payments,purchase_orders,applied_vendor_credits,company,accounting_period", - "applied_payments,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_vendor_credits,company,employee", - "applied_payments,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - "applied_payments,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_vendor_credits,company,employee,payment_term", - "applied_payments,purchase_orders,applied_vendor_credits,company,payment_term", - "applied_payments,purchase_orders,applied_vendor_credits,contact", - "applied_payments,purchase_orders,applied_vendor_credits,contact,accounting_period", - "applied_payments,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_vendor_credits,contact,company", - "applied_payments,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - "applied_payments,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_vendor_credits,contact,company,employee", - "applied_payments,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - "applied_payments,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - "applied_payments,purchase_orders,applied_vendor_credits,contact,company,payment_term", - "applied_payments,purchase_orders,applied_vendor_credits,contact,employee", - "applied_payments,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - "applied_payments,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - "applied_payments,purchase_orders,applied_vendor_credits,contact,payment_term", - "applied_payments,purchase_orders,applied_vendor_credits,employee", - "applied_payments,purchase_orders,applied_vendor_credits,employee,accounting_period", - "applied_payments,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_vendor_credits,employee,payment_term", - "applied_payments,purchase_orders,applied_vendor_credits,payment_term", - "applied_payments,purchase_orders,company", - "applied_payments,purchase_orders,company,accounting_period", - "applied_payments,purchase_orders,company,accounting_period,payment_term", - "applied_payments,purchase_orders,company,employee", - "applied_payments,purchase_orders,company,employee,accounting_period", - "applied_payments,purchase_orders,company,employee,accounting_period,payment_term", - "applied_payments,purchase_orders,company,employee,payment_term", - "applied_payments,purchase_orders,company,payment_term", - "applied_payments,purchase_orders,contact", - "applied_payments,purchase_orders,contact,accounting_period", - "applied_payments,purchase_orders,contact,accounting_period,payment_term", - "applied_payments,purchase_orders,contact,company", - "applied_payments,purchase_orders,contact,company,accounting_period", - "applied_payments,purchase_orders,contact,company,accounting_period,payment_term", - "applied_payments,purchase_orders,contact,company,employee", - "applied_payments,purchase_orders,contact,company,employee,accounting_period", - "applied_payments,purchase_orders,contact,company,employee,accounting_period,payment_term", - "applied_payments,purchase_orders,contact,company,employee,payment_term", - "applied_payments,purchase_orders,contact,company,payment_term", - "applied_payments,purchase_orders,contact,employee", - "applied_payments,purchase_orders,contact,employee,accounting_period", - "applied_payments,purchase_orders,contact,employee,accounting_period,payment_term", - "applied_payments,purchase_orders,contact,employee,payment_term", - "applied_payments,purchase_orders,contact,payment_term", - "applied_payments,purchase_orders,employee", - "applied_payments,purchase_orders,employee,accounting_period", - "applied_payments,purchase_orders,employee,accounting_period,payment_term", - "applied_payments,purchase_orders,employee,payment_term", - "applied_payments,purchase_orders,payment_term", - "applied_payments,tracking_categories", - "applied_payments,tracking_categories,accounting_period", - "applied_payments,tracking_categories,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_credit_notes", - "applied_payments,tracking_categories,applied_credit_notes,accounting_period", - "applied_payments,tracking_categories,applied_credit_notes,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,company", - "applied_payments,tracking_categories,applied_credit_notes,company,accounting_period", - "applied_payments,tracking_categories,applied_credit_notes,company,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,company,employee", - "applied_payments,tracking_categories,applied_credit_notes,company,employee,accounting_period", - "applied_payments,tracking_categories,applied_credit_notes,company,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,company,employee,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,company,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,contact", - "applied_payments,tracking_categories,applied_credit_notes,contact,accounting_period", - "applied_payments,tracking_categories,applied_credit_notes,contact,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,contact,company", - "applied_payments,tracking_categories,applied_credit_notes,contact,company,accounting_period", - "applied_payments,tracking_categories,applied_credit_notes,contact,company,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,contact,company,employee", - "applied_payments,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period", - "applied_payments,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,contact,company,employee,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,contact,company,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,contact,employee", - "applied_payments,tracking_categories,applied_credit_notes,contact,employee,accounting_period", - "applied_payments,tracking_categories,applied_credit_notes,contact,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,contact,employee,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,contact,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,employee", - "applied_payments,tracking_categories,applied_credit_notes,employee,accounting_period", - "applied_payments,tracking_categories,applied_credit_notes,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,employee,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,payment_term", - "applied_payments,tracking_categories,applied_vendor_credits", - "applied_payments,tracking_categories,applied_vendor_credits,accounting_period", - "applied_payments,tracking_categories,applied_vendor_credits,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_vendor_credits,company", - "applied_payments,tracking_categories,applied_vendor_credits,company,accounting_period", - "applied_payments,tracking_categories,applied_vendor_credits,company,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_vendor_credits,company,employee", - "applied_payments,tracking_categories,applied_vendor_credits,company,employee,accounting_period", - "applied_payments,tracking_categories,applied_vendor_credits,company,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_vendor_credits,company,employee,payment_term", - "applied_payments,tracking_categories,applied_vendor_credits,company,payment_term", - "applied_payments,tracking_categories,applied_vendor_credits,contact", - "applied_payments,tracking_categories,applied_vendor_credits,contact,accounting_period", - "applied_payments,tracking_categories,applied_vendor_credits,contact,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_vendor_credits,contact,company", - "applied_payments,tracking_categories,applied_vendor_credits,contact,company,accounting_period", - "applied_payments,tracking_categories,applied_vendor_credits,contact,company,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_vendor_credits,contact,company,employee", - "applied_payments,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period", - "applied_payments,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_vendor_credits,contact,company,employee,payment_term", - "applied_payments,tracking_categories,applied_vendor_credits,contact,company,payment_term", - "applied_payments,tracking_categories,applied_vendor_credits,contact,employee", - "applied_payments,tracking_categories,applied_vendor_credits,contact,employee,accounting_period", - "applied_payments,tracking_categories,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_vendor_credits,contact,employee,payment_term", - "applied_payments,tracking_categories,applied_vendor_credits,contact,payment_term", - "applied_payments,tracking_categories,applied_vendor_credits,employee", - "applied_payments,tracking_categories,applied_vendor_credits,employee,accounting_period", - "applied_payments,tracking_categories,applied_vendor_credits,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_vendor_credits,employee,payment_term", - "applied_payments,tracking_categories,applied_vendor_credits,payment_term", - "applied_payments,tracking_categories,company", - "applied_payments,tracking_categories,company,accounting_period", - "applied_payments,tracking_categories,company,accounting_period,payment_term", - "applied_payments,tracking_categories,company,employee", - "applied_payments,tracking_categories,company,employee,accounting_period", - "applied_payments,tracking_categories,company,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,company,employee,payment_term", - "applied_payments,tracking_categories,company,payment_term", - "applied_payments,tracking_categories,contact", - "applied_payments,tracking_categories,contact,accounting_period", - "applied_payments,tracking_categories,contact,accounting_period,payment_term", - "applied_payments,tracking_categories,contact,company", - "applied_payments,tracking_categories,contact,company,accounting_period", - "applied_payments,tracking_categories,contact,company,accounting_period,payment_term", - "applied_payments,tracking_categories,contact,company,employee", - "applied_payments,tracking_categories,contact,company,employee,accounting_period", - "applied_payments,tracking_categories,contact,company,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,contact,company,employee,payment_term", - "applied_payments,tracking_categories,contact,company,payment_term", - "applied_payments,tracking_categories,contact,employee", - "applied_payments,tracking_categories,contact,employee,accounting_period", - "applied_payments,tracking_categories,contact,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,contact,employee,payment_term", - "applied_payments,tracking_categories,contact,payment_term", - "applied_payments,tracking_categories,employee", - "applied_payments,tracking_categories,employee,accounting_period", - "applied_payments,tracking_categories,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,employee,payment_term", - "applied_payments,tracking_categories,payment_term", - "applied_payments,tracking_categories,purchase_orders", - "applied_payments,tracking_categories,purchase_orders,accounting_period", - "applied_payments,tracking_categories,purchase_orders,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,accounting_period", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,employee", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,employee,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,employee", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,payment_term", - "applied_payments,tracking_categories,purchase_orders,company", - "applied_payments,tracking_categories,purchase_orders,company,accounting_period", - "applied_payments,tracking_categories,purchase_orders,company,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,company,employee", - "applied_payments,tracking_categories,purchase_orders,company,employee,accounting_period", - "applied_payments,tracking_categories,purchase_orders,company,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,company,employee,payment_term", - "applied_payments,tracking_categories,purchase_orders,company,payment_term", - "applied_payments,tracking_categories,purchase_orders,contact", - "applied_payments,tracking_categories,purchase_orders,contact,accounting_period", - "applied_payments,tracking_categories,purchase_orders,contact,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,contact,company", - "applied_payments,tracking_categories,purchase_orders,contact,company,accounting_period", - "applied_payments,tracking_categories,purchase_orders,contact,company,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,contact,company,employee", - "applied_payments,tracking_categories,purchase_orders,contact,company,employee,accounting_period", - "applied_payments,tracking_categories,purchase_orders,contact,company,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,contact,company,employee,payment_term", - "applied_payments,tracking_categories,purchase_orders,contact,company,payment_term", - "applied_payments,tracking_categories,purchase_orders,contact,employee", - "applied_payments,tracking_categories,purchase_orders,contact,employee,accounting_period", - "applied_payments,tracking_categories,purchase_orders,contact,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,contact,employee,payment_term", - "applied_payments,tracking_categories,purchase_orders,contact,payment_term", - "applied_payments,tracking_categories,purchase_orders,employee", - "applied_payments,tracking_categories,purchase_orders,employee,accounting_period", - "applied_payments,tracking_categories,purchase_orders,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,employee,payment_term", - "applied_payments,tracking_categories,purchase_orders,payment_term", - "applied_vendor_credits", - "applied_vendor_credits,accounting_period", - "applied_vendor_credits,accounting_period,payment_term", - "applied_vendor_credits,company", - "applied_vendor_credits,company,accounting_period", - "applied_vendor_credits,company,accounting_period,payment_term", - "applied_vendor_credits,company,employee", - "applied_vendor_credits,company,employee,accounting_period", - "applied_vendor_credits,company,employee,accounting_period,payment_term", - "applied_vendor_credits,company,employee,payment_term", - "applied_vendor_credits,company,payment_term", - "applied_vendor_credits,contact", - "applied_vendor_credits,contact,accounting_period", - "applied_vendor_credits,contact,accounting_period,payment_term", - "applied_vendor_credits,contact,company", - "applied_vendor_credits,contact,company,accounting_period", - "applied_vendor_credits,contact,company,accounting_period,payment_term", - "applied_vendor_credits,contact,company,employee", - "applied_vendor_credits,contact,company,employee,accounting_period", - "applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "applied_vendor_credits,contact,company,employee,payment_term", - "applied_vendor_credits,contact,company,payment_term", - "applied_vendor_credits,contact,employee", - "applied_vendor_credits,contact,employee,accounting_period", - "applied_vendor_credits,contact,employee,accounting_period,payment_term", - "applied_vendor_credits,contact,employee,payment_term", - "applied_vendor_credits,contact,payment_term", - "applied_vendor_credits,employee", - "applied_vendor_credits,employee,accounting_period", - "applied_vendor_credits,employee,accounting_period,payment_term", - "applied_vendor_credits,employee,payment_term", - "applied_vendor_credits,payment_term", - "company", - "company,accounting_period", - "company,accounting_period,payment_term", - "company,employee", - "company,employee,accounting_period", - "company,employee,accounting_period,payment_term", - "company,employee,payment_term", - "company,payment_term", - "contact", - "contact,accounting_period", - "contact,accounting_period,payment_term", - "contact,company", - "contact,company,accounting_period", - "contact,company,accounting_period,payment_term", - "contact,company,employee", - "contact,company,employee,accounting_period", - "contact,company,employee,accounting_period,payment_term", - "contact,company,employee,payment_term", - "contact,company,payment_term", - "contact,employee", - "contact,employee,accounting_period", - "contact,employee,accounting_period,payment_term", - "contact,employee,payment_term", - "contact,payment_term", - "employee", - "employee,accounting_period", - "employee,accounting_period,payment_term", - "employee,payment_term", - "line_items", - "line_items,accounting_period", - "line_items,accounting_period,payment_term", - "line_items,applied_credit_notes", - "line_items,applied_credit_notes,accounting_period", - "line_items,applied_credit_notes,accounting_period,payment_term", - "line_items,applied_credit_notes,applied_vendor_credits", - "line_items,applied_credit_notes,applied_vendor_credits,accounting_period", - "line_items,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "line_items,applied_credit_notes,applied_vendor_credits,company", - "line_items,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "line_items,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "line_items,applied_credit_notes,applied_vendor_credits,company,employee", - "line_items,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "line_items,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "line_items,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "line_items,applied_credit_notes,applied_vendor_credits,company,payment_term", - "line_items,applied_credit_notes,applied_vendor_credits,contact", - "line_items,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "line_items,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "line_items,applied_credit_notes,applied_vendor_credits,contact,company", - "line_items,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "line_items,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "line_items,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "line_items,applied_credit_notes,applied_vendor_credits,contact,employee", - "line_items,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "line_items,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "line_items,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "line_items,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "line_items,applied_credit_notes,applied_vendor_credits,employee", - "line_items,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "line_items,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "line_items,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "line_items,applied_credit_notes,applied_vendor_credits,payment_term", - "line_items,applied_credit_notes,company", - "line_items,applied_credit_notes,company,accounting_period", - "line_items,applied_credit_notes,company,accounting_period,payment_term", - "line_items,applied_credit_notes,company,employee", - "line_items,applied_credit_notes,company,employee,accounting_period", - "line_items,applied_credit_notes,company,employee,accounting_period,payment_term", - "line_items,applied_credit_notes,company,employee,payment_term", - "line_items,applied_credit_notes,company,payment_term", - "line_items,applied_credit_notes,contact", - "line_items,applied_credit_notes,contact,accounting_period", - "line_items,applied_credit_notes,contact,accounting_period,payment_term", - "line_items,applied_credit_notes,contact,company", - "line_items,applied_credit_notes,contact,company,accounting_period", - "line_items,applied_credit_notes,contact,company,accounting_period,payment_term", - "line_items,applied_credit_notes,contact,company,employee", - "line_items,applied_credit_notes,contact,company,employee,accounting_period", - "line_items,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "line_items,applied_credit_notes,contact,company,employee,payment_term", - "line_items,applied_credit_notes,contact,company,payment_term", - "line_items,applied_credit_notes,contact,employee", - "line_items,applied_credit_notes,contact,employee,accounting_period", - "line_items,applied_credit_notes,contact,employee,accounting_period,payment_term", - "line_items,applied_credit_notes,contact,employee,payment_term", - "line_items,applied_credit_notes,contact,payment_term", - "line_items,applied_credit_notes,employee", - "line_items,applied_credit_notes,employee,accounting_period", - "line_items,applied_credit_notes,employee,accounting_period,payment_term", - "line_items,applied_credit_notes,employee,payment_term", - "line_items,applied_credit_notes,payment_term", - "line_items,applied_vendor_credits", - "line_items,applied_vendor_credits,accounting_period", - "line_items,applied_vendor_credits,accounting_period,payment_term", - "line_items,applied_vendor_credits,company", - "line_items,applied_vendor_credits,company,accounting_period", - "line_items,applied_vendor_credits,company,accounting_period,payment_term", - "line_items,applied_vendor_credits,company,employee", - "line_items,applied_vendor_credits,company,employee,accounting_period", - "line_items,applied_vendor_credits,company,employee,accounting_period,payment_term", - "line_items,applied_vendor_credits,company,employee,payment_term", - "line_items,applied_vendor_credits,company,payment_term", - "line_items,applied_vendor_credits,contact", - "line_items,applied_vendor_credits,contact,accounting_period", - "line_items,applied_vendor_credits,contact,accounting_period,payment_term", - "line_items,applied_vendor_credits,contact,company", - "line_items,applied_vendor_credits,contact,company,accounting_period", - "line_items,applied_vendor_credits,contact,company,accounting_period,payment_term", - "line_items,applied_vendor_credits,contact,company,employee", - "line_items,applied_vendor_credits,contact,company,employee,accounting_period", - "line_items,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "line_items,applied_vendor_credits,contact,company,employee,payment_term", - "line_items,applied_vendor_credits,contact,company,payment_term", - "line_items,applied_vendor_credits,contact,employee", - "line_items,applied_vendor_credits,contact,employee,accounting_period", - "line_items,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "line_items,applied_vendor_credits,contact,employee,payment_term", - "line_items,applied_vendor_credits,contact,payment_term", - "line_items,applied_vendor_credits,employee", - "line_items,applied_vendor_credits,employee,accounting_period", - "line_items,applied_vendor_credits,employee,accounting_period,payment_term", - "line_items,applied_vendor_credits,employee,payment_term", - "line_items,applied_vendor_credits,payment_term", - "line_items,company", - "line_items,company,accounting_period", - "line_items,company,accounting_period,payment_term", - "line_items,company,employee", - "line_items,company,employee,accounting_period", - "line_items,company,employee,accounting_period,payment_term", - "line_items,company,employee,payment_term", - "line_items,company,payment_term", - "line_items,contact", - "line_items,contact,accounting_period", - "line_items,contact,accounting_period,payment_term", - "line_items,contact,company", - "line_items,contact,company,accounting_period", - "line_items,contact,company,accounting_period,payment_term", - "line_items,contact,company,employee", - "line_items,contact,company,employee,accounting_period", - "line_items,contact,company,employee,accounting_period,payment_term", - "line_items,contact,company,employee,payment_term", - "line_items,contact,company,payment_term", - "line_items,contact,employee", - "line_items,contact,employee,accounting_period", - "line_items,contact,employee,accounting_period,payment_term", - "line_items,contact,employee,payment_term", - "line_items,contact,payment_term", - "line_items,employee", - "line_items,employee,accounting_period", - "line_items,employee,accounting_period,payment_term", - "line_items,employee,payment_term", - "line_items,payment_term", - "line_items,purchase_orders", - "line_items,purchase_orders,accounting_period", - "line_items,purchase_orders,accounting_period,payment_term", - "line_items,purchase_orders,applied_credit_notes", - "line_items,purchase_orders,applied_credit_notes,accounting_period", - "line_items,purchase_orders,applied_credit_notes,accounting_period,payment_term", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - "line_items,purchase_orders,applied_credit_notes,company", - "line_items,purchase_orders,applied_credit_notes,company,accounting_period", - "line_items,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - "line_items,purchase_orders,applied_credit_notes,company,employee", - "line_items,purchase_orders,applied_credit_notes,company,employee,accounting_period", - "line_items,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - "line_items,purchase_orders,applied_credit_notes,company,employee,payment_term", - "line_items,purchase_orders,applied_credit_notes,company,payment_term", - "line_items,purchase_orders,applied_credit_notes,contact", - "line_items,purchase_orders,applied_credit_notes,contact,accounting_period", - "line_items,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - "line_items,purchase_orders,applied_credit_notes,contact,company", - "line_items,purchase_orders,applied_credit_notes,contact,company,accounting_period", - "line_items,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - "line_items,purchase_orders,applied_credit_notes,contact,company,employee", - "line_items,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - "line_items,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "line_items,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - "line_items,purchase_orders,applied_credit_notes,contact,company,payment_term", - "line_items,purchase_orders,applied_credit_notes,contact,employee", - "line_items,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - "line_items,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - "line_items,purchase_orders,applied_credit_notes,contact,employee,payment_term", - "line_items,purchase_orders,applied_credit_notes,contact,payment_term", - "line_items,purchase_orders,applied_credit_notes,employee", - "line_items,purchase_orders,applied_credit_notes,employee,accounting_period", - "line_items,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - "line_items,purchase_orders,applied_credit_notes,employee,payment_term", - "line_items,purchase_orders,applied_credit_notes,payment_term", - "line_items,purchase_orders,applied_vendor_credits", - "line_items,purchase_orders,applied_vendor_credits,accounting_period", - "line_items,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - "line_items,purchase_orders,applied_vendor_credits,company", - "line_items,purchase_orders,applied_vendor_credits,company,accounting_period", - "line_items,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - "line_items,purchase_orders,applied_vendor_credits,company,employee", - "line_items,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - "line_items,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - "line_items,purchase_orders,applied_vendor_credits,company,employee,payment_term", - "line_items,purchase_orders,applied_vendor_credits,company,payment_term", - "line_items,purchase_orders,applied_vendor_credits,contact", - "line_items,purchase_orders,applied_vendor_credits,contact,accounting_period", - "line_items,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - "line_items,purchase_orders,applied_vendor_credits,contact,company", - "line_items,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - "line_items,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - "line_items,purchase_orders,applied_vendor_credits,contact,company,employee", - "line_items,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - "line_items,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "line_items,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - "line_items,purchase_orders,applied_vendor_credits,contact,company,payment_term", - "line_items,purchase_orders,applied_vendor_credits,contact,employee", - "line_items,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - "line_items,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "line_items,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - "line_items,purchase_orders,applied_vendor_credits,contact,payment_term", - "line_items,purchase_orders,applied_vendor_credits,employee", - "line_items,purchase_orders,applied_vendor_credits,employee,accounting_period", - "line_items,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - "line_items,purchase_orders,applied_vendor_credits,employee,payment_term", - "line_items,purchase_orders,applied_vendor_credits,payment_term", - "line_items,purchase_orders,company", - "line_items,purchase_orders,company,accounting_period", - "line_items,purchase_orders,company,accounting_period,payment_term", - "line_items,purchase_orders,company,employee", - "line_items,purchase_orders,company,employee,accounting_period", - "line_items,purchase_orders,company,employee,accounting_period,payment_term", - "line_items,purchase_orders,company,employee,payment_term", - "line_items,purchase_orders,company,payment_term", - "line_items,purchase_orders,contact", - "line_items,purchase_orders,contact,accounting_period", - "line_items,purchase_orders,contact,accounting_period,payment_term", - "line_items,purchase_orders,contact,company", - "line_items,purchase_orders,contact,company,accounting_period", - "line_items,purchase_orders,contact,company,accounting_period,payment_term", - "line_items,purchase_orders,contact,company,employee", - "line_items,purchase_orders,contact,company,employee,accounting_period", - "line_items,purchase_orders,contact,company,employee,accounting_period,payment_term", - "line_items,purchase_orders,contact,company,employee,payment_term", - "line_items,purchase_orders,contact,company,payment_term", - "line_items,purchase_orders,contact,employee", - "line_items,purchase_orders,contact,employee,accounting_period", - "line_items,purchase_orders,contact,employee,accounting_period,payment_term", - "line_items,purchase_orders,contact,employee,payment_term", - "line_items,purchase_orders,contact,payment_term", - "line_items,purchase_orders,employee", - "line_items,purchase_orders,employee,accounting_period", - "line_items,purchase_orders,employee,accounting_period,payment_term", - "line_items,purchase_orders,employee,payment_term", - "line_items,purchase_orders,payment_term", - "line_items,tracking_categories", - "line_items,tracking_categories,accounting_period", - "line_items,tracking_categories,accounting_period,payment_term", - "line_items,tracking_categories,applied_credit_notes", - "line_items,tracking_categories,applied_credit_notes,accounting_period", - "line_items,tracking_categories,applied_credit_notes,accounting_period,payment_term", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,payment_term", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,payment_term", - "line_items,tracking_categories,applied_credit_notes,company", - "line_items,tracking_categories,applied_credit_notes,company,accounting_period", - "line_items,tracking_categories,applied_credit_notes,company,accounting_period,payment_term", - "line_items,tracking_categories,applied_credit_notes,company,employee", - "line_items,tracking_categories,applied_credit_notes,company,employee,accounting_period", - "line_items,tracking_categories,applied_credit_notes,company,employee,accounting_period,payment_term", - "line_items,tracking_categories,applied_credit_notes,company,employee,payment_term", - "line_items,tracking_categories,applied_credit_notes,company,payment_term", - "line_items,tracking_categories,applied_credit_notes,contact", - "line_items,tracking_categories,applied_credit_notes,contact,accounting_period", - "line_items,tracking_categories,applied_credit_notes,contact,accounting_period,payment_term", - "line_items,tracking_categories,applied_credit_notes,contact,company", - "line_items,tracking_categories,applied_credit_notes,contact,company,accounting_period", - "line_items,tracking_categories,applied_credit_notes,contact,company,accounting_period,payment_term", - "line_items,tracking_categories,applied_credit_notes,contact,company,employee", - "line_items,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period", - "line_items,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "line_items,tracking_categories,applied_credit_notes,contact,company,employee,payment_term", - "line_items,tracking_categories,applied_credit_notes,contact,company,payment_term", - "line_items,tracking_categories,applied_credit_notes,contact,employee", - "line_items,tracking_categories,applied_credit_notes,contact,employee,accounting_period", - "line_items,tracking_categories,applied_credit_notes,contact,employee,accounting_period,payment_term", - "line_items,tracking_categories,applied_credit_notes,contact,employee,payment_term", - "line_items,tracking_categories,applied_credit_notes,contact,payment_term", - "line_items,tracking_categories,applied_credit_notes,employee", - "line_items,tracking_categories,applied_credit_notes,employee,accounting_period", - "line_items,tracking_categories,applied_credit_notes,employee,accounting_period,payment_term", - "line_items,tracking_categories,applied_credit_notes,employee,payment_term", - "line_items,tracking_categories,applied_credit_notes,payment_term", - "line_items,tracking_categories,applied_vendor_credits", - "line_items,tracking_categories,applied_vendor_credits,accounting_period", - "line_items,tracking_categories,applied_vendor_credits,accounting_period,payment_term", - "line_items,tracking_categories,applied_vendor_credits,company", - "line_items,tracking_categories,applied_vendor_credits,company,accounting_period", - "line_items,tracking_categories,applied_vendor_credits,company,accounting_period,payment_term", - "line_items,tracking_categories,applied_vendor_credits,company,employee", - "line_items,tracking_categories,applied_vendor_credits,company,employee,accounting_period", - "line_items,tracking_categories,applied_vendor_credits,company,employee,accounting_period,payment_term", - "line_items,tracking_categories,applied_vendor_credits,company,employee,payment_term", - "line_items,tracking_categories,applied_vendor_credits,company,payment_term", - "line_items,tracking_categories,applied_vendor_credits,contact", - "line_items,tracking_categories,applied_vendor_credits,contact,accounting_period", - "line_items,tracking_categories,applied_vendor_credits,contact,accounting_period,payment_term", - "line_items,tracking_categories,applied_vendor_credits,contact,company", - "line_items,tracking_categories,applied_vendor_credits,contact,company,accounting_period", - "line_items,tracking_categories,applied_vendor_credits,contact,company,accounting_period,payment_term", - "line_items,tracking_categories,applied_vendor_credits,contact,company,employee", - "line_items,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period", - "line_items,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "line_items,tracking_categories,applied_vendor_credits,contact,company,employee,payment_term", - "line_items,tracking_categories,applied_vendor_credits,contact,company,payment_term", - "line_items,tracking_categories,applied_vendor_credits,contact,employee", - "line_items,tracking_categories,applied_vendor_credits,contact,employee,accounting_period", - "line_items,tracking_categories,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "line_items,tracking_categories,applied_vendor_credits,contact,employee,payment_term", - "line_items,tracking_categories,applied_vendor_credits,contact,payment_term", - "line_items,tracking_categories,applied_vendor_credits,employee", - "line_items,tracking_categories,applied_vendor_credits,employee,accounting_period", - "line_items,tracking_categories,applied_vendor_credits,employee,accounting_period,payment_term", - "line_items,tracking_categories,applied_vendor_credits,employee,payment_term", - "line_items,tracking_categories,applied_vendor_credits,payment_term", - "line_items,tracking_categories,company", - "line_items,tracking_categories,company,accounting_period", - "line_items,tracking_categories,company,accounting_period,payment_term", - "line_items,tracking_categories,company,employee", - "line_items,tracking_categories,company,employee,accounting_period", - "line_items,tracking_categories,company,employee,accounting_period,payment_term", - "line_items,tracking_categories,company,employee,payment_term", - "line_items,tracking_categories,company,payment_term", - "line_items,tracking_categories,contact", - "line_items,tracking_categories,contact,accounting_period", - "line_items,tracking_categories,contact,accounting_period,payment_term", - "line_items,tracking_categories,contact,company", - "line_items,tracking_categories,contact,company,accounting_period", - "line_items,tracking_categories,contact,company,accounting_period,payment_term", - "line_items,tracking_categories,contact,company,employee", - "line_items,tracking_categories,contact,company,employee,accounting_period", - "line_items,tracking_categories,contact,company,employee,accounting_period,payment_term", - "line_items,tracking_categories,contact,company,employee,payment_term", - "line_items,tracking_categories,contact,company,payment_term", - "line_items,tracking_categories,contact,employee", - "line_items,tracking_categories,contact,employee,accounting_period", - "line_items,tracking_categories,contact,employee,accounting_period,payment_term", - "line_items,tracking_categories,contact,employee,payment_term", - "line_items,tracking_categories,contact,payment_term", - "line_items,tracking_categories,employee", - "line_items,tracking_categories,employee,accounting_period", - "line_items,tracking_categories,employee,accounting_period,payment_term", - "line_items,tracking_categories,employee,payment_term", - "line_items,tracking_categories,payment_term", - "line_items,tracking_categories,purchase_orders", - "line_items,tracking_categories,purchase_orders,accounting_period", - "line_items,tracking_categories,purchase_orders,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,accounting_period", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,company", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,company,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,employee", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,payment_term", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,company", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,payment_term", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,payment_term", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,payment_term", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,payment_term", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,payment_term", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,payment_term", - "line_items,tracking_categories,purchase_orders,company", - "line_items,tracking_categories,purchase_orders,company,accounting_period", - "line_items,tracking_categories,purchase_orders,company,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,company,employee", - "line_items,tracking_categories,purchase_orders,company,employee,accounting_period", - "line_items,tracking_categories,purchase_orders,company,employee,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,company,employee,payment_term", - "line_items,tracking_categories,purchase_orders,company,payment_term", - "line_items,tracking_categories,purchase_orders,contact", - "line_items,tracking_categories,purchase_orders,contact,accounting_period", - "line_items,tracking_categories,purchase_orders,contact,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,contact,company", - "line_items,tracking_categories,purchase_orders,contact,company,accounting_period", - "line_items,tracking_categories,purchase_orders,contact,company,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,contact,company,employee", - "line_items,tracking_categories,purchase_orders,contact,company,employee,accounting_period", - "line_items,tracking_categories,purchase_orders,contact,company,employee,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,contact,company,employee,payment_term", - "line_items,tracking_categories,purchase_orders,contact,company,payment_term", - "line_items,tracking_categories,purchase_orders,contact,employee", - "line_items,tracking_categories,purchase_orders,contact,employee,accounting_period", - "line_items,tracking_categories,purchase_orders,contact,employee,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,contact,employee,payment_term", - "line_items,tracking_categories,purchase_orders,contact,payment_term", - "line_items,tracking_categories,purchase_orders,employee", - "line_items,tracking_categories,purchase_orders,employee,accounting_period", - "line_items,tracking_categories,purchase_orders,employee,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,employee,payment_term", - "line_items,tracking_categories,purchase_orders,payment_term", - "payment_term", - "payments", - "payments,accounting_period", - "payments,accounting_period,payment_term", - "payments,applied_credit_notes", - "payments,applied_credit_notes,accounting_period", - "payments,applied_credit_notes,accounting_period,payment_term", - "payments,applied_credit_notes,applied_vendor_credits", - "payments,applied_credit_notes,applied_vendor_credits,accounting_period", - "payments,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "payments,applied_credit_notes,applied_vendor_credits,company", - "payments,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "payments,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "payments,applied_credit_notes,applied_vendor_credits,company,employee", - "payments,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "payments,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "payments,applied_credit_notes,applied_vendor_credits,company,payment_term", - "payments,applied_credit_notes,applied_vendor_credits,contact", - "payments,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "payments,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,applied_credit_notes,applied_vendor_credits,contact,company", - "payments,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "payments,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "payments,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "payments,applied_credit_notes,applied_vendor_credits,contact,employee", - "payments,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "payments,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "payments,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "payments,applied_credit_notes,applied_vendor_credits,employee", - "payments,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "payments,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "payments,applied_credit_notes,applied_vendor_credits,payment_term", - "payments,applied_credit_notes,company", - "payments,applied_credit_notes,company,accounting_period", - "payments,applied_credit_notes,company,accounting_period,payment_term", - "payments,applied_credit_notes,company,employee", - "payments,applied_credit_notes,company,employee,accounting_period", - "payments,applied_credit_notes,company,employee,accounting_period,payment_term", - "payments,applied_credit_notes,company,employee,payment_term", - "payments,applied_credit_notes,company,payment_term", - "payments,applied_credit_notes,contact", - "payments,applied_credit_notes,contact,accounting_period", - "payments,applied_credit_notes,contact,accounting_period,payment_term", - "payments,applied_credit_notes,contact,company", - "payments,applied_credit_notes,contact,company,accounting_period", - "payments,applied_credit_notes,contact,company,accounting_period,payment_term", - "payments,applied_credit_notes,contact,company,employee", - "payments,applied_credit_notes,contact,company,employee,accounting_period", - "payments,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "payments,applied_credit_notes,contact,company,employee,payment_term", - "payments,applied_credit_notes,contact,company,payment_term", - "payments,applied_credit_notes,contact,employee", - "payments,applied_credit_notes,contact,employee,accounting_period", - "payments,applied_credit_notes,contact,employee,accounting_period,payment_term", - "payments,applied_credit_notes,contact,employee,payment_term", - "payments,applied_credit_notes,contact,payment_term", - "payments,applied_credit_notes,employee", - "payments,applied_credit_notes,employee,accounting_period", - "payments,applied_credit_notes,employee,accounting_period,payment_term", - "payments,applied_credit_notes,employee,payment_term", - "payments,applied_credit_notes,payment_term", - "payments,applied_payments", - "payments,applied_payments,accounting_period", - "payments,applied_payments,accounting_period,payment_term", - "payments,applied_payments,applied_credit_notes", - "payments,applied_payments,applied_credit_notes,accounting_period", - "payments,applied_payments,applied_credit_notes,accounting_period,payment_term", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,accounting_period", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,company", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,company,employee", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,company,payment_term", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,company", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,employee", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,employee", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,payment_term", - "payments,applied_payments,applied_credit_notes,company", - "payments,applied_payments,applied_credit_notes,company,accounting_period", - "payments,applied_payments,applied_credit_notes,company,accounting_period,payment_term", - "payments,applied_payments,applied_credit_notes,company,employee", - "payments,applied_payments,applied_credit_notes,company,employee,accounting_period", - "payments,applied_payments,applied_credit_notes,company,employee,accounting_period,payment_term", - "payments,applied_payments,applied_credit_notes,company,employee,payment_term", - "payments,applied_payments,applied_credit_notes,company,payment_term", - "payments,applied_payments,applied_credit_notes,contact", - "payments,applied_payments,applied_credit_notes,contact,accounting_period", - "payments,applied_payments,applied_credit_notes,contact,accounting_period,payment_term", - "payments,applied_payments,applied_credit_notes,contact,company", - "payments,applied_payments,applied_credit_notes,contact,company,accounting_period", - "payments,applied_payments,applied_credit_notes,contact,company,accounting_period,payment_term", - "payments,applied_payments,applied_credit_notes,contact,company,employee", - "payments,applied_payments,applied_credit_notes,contact,company,employee,accounting_period", - "payments,applied_payments,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,applied_credit_notes,contact,company,employee,payment_term", - "payments,applied_payments,applied_credit_notes,contact,company,payment_term", - "payments,applied_payments,applied_credit_notes,contact,employee", - "payments,applied_payments,applied_credit_notes,contact,employee,accounting_period", - "payments,applied_payments,applied_credit_notes,contact,employee,accounting_period,payment_term", - "payments,applied_payments,applied_credit_notes,contact,employee,payment_term", - "payments,applied_payments,applied_credit_notes,contact,payment_term", - "payments,applied_payments,applied_credit_notes,employee", - "payments,applied_payments,applied_credit_notes,employee,accounting_period", - "payments,applied_payments,applied_credit_notes,employee,accounting_period,payment_term", - "payments,applied_payments,applied_credit_notes,employee,payment_term", - "payments,applied_payments,applied_credit_notes,payment_term", - "payments,applied_payments,applied_vendor_credits", - "payments,applied_payments,applied_vendor_credits,accounting_period", - "payments,applied_payments,applied_vendor_credits,accounting_period,payment_term", - "payments,applied_payments,applied_vendor_credits,company", - "payments,applied_payments,applied_vendor_credits,company,accounting_period", - "payments,applied_payments,applied_vendor_credits,company,accounting_period,payment_term", - "payments,applied_payments,applied_vendor_credits,company,employee", - "payments,applied_payments,applied_vendor_credits,company,employee,accounting_period", - "payments,applied_payments,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,applied_payments,applied_vendor_credits,company,employee,payment_term", - "payments,applied_payments,applied_vendor_credits,company,payment_term", - "payments,applied_payments,applied_vendor_credits,contact", - "payments,applied_payments,applied_vendor_credits,contact,accounting_period", - "payments,applied_payments,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,applied_payments,applied_vendor_credits,contact,company", - "payments,applied_payments,applied_vendor_credits,contact,company,accounting_period", - "payments,applied_payments,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,applied_payments,applied_vendor_credits,contact,company,employee", - "payments,applied_payments,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,applied_payments,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,applied_vendor_credits,contact,company,employee,payment_term", - "payments,applied_payments,applied_vendor_credits,contact,company,payment_term", - "payments,applied_payments,applied_vendor_credits,contact,employee", - "payments,applied_payments,applied_vendor_credits,contact,employee,accounting_period", - "payments,applied_payments,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,applied_payments,applied_vendor_credits,contact,employee,payment_term", - "payments,applied_payments,applied_vendor_credits,contact,payment_term", - "payments,applied_payments,applied_vendor_credits,employee", - "payments,applied_payments,applied_vendor_credits,employee,accounting_period", - "payments,applied_payments,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,applied_payments,applied_vendor_credits,employee,payment_term", - "payments,applied_payments,applied_vendor_credits,payment_term", - "payments,applied_payments,company", - "payments,applied_payments,company,accounting_period", - "payments,applied_payments,company,accounting_period,payment_term", - "payments,applied_payments,company,employee", - "payments,applied_payments,company,employee,accounting_period", - "payments,applied_payments,company,employee,accounting_period,payment_term", - "payments,applied_payments,company,employee,payment_term", - "payments,applied_payments,company,payment_term", - "payments,applied_payments,contact", - "payments,applied_payments,contact,accounting_period", - "payments,applied_payments,contact,accounting_period,payment_term", - "payments,applied_payments,contact,company", - "payments,applied_payments,contact,company,accounting_period", - "payments,applied_payments,contact,company,accounting_period,payment_term", - "payments,applied_payments,contact,company,employee", - "payments,applied_payments,contact,company,employee,accounting_period", - "payments,applied_payments,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,contact,company,employee,payment_term", - "payments,applied_payments,contact,company,payment_term", - "payments,applied_payments,contact,employee", - "payments,applied_payments,contact,employee,accounting_period", - "payments,applied_payments,contact,employee,accounting_period,payment_term", - "payments,applied_payments,contact,employee,payment_term", - "payments,applied_payments,contact,payment_term", - "payments,applied_payments,employee", - "payments,applied_payments,employee,accounting_period", - "payments,applied_payments,employee,accounting_period,payment_term", - "payments,applied_payments,employee,payment_term", - "payments,applied_payments,line_items", - "payments,applied_payments,line_items,accounting_period", - "payments,applied_payments,line_items,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_credit_notes", - "payments,applied_payments,line_items,applied_credit_notes,accounting_period", - "payments,applied_payments,line_items,applied_credit_notes,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,accounting_period", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,employee", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,company", - "payments,applied_payments,line_items,applied_credit_notes,company,accounting_period", - "payments,applied_payments,line_items,applied_credit_notes,company,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,company,employee", - "payments,applied_payments,line_items,applied_credit_notes,company,employee,accounting_period", - "payments,applied_payments,line_items,applied_credit_notes,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,company,employee,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,company,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,contact", - "payments,applied_payments,line_items,applied_credit_notes,contact,accounting_period", - "payments,applied_payments,line_items,applied_credit_notes,contact,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,contact,company", - "payments,applied_payments,line_items,applied_credit_notes,contact,company,accounting_period", - "payments,applied_payments,line_items,applied_credit_notes,contact,company,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,contact,company,employee", - "payments,applied_payments,line_items,applied_credit_notes,contact,company,employee,accounting_period", - "payments,applied_payments,line_items,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,contact,company,employee,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,contact,company,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,contact,employee", - "payments,applied_payments,line_items,applied_credit_notes,contact,employee,accounting_period", - "payments,applied_payments,line_items,applied_credit_notes,contact,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,contact,employee,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,contact,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,employee", - "payments,applied_payments,line_items,applied_credit_notes,employee,accounting_period", - "payments,applied_payments,line_items,applied_credit_notes,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,employee,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,payment_term", - "payments,applied_payments,line_items,applied_vendor_credits", - "payments,applied_payments,line_items,applied_vendor_credits,accounting_period", - "payments,applied_payments,line_items,applied_vendor_credits,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_vendor_credits,company", - "payments,applied_payments,line_items,applied_vendor_credits,company,accounting_period", - "payments,applied_payments,line_items,applied_vendor_credits,company,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_vendor_credits,company,employee", - "payments,applied_payments,line_items,applied_vendor_credits,company,employee,accounting_period", - "payments,applied_payments,line_items,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_vendor_credits,company,employee,payment_term", - "payments,applied_payments,line_items,applied_vendor_credits,company,payment_term", - "payments,applied_payments,line_items,applied_vendor_credits,contact", - "payments,applied_payments,line_items,applied_vendor_credits,contact,accounting_period", - "payments,applied_payments,line_items,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_vendor_credits,contact,company", - "payments,applied_payments,line_items,applied_vendor_credits,contact,company,accounting_period", - "payments,applied_payments,line_items,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_vendor_credits,contact,company,employee", - "payments,applied_payments,line_items,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,applied_payments,line_items,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_vendor_credits,contact,company,employee,payment_term", - "payments,applied_payments,line_items,applied_vendor_credits,contact,company,payment_term", - "payments,applied_payments,line_items,applied_vendor_credits,contact,employee", - "payments,applied_payments,line_items,applied_vendor_credits,contact,employee,accounting_period", - "payments,applied_payments,line_items,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_vendor_credits,contact,employee,payment_term", - "payments,applied_payments,line_items,applied_vendor_credits,contact,payment_term", - "payments,applied_payments,line_items,applied_vendor_credits,employee", - "payments,applied_payments,line_items,applied_vendor_credits,employee,accounting_period", - "payments,applied_payments,line_items,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_vendor_credits,employee,payment_term", - "payments,applied_payments,line_items,applied_vendor_credits,payment_term", - "payments,applied_payments,line_items,company", - "payments,applied_payments,line_items,company,accounting_period", - "payments,applied_payments,line_items,company,accounting_period,payment_term", - "payments,applied_payments,line_items,company,employee", - "payments,applied_payments,line_items,company,employee,accounting_period", - "payments,applied_payments,line_items,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,company,employee,payment_term", - "payments,applied_payments,line_items,company,payment_term", - "payments,applied_payments,line_items,contact", - "payments,applied_payments,line_items,contact,accounting_period", - "payments,applied_payments,line_items,contact,accounting_period,payment_term", - "payments,applied_payments,line_items,contact,company", - "payments,applied_payments,line_items,contact,company,accounting_period", - "payments,applied_payments,line_items,contact,company,accounting_period,payment_term", - "payments,applied_payments,line_items,contact,company,employee", - "payments,applied_payments,line_items,contact,company,employee,accounting_period", - "payments,applied_payments,line_items,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,contact,company,employee,payment_term", - "payments,applied_payments,line_items,contact,company,payment_term", - "payments,applied_payments,line_items,contact,employee", - "payments,applied_payments,line_items,contact,employee,accounting_period", - "payments,applied_payments,line_items,contact,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,contact,employee,payment_term", - "payments,applied_payments,line_items,contact,payment_term", - "payments,applied_payments,line_items,employee", - "payments,applied_payments,line_items,employee,accounting_period", - "payments,applied_payments,line_items,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,employee,payment_term", - "payments,applied_payments,line_items,payment_term", - "payments,applied_payments,line_items,purchase_orders", - "payments,applied_payments,line_items,purchase_orders,accounting_period", - "payments,applied_payments,line_items,purchase_orders,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,accounting_period", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,company", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,company,accounting_period", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,company,employee", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,company,employee,accounting_period", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,company,employee,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,company,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,accounting_period", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,accounting_period", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,employee", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,employee,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,employee", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,employee,accounting_period", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,employee,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,accounting_period", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,company", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,company,accounting_period", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,company,employee", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,company,employee,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,company,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,accounting_period", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,employee", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,employee", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,employee,accounting_period", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,employee,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,payment_term", - "payments,applied_payments,line_items,purchase_orders,company", - "payments,applied_payments,line_items,purchase_orders,company,accounting_period", - "payments,applied_payments,line_items,purchase_orders,company,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,company,employee", - "payments,applied_payments,line_items,purchase_orders,company,employee,accounting_period", - "payments,applied_payments,line_items,purchase_orders,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,company,employee,payment_term", - "payments,applied_payments,line_items,purchase_orders,company,payment_term", - "payments,applied_payments,line_items,purchase_orders,contact", - "payments,applied_payments,line_items,purchase_orders,contact,accounting_period", - "payments,applied_payments,line_items,purchase_orders,contact,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,contact,company", - "payments,applied_payments,line_items,purchase_orders,contact,company,accounting_period", - "payments,applied_payments,line_items,purchase_orders,contact,company,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,contact,company,employee", - "payments,applied_payments,line_items,purchase_orders,contact,company,employee,accounting_period", - "payments,applied_payments,line_items,purchase_orders,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,contact,company,employee,payment_term", - "payments,applied_payments,line_items,purchase_orders,contact,company,payment_term", - "payments,applied_payments,line_items,purchase_orders,contact,employee", - "payments,applied_payments,line_items,purchase_orders,contact,employee,accounting_period", - "payments,applied_payments,line_items,purchase_orders,contact,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,contact,employee,payment_term", - "payments,applied_payments,line_items,purchase_orders,contact,payment_term", - "payments,applied_payments,line_items,purchase_orders,employee", - "payments,applied_payments,line_items,purchase_orders,employee,accounting_period", - "payments,applied_payments,line_items,purchase_orders,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,employee,payment_term", - "payments,applied_payments,line_items,purchase_orders,payment_term", - "payments,applied_payments,line_items,tracking_categories", - "payments,applied_payments,line_items,tracking_categories,accounting_period", - "payments,applied_payments,line_items,tracking_categories,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,accounting_period", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,company", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,company,accounting_period", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,company,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,company,employee", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,company,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,company,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,company,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,accounting_period", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,accounting_period", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,employee", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,employee", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,accounting_period", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,company", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,company,accounting_period", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,company,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,company,employee", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,company,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,company,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,company,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,accounting_period", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,accounting_period", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,employee", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,employee", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,payment_term", - "payments,applied_payments,line_items,tracking_categories,company", - "payments,applied_payments,line_items,tracking_categories,company,accounting_period", - "payments,applied_payments,line_items,tracking_categories,company,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,company,employee", - "payments,applied_payments,line_items,tracking_categories,company,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,company,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,company,payment_term", - "payments,applied_payments,line_items,tracking_categories,contact", - "payments,applied_payments,line_items,tracking_categories,contact,accounting_period", - "payments,applied_payments,line_items,tracking_categories,contact,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,contact,company", - "payments,applied_payments,line_items,tracking_categories,contact,company,accounting_period", - "payments,applied_payments,line_items,tracking_categories,contact,company,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,contact,company,employee", - "payments,applied_payments,line_items,tracking_categories,contact,company,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,contact,company,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,contact,company,payment_term", - "payments,applied_payments,line_items,tracking_categories,contact,employee", - "payments,applied_payments,line_items,tracking_categories,contact,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,contact,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,contact,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,contact,payment_term", - "payments,applied_payments,line_items,tracking_categories,employee", - "payments,applied_payments,line_items,tracking_categories,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,company", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,company,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,company,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,company,employee", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,company,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,company,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,company,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,company", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,company,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,company,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,company,employee", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,company,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,company,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,company,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,employee", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,employee", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,payment_term", - "payments,applied_payments,payment_term", - "payments,applied_payments,purchase_orders", - "payments,applied_payments,purchase_orders,accounting_period", - "payments,applied_payments,purchase_orders,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes", - "payments,applied_payments,purchase_orders,applied_credit_notes,accounting_period", - "payments,applied_payments,purchase_orders,applied_credit_notes,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,company", - "payments,applied_payments,purchase_orders,applied_credit_notes,company,accounting_period", - "payments,applied_payments,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,company,employee", - "payments,applied_payments,purchase_orders,applied_credit_notes,company,employee,accounting_period", - "payments,applied_payments,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,company,employee,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,company,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,contact", - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,accounting_period", - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,company", - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,company,accounting_period", - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,company,employee", - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,company,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,employee", - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,employee,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,employee", - "payments,applied_payments,purchase_orders,applied_credit_notes,employee,accounting_period", - "payments,applied_payments,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,employee,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,payment_term", - "payments,applied_payments,purchase_orders,applied_vendor_credits", - "payments,applied_payments,purchase_orders,applied_vendor_credits,accounting_period", - "payments,applied_payments,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_vendor_credits,company", - "payments,applied_payments,purchase_orders,applied_vendor_credits,company,accounting_period", - "payments,applied_payments,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_vendor_credits,company,employee", - "payments,applied_payments,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - "payments,applied_payments,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_vendor_credits,company,employee,payment_term", - "payments,applied_payments,purchase_orders,applied_vendor_credits,company,payment_term", - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact", - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,accounting_period", - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,company", - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,company,employee", - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,company,payment_term", - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,employee", - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,payment_term", - "payments,applied_payments,purchase_orders,applied_vendor_credits,employee", - "payments,applied_payments,purchase_orders,applied_vendor_credits,employee,accounting_period", - "payments,applied_payments,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_vendor_credits,employee,payment_term", - "payments,applied_payments,purchase_orders,applied_vendor_credits,payment_term", - "payments,applied_payments,purchase_orders,company", - "payments,applied_payments,purchase_orders,company,accounting_period", - "payments,applied_payments,purchase_orders,company,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,company,employee", - "payments,applied_payments,purchase_orders,company,employee,accounting_period", - "payments,applied_payments,purchase_orders,company,employee,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,company,employee,payment_term", - "payments,applied_payments,purchase_orders,company,payment_term", - "payments,applied_payments,purchase_orders,contact", - "payments,applied_payments,purchase_orders,contact,accounting_period", - "payments,applied_payments,purchase_orders,contact,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,contact,company", - "payments,applied_payments,purchase_orders,contact,company,accounting_period", - "payments,applied_payments,purchase_orders,contact,company,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,contact,company,employee", - "payments,applied_payments,purchase_orders,contact,company,employee,accounting_period", - "payments,applied_payments,purchase_orders,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,contact,company,employee,payment_term", - "payments,applied_payments,purchase_orders,contact,company,payment_term", - "payments,applied_payments,purchase_orders,contact,employee", - "payments,applied_payments,purchase_orders,contact,employee,accounting_period", - "payments,applied_payments,purchase_orders,contact,employee,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,contact,employee,payment_term", - "payments,applied_payments,purchase_orders,contact,payment_term", - "payments,applied_payments,purchase_orders,employee", - "payments,applied_payments,purchase_orders,employee,accounting_period", - "payments,applied_payments,purchase_orders,employee,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,employee,payment_term", - "payments,applied_payments,purchase_orders,payment_term", - "payments,applied_payments,tracking_categories", - "payments,applied_payments,tracking_categories,accounting_period", - "payments,applied_payments,tracking_categories,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes", - "payments,applied_payments,tracking_categories,applied_credit_notes,accounting_period", - "payments,applied_payments,tracking_categories,applied_credit_notes,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,company", - "payments,applied_payments,tracking_categories,applied_credit_notes,company,accounting_period", - "payments,applied_payments,tracking_categories,applied_credit_notes,company,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,company,employee", - "payments,applied_payments,tracking_categories,applied_credit_notes,company,employee,accounting_period", - "payments,applied_payments,tracking_categories,applied_credit_notes,company,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,company,employee,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,company,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,contact", - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,accounting_period", - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,company", - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,company,accounting_period", - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,company,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,company,employee", - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period", - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,company,employee,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,company,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,employee", - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,employee,accounting_period", - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,employee,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,employee", - "payments,applied_payments,tracking_categories,applied_credit_notes,employee,accounting_period", - "payments,applied_payments,tracking_categories,applied_credit_notes,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,employee,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,payment_term", - "payments,applied_payments,tracking_categories,applied_vendor_credits", - "payments,applied_payments,tracking_categories,applied_vendor_credits,accounting_period", - "payments,applied_payments,tracking_categories,applied_vendor_credits,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_vendor_credits,company", - "payments,applied_payments,tracking_categories,applied_vendor_credits,company,accounting_period", - "payments,applied_payments,tracking_categories,applied_vendor_credits,company,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_vendor_credits,company,employee", - "payments,applied_payments,tracking_categories,applied_vendor_credits,company,employee,accounting_period", - "payments,applied_payments,tracking_categories,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_vendor_credits,company,employee,payment_term", - "payments,applied_payments,tracking_categories,applied_vendor_credits,company,payment_term", - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact", - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,accounting_period", - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,company", - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,company,accounting_period", - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,company,employee", - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,company,employee,payment_term", - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,company,payment_term", - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,employee", - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,employee,accounting_period", - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,employee,payment_term", - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,payment_term", - "payments,applied_payments,tracking_categories,applied_vendor_credits,employee", - "payments,applied_payments,tracking_categories,applied_vendor_credits,employee,accounting_period", - "payments,applied_payments,tracking_categories,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_vendor_credits,employee,payment_term", - "payments,applied_payments,tracking_categories,applied_vendor_credits,payment_term", - "payments,applied_payments,tracking_categories,company", - "payments,applied_payments,tracking_categories,company,accounting_period", - "payments,applied_payments,tracking_categories,company,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,company,employee", - "payments,applied_payments,tracking_categories,company,employee,accounting_period", - "payments,applied_payments,tracking_categories,company,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,company,employee,payment_term", - "payments,applied_payments,tracking_categories,company,payment_term", - "payments,applied_payments,tracking_categories,contact", - "payments,applied_payments,tracking_categories,contact,accounting_period", - "payments,applied_payments,tracking_categories,contact,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,contact,company", - "payments,applied_payments,tracking_categories,contact,company,accounting_period", - "payments,applied_payments,tracking_categories,contact,company,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,contact,company,employee", - "payments,applied_payments,tracking_categories,contact,company,employee,accounting_period", - "payments,applied_payments,tracking_categories,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,contact,company,employee,payment_term", - "payments,applied_payments,tracking_categories,contact,company,payment_term", - "payments,applied_payments,tracking_categories,contact,employee", - "payments,applied_payments,tracking_categories,contact,employee,accounting_period", - "payments,applied_payments,tracking_categories,contact,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,contact,employee,payment_term", - "payments,applied_payments,tracking_categories,contact,payment_term", - "payments,applied_payments,tracking_categories,employee", - "payments,applied_payments,tracking_categories,employee,accounting_period", - "payments,applied_payments,tracking_categories,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,employee,payment_term", - "payments,applied_payments,tracking_categories,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders", - "payments,applied_payments,tracking_categories,purchase_orders,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,employee", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,employee,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,employee", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,company", - "payments,applied_payments,tracking_categories,purchase_orders,company,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,company,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,company,employee", - "payments,applied_payments,tracking_categories,purchase_orders,company,employee,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,company,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,company,employee,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,company,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,contact", - "payments,applied_payments,tracking_categories,purchase_orders,contact,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,contact,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,contact,company", - "payments,applied_payments,tracking_categories,purchase_orders,contact,company,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,contact,company,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,contact,company,employee", - "payments,applied_payments,tracking_categories,purchase_orders,contact,company,employee,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,contact,company,employee,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,contact,company,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,contact,employee", - "payments,applied_payments,tracking_categories,purchase_orders,contact,employee,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,contact,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,contact,employee,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,contact,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,employee", - "payments,applied_payments,tracking_categories,purchase_orders,employee,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,employee,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,payment_term", - "payments,applied_vendor_credits", - "payments,applied_vendor_credits,accounting_period", - "payments,applied_vendor_credits,accounting_period,payment_term", - "payments,applied_vendor_credits,company", - "payments,applied_vendor_credits,company,accounting_period", - "payments,applied_vendor_credits,company,accounting_period,payment_term", - "payments,applied_vendor_credits,company,employee", - "payments,applied_vendor_credits,company,employee,accounting_period", - "payments,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,applied_vendor_credits,company,employee,payment_term", - "payments,applied_vendor_credits,company,payment_term", - "payments,applied_vendor_credits,contact", - "payments,applied_vendor_credits,contact,accounting_period", - "payments,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,applied_vendor_credits,contact,company", - "payments,applied_vendor_credits,contact,company,accounting_period", - "payments,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,applied_vendor_credits,contact,company,employee", - "payments,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,applied_vendor_credits,contact,company,employee,payment_term", - "payments,applied_vendor_credits,contact,company,payment_term", - "payments,applied_vendor_credits,contact,employee", - "payments,applied_vendor_credits,contact,employee,accounting_period", - "payments,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,applied_vendor_credits,contact,employee,payment_term", - "payments,applied_vendor_credits,contact,payment_term", - "payments,applied_vendor_credits,employee", - "payments,applied_vendor_credits,employee,accounting_period", - "payments,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,applied_vendor_credits,employee,payment_term", - "payments,applied_vendor_credits,payment_term", - "payments,company", - "payments,company,accounting_period", - "payments,company,accounting_period,payment_term", - "payments,company,employee", - "payments,company,employee,accounting_period", - "payments,company,employee,accounting_period,payment_term", - "payments,company,employee,payment_term", - "payments,company,payment_term", - "payments,contact", - "payments,contact,accounting_period", - "payments,contact,accounting_period,payment_term", - "payments,contact,company", - "payments,contact,company,accounting_period", - "payments,contact,company,accounting_period,payment_term", - "payments,contact,company,employee", - "payments,contact,company,employee,accounting_period", - "payments,contact,company,employee,accounting_period,payment_term", - "payments,contact,company,employee,payment_term", - "payments,contact,company,payment_term", - "payments,contact,employee", - "payments,contact,employee,accounting_period", - "payments,contact,employee,accounting_period,payment_term", - "payments,contact,employee,payment_term", - "payments,contact,payment_term", - "payments,employee", - "payments,employee,accounting_period", - "payments,employee,accounting_period,payment_term", - "payments,employee,payment_term", - "payments,line_items", - "payments,line_items,accounting_period", - "payments,line_items,accounting_period,payment_term", - "payments,line_items,applied_credit_notes", - "payments,line_items,applied_credit_notes,accounting_period", - "payments,line_items,applied_credit_notes,accounting_period,payment_term", - "payments,line_items,applied_credit_notes,applied_vendor_credits", - "payments,line_items,applied_credit_notes,applied_vendor_credits,accounting_period", - "payments,line_items,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "payments,line_items,applied_credit_notes,applied_vendor_credits,company", - "payments,line_items,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "payments,line_items,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee", - "payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "payments,line_items,applied_credit_notes,applied_vendor_credits,company,payment_term", - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact", - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company", - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee", - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "payments,line_items,applied_credit_notes,applied_vendor_credits,employee", - "payments,line_items,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "payments,line_items,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,line_items,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "payments,line_items,applied_credit_notes,applied_vendor_credits,payment_term", - "payments,line_items,applied_credit_notes,company", - "payments,line_items,applied_credit_notes,company,accounting_period", - "payments,line_items,applied_credit_notes,company,accounting_period,payment_term", - "payments,line_items,applied_credit_notes,company,employee", - "payments,line_items,applied_credit_notes,company,employee,accounting_period", - "payments,line_items,applied_credit_notes,company,employee,accounting_period,payment_term", - "payments,line_items,applied_credit_notes,company,employee,payment_term", - "payments,line_items,applied_credit_notes,company,payment_term", - "payments,line_items,applied_credit_notes,contact", - "payments,line_items,applied_credit_notes,contact,accounting_period", - "payments,line_items,applied_credit_notes,contact,accounting_period,payment_term", - "payments,line_items,applied_credit_notes,contact,company", - "payments,line_items,applied_credit_notes,contact,company,accounting_period", - "payments,line_items,applied_credit_notes,contact,company,accounting_period,payment_term", - "payments,line_items,applied_credit_notes,contact,company,employee", - "payments,line_items,applied_credit_notes,contact,company,employee,accounting_period", - "payments,line_items,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "payments,line_items,applied_credit_notes,contact,company,employee,payment_term", - "payments,line_items,applied_credit_notes,contact,company,payment_term", - "payments,line_items,applied_credit_notes,contact,employee", - "payments,line_items,applied_credit_notes,contact,employee,accounting_period", - "payments,line_items,applied_credit_notes,contact,employee,accounting_period,payment_term", - "payments,line_items,applied_credit_notes,contact,employee,payment_term", - "payments,line_items,applied_credit_notes,contact,payment_term", - "payments,line_items,applied_credit_notes,employee", - "payments,line_items,applied_credit_notes,employee,accounting_period", - "payments,line_items,applied_credit_notes,employee,accounting_period,payment_term", - "payments,line_items,applied_credit_notes,employee,payment_term", - "payments,line_items,applied_credit_notes,payment_term", - "payments,line_items,applied_vendor_credits", - "payments,line_items,applied_vendor_credits,accounting_period", - "payments,line_items,applied_vendor_credits,accounting_period,payment_term", - "payments,line_items,applied_vendor_credits,company", - "payments,line_items,applied_vendor_credits,company,accounting_period", - "payments,line_items,applied_vendor_credits,company,accounting_period,payment_term", - "payments,line_items,applied_vendor_credits,company,employee", - "payments,line_items,applied_vendor_credits,company,employee,accounting_period", - "payments,line_items,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,line_items,applied_vendor_credits,company,employee,payment_term", - "payments,line_items,applied_vendor_credits,company,payment_term", - "payments,line_items,applied_vendor_credits,contact", - "payments,line_items,applied_vendor_credits,contact,accounting_period", - "payments,line_items,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,line_items,applied_vendor_credits,contact,company", - "payments,line_items,applied_vendor_credits,contact,company,accounting_period", - "payments,line_items,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,line_items,applied_vendor_credits,contact,company,employee", - "payments,line_items,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,line_items,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,line_items,applied_vendor_credits,contact,company,employee,payment_term", - "payments,line_items,applied_vendor_credits,contact,company,payment_term", - "payments,line_items,applied_vendor_credits,contact,employee", - "payments,line_items,applied_vendor_credits,contact,employee,accounting_period", - "payments,line_items,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,line_items,applied_vendor_credits,contact,employee,payment_term", - "payments,line_items,applied_vendor_credits,contact,payment_term", - "payments,line_items,applied_vendor_credits,employee", - "payments,line_items,applied_vendor_credits,employee,accounting_period", - "payments,line_items,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,line_items,applied_vendor_credits,employee,payment_term", - "payments,line_items,applied_vendor_credits,payment_term", - "payments,line_items,company", - "payments,line_items,company,accounting_period", - "payments,line_items,company,accounting_period,payment_term", - "payments,line_items,company,employee", - "payments,line_items,company,employee,accounting_period", - "payments,line_items,company,employee,accounting_period,payment_term", - "payments,line_items,company,employee,payment_term", - "payments,line_items,company,payment_term", - "payments,line_items,contact", - "payments,line_items,contact,accounting_period", - "payments,line_items,contact,accounting_period,payment_term", - "payments,line_items,contact,company", - "payments,line_items,contact,company,accounting_period", - "payments,line_items,contact,company,accounting_period,payment_term", - "payments,line_items,contact,company,employee", - "payments,line_items,contact,company,employee,accounting_period", - "payments,line_items,contact,company,employee,accounting_period,payment_term", - "payments,line_items,contact,company,employee,payment_term", - "payments,line_items,contact,company,payment_term", - "payments,line_items,contact,employee", - "payments,line_items,contact,employee,accounting_period", - "payments,line_items,contact,employee,accounting_period,payment_term", - "payments,line_items,contact,employee,payment_term", - "payments,line_items,contact,payment_term", - "payments,line_items,employee", - "payments,line_items,employee,accounting_period", - "payments,line_items,employee,accounting_period,payment_term", - "payments,line_items,employee,payment_term", - "payments,line_items,payment_term", - "payments,line_items,purchase_orders", - "payments,line_items,purchase_orders,accounting_period", - "payments,line_items,purchase_orders,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes", - "payments,line_items,purchase_orders,applied_credit_notes,accounting_period", - "payments,line_items,purchase_orders,applied_credit_notes,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,company", - "payments,line_items,purchase_orders,applied_credit_notes,company,accounting_period", - "payments,line_items,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,company,employee", - "payments,line_items,purchase_orders,applied_credit_notes,company,employee,accounting_period", - "payments,line_items,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,company,employee,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,company,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,contact", - "payments,line_items,purchase_orders,applied_credit_notes,contact,accounting_period", - "payments,line_items,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,contact,company", - "payments,line_items,purchase_orders,applied_credit_notes,contact,company,accounting_period", - "payments,line_items,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee", - "payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - "payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,contact,company,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,contact,employee", - "payments,line_items,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - "payments,line_items,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,contact,employee,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,contact,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,employee", - "payments,line_items,purchase_orders,applied_credit_notes,employee,accounting_period", - "payments,line_items,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,employee,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,payment_term", - "payments,line_items,purchase_orders,applied_vendor_credits", - "payments,line_items,purchase_orders,applied_vendor_credits,accounting_period", - "payments,line_items,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_vendor_credits,company", - "payments,line_items,purchase_orders,applied_vendor_credits,company,accounting_period", - "payments,line_items,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_vendor_credits,company,employee", - "payments,line_items,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - "payments,line_items,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_vendor_credits,company,employee,payment_term", - "payments,line_items,purchase_orders,applied_vendor_credits,company,payment_term", - "payments,line_items,purchase_orders,applied_vendor_credits,contact", - "payments,line_items,purchase_orders,applied_vendor_credits,contact,accounting_period", - "payments,line_items,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_vendor_credits,contact,company", - "payments,line_items,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - "payments,line_items,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee", - "payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - "payments,line_items,purchase_orders,applied_vendor_credits,contact,company,payment_term", - "payments,line_items,purchase_orders,applied_vendor_credits,contact,employee", - "payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - "payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - "payments,line_items,purchase_orders,applied_vendor_credits,contact,payment_term", - "payments,line_items,purchase_orders,applied_vendor_credits,employee", - "payments,line_items,purchase_orders,applied_vendor_credits,employee,accounting_period", - "payments,line_items,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_vendor_credits,employee,payment_term", - "payments,line_items,purchase_orders,applied_vendor_credits,payment_term", - "payments,line_items,purchase_orders,company", - "payments,line_items,purchase_orders,company,accounting_period", - "payments,line_items,purchase_orders,company,accounting_period,payment_term", - "payments,line_items,purchase_orders,company,employee", - "payments,line_items,purchase_orders,company,employee,accounting_period", - "payments,line_items,purchase_orders,company,employee,accounting_period,payment_term", - "payments,line_items,purchase_orders,company,employee,payment_term", - "payments,line_items,purchase_orders,company,payment_term", - "payments,line_items,purchase_orders,contact", - "payments,line_items,purchase_orders,contact,accounting_period", - "payments,line_items,purchase_orders,contact,accounting_period,payment_term", - "payments,line_items,purchase_orders,contact,company", - "payments,line_items,purchase_orders,contact,company,accounting_period", - "payments,line_items,purchase_orders,contact,company,accounting_period,payment_term", - "payments,line_items,purchase_orders,contact,company,employee", - "payments,line_items,purchase_orders,contact,company,employee,accounting_period", - "payments,line_items,purchase_orders,contact,company,employee,accounting_period,payment_term", - "payments,line_items,purchase_orders,contact,company,employee,payment_term", - "payments,line_items,purchase_orders,contact,company,payment_term", - "payments,line_items,purchase_orders,contact,employee", - "payments,line_items,purchase_orders,contact,employee,accounting_period", - "payments,line_items,purchase_orders,contact,employee,accounting_period,payment_term", - "payments,line_items,purchase_orders,contact,employee,payment_term", - "payments,line_items,purchase_orders,contact,payment_term", - "payments,line_items,purchase_orders,employee", - "payments,line_items,purchase_orders,employee,accounting_period", - "payments,line_items,purchase_orders,employee,accounting_period,payment_term", - "payments,line_items,purchase_orders,employee,payment_term", - "payments,line_items,purchase_orders,payment_term", - "payments,line_items,tracking_categories", - "payments,line_items,tracking_categories,accounting_period", - "payments,line_items,tracking_categories,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes", - "payments,line_items,tracking_categories,applied_credit_notes,accounting_period", - "payments,line_items,tracking_categories,applied_credit_notes,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,company", - "payments,line_items,tracking_categories,applied_credit_notes,company,accounting_period", - "payments,line_items,tracking_categories,applied_credit_notes,company,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,company,employee", - "payments,line_items,tracking_categories,applied_credit_notes,company,employee,accounting_period", - "payments,line_items,tracking_categories,applied_credit_notes,company,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,company,employee,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,company,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,contact", - "payments,line_items,tracking_categories,applied_credit_notes,contact,accounting_period", - "payments,line_items,tracking_categories,applied_credit_notes,contact,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,contact,company", - "payments,line_items,tracking_categories,applied_credit_notes,contact,company,accounting_period", - "payments,line_items,tracking_categories,applied_credit_notes,contact,company,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee", - "payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period", - "payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,contact,company,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,contact,employee", - "payments,line_items,tracking_categories,applied_credit_notes,contact,employee,accounting_period", - "payments,line_items,tracking_categories,applied_credit_notes,contact,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,contact,employee,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,contact,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,employee", - "payments,line_items,tracking_categories,applied_credit_notes,employee,accounting_period", - "payments,line_items,tracking_categories,applied_credit_notes,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,employee,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,payment_term", - "payments,line_items,tracking_categories,applied_vendor_credits", - "payments,line_items,tracking_categories,applied_vendor_credits,accounting_period", - "payments,line_items,tracking_categories,applied_vendor_credits,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_vendor_credits,company", - "payments,line_items,tracking_categories,applied_vendor_credits,company,accounting_period", - "payments,line_items,tracking_categories,applied_vendor_credits,company,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_vendor_credits,company,employee", - "payments,line_items,tracking_categories,applied_vendor_credits,company,employee,accounting_period", - "payments,line_items,tracking_categories,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_vendor_credits,company,employee,payment_term", - "payments,line_items,tracking_categories,applied_vendor_credits,company,payment_term", - "payments,line_items,tracking_categories,applied_vendor_credits,contact", - "payments,line_items,tracking_categories,applied_vendor_credits,contact,accounting_period", - "payments,line_items,tracking_categories,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_vendor_credits,contact,company", - "payments,line_items,tracking_categories,applied_vendor_credits,contact,company,accounting_period", - "payments,line_items,tracking_categories,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee", - "payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,payment_term", - "payments,line_items,tracking_categories,applied_vendor_credits,contact,company,payment_term", - "payments,line_items,tracking_categories,applied_vendor_credits,contact,employee", - "payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,accounting_period", - "payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,payment_term", - "payments,line_items,tracking_categories,applied_vendor_credits,contact,payment_term", - "payments,line_items,tracking_categories,applied_vendor_credits,employee", - "payments,line_items,tracking_categories,applied_vendor_credits,employee,accounting_period", - "payments,line_items,tracking_categories,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_vendor_credits,employee,payment_term", - "payments,line_items,tracking_categories,applied_vendor_credits,payment_term", - "payments,line_items,tracking_categories,company", - "payments,line_items,tracking_categories,company,accounting_period", - "payments,line_items,tracking_categories,company,accounting_period,payment_term", - "payments,line_items,tracking_categories,company,employee", - "payments,line_items,tracking_categories,company,employee,accounting_period", - "payments,line_items,tracking_categories,company,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,company,employee,payment_term", - "payments,line_items,tracking_categories,company,payment_term", - "payments,line_items,tracking_categories,contact", - "payments,line_items,tracking_categories,contact,accounting_period", - "payments,line_items,tracking_categories,contact,accounting_period,payment_term", - "payments,line_items,tracking_categories,contact,company", - "payments,line_items,tracking_categories,contact,company,accounting_period", - "payments,line_items,tracking_categories,contact,company,accounting_period,payment_term", - "payments,line_items,tracking_categories,contact,company,employee", - "payments,line_items,tracking_categories,contact,company,employee,accounting_period", - "payments,line_items,tracking_categories,contact,company,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,contact,company,employee,payment_term", - "payments,line_items,tracking_categories,contact,company,payment_term", - "payments,line_items,tracking_categories,contact,employee", - "payments,line_items,tracking_categories,contact,employee,accounting_period", - "payments,line_items,tracking_categories,contact,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,contact,employee,payment_term", - "payments,line_items,tracking_categories,contact,payment_term", - "payments,line_items,tracking_categories,employee", - "payments,line_items,tracking_categories,employee,accounting_period", - "payments,line_items,tracking_categories,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,employee,payment_term", - "payments,line_items,tracking_categories,payment_term", - "payments,line_items,tracking_categories,purchase_orders", - "payments,line_items,tracking_categories,purchase_orders,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,payment_term", - "payments,line_items,tracking_categories,purchase_orders,company", - "payments,line_items,tracking_categories,purchase_orders,company,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,company,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,company,employee", - "payments,line_items,tracking_categories,purchase_orders,company,employee,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,company,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,company,employee,payment_term", - "payments,line_items,tracking_categories,purchase_orders,company,payment_term", - "payments,line_items,tracking_categories,purchase_orders,contact", - "payments,line_items,tracking_categories,purchase_orders,contact,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,contact,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,contact,company", - "payments,line_items,tracking_categories,purchase_orders,contact,company,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,contact,company,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,contact,company,employee", - "payments,line_items,tracking_categories,purchase_orders,contact,company,employee,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,contact,company,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,contact,company,employee,payment_term", - "payments,line_items,tracking_categories,purchase_orders,contact,company,payment_term", - "payments,line_items,tracking_categories,purchase_orders,contact,employee", - "payments,line_items,tracking_categories,purchase_orders,contact,employee,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,contact,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,contact,employee,payment_term", - "payments,line_items,tracking_categories,purchase_orders,contact,payment_term", - "payments,line_items,tracking_categories,purchase_orders,employee", - "payments,line_items,tracking_categories,purchase_orders,employee,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,employee,payment_term", - "payments,line_items,tracking_categories,purchase_orders,payment_term", - "payments,payment_term", - "payments,purchase_orders", - "payments,purchase_orders,accounting_period", - "payments,purchase_orders,accounting_period,payment_term", - "payments,purchase_orders,applied_credit_notes", - "payments,purchase_orders,applied_credit_notes,accounting_period", - "payments,purchase_orders,applied_credit_notes,accounting_period,payment_term", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - "payments,purchase_orders,applied_credit_notes,company", - "payments,purchase_orders,applied_credit_notes,company,accounting_period", - "payments,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - "payments,purchase_orders,applied_credit_notes,company,employee", - "payments,purchase_orders,applied_credit_notes,company,employee,accounting_period", - "payments,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - "payments,purchase_orders,applied_credit_notes,company,employee,payment_term", - "payments,purchase_orders,applied_credit_notes,company,payment_term", - "payments,purchase_orders,applied_credit_notes,contact", - "payments,purchase_orders,applied_credit_notes,contact,accounting_period", - "payments,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - "payments,purchase_orders,applied_credit_notes,contact,company", - "payments,purchase_orders,applied_credit_notes,contact,company,accounting_period", - "payments,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - "payments,purchase_orders,applied_credit_notes,contact,company,employee", - "payments,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - "payments,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "payments,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - "payments,purchase_orders,applied_credit_notes,contact,company,payment_term", - "payments,purchase_orders,applied_credit_notes,contact,employee", - "payments,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - "payments,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - "payments,purchase_orders,applied_credit_notes,contact,employee,payment_term", - "payments,purchase_orders,applied_credit_notes,contact,payment_term", - "payments,purchase_orders,applied_credit_notes,employee", - "payments,purchase_orders,applied_credit_notes,employee,accounting_period", - "payments,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - "payments,purchase_orders,applied_credit_notes,employee,payment_term", - "payments,purchase_orders,applied_credit_notes,payment_term", - "payments,purchase_orders,applied_vendor_credits", - "payments,purchase_orders,applied_vendor_credits,accounting_period", - "payments,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - "payments,purchase_orders,applied_vendor_credits,company", - "payments,purchase_orders,applied_vendor_credits,company,accounting_period", - "payments,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - "payments,purchase_orders,applied_vendor_credits,company,employee", - "payments,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - "payments,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,purchase_orders,applied_vendor_credits,company,employee,payment_term", - "payments,purchase_orders,applied_vendor_credits,company,payment_term", - "payments,purchase_orders,applied_vendor_credits,contact", - "payments,purchase_orders,applied_vendor_credits,contact,accounting_period", - "payments,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,purchase_orders,applied_vendor_credits,contact,company", - "payments,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - "payments,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,purchase_orders,applied_vendor_credits,contact,company,employee", - "payments,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - "payments,purchase_orders,applied_vendor_credits,contact,company,payment_term", - "payments,purchase_orders,applied_vendor_credits,contact,employee", - "payments,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - "payments,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - "payments,purchase_orders,applied_vendor_credits,contact,payment_term", - "payments,purchase_orders,applied_vendor_credits,employee", - "payments,purchase_orders,applied_vendor_credits,employee,accounting_period", - "payments,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,purchase_orders,applied_vendor_credits,employee,payment_term", - "payments,purchase_orders,applied_vendor_credits,payment_term", - "payments,purchase_orders,company", - "payments,purchase_orders,company,accounting_period", - "payments,purchase_orders,company,accounting_period,payment_term", - "payments,purchase_orders,company,employee", - "payments,purchase_orders,company,employee,accounting_period", - "payments,purchase_orders,company,employee,accounting_period,payment_term", - "payments,purchase_orders,company,employee,payment_term", - "payments,purchase_orders,company,payment_term", - "payments,purchase_orders,contact", - "payments,purchase_orders,contact,accounting_period", - "payments,purchase_orders,contact,accounting_period,payment_term", - "payments,purchase_orders,contact,company", - "payments,purchase_orders,contact,company,accounting_period", - "payments,purchase_orders,contact,company,accounting_period,payment_term", - "payments,purchase_orders,contact,company,employee", - "payments,purchase_orders,contact,company,employee,accounting_period", - "payments,purchase_orders,contact,company,employee,accounting_period,payment_term", - "payments,purchase_orders,contact,company,employee,payment_term", - "payments,purchase_orders,contact,company,payment_term", - "payments,purchase_orders,contact,employee", - "payments,purchase_orders,contact,employee,accounting_period", - "payments,purchase_orders,contact,employee,accounting_period,payment_term", - "payments,purchase_orders,contact,employee,payment_term", - "payments,purchase_orders,contact,payment_term", - "payments,purchase_orders,employee", - "payments,purchase_orders,employee,accounting_period", - "payments,purchase_orders,employee,accounting_period,payment_term", - "payments,purchase_orders,employee,payment_term", - "payments,purchase_orders,payment_term", - "payments,tracking_categories", - "payments,tracking_categories,accounting_period", - "payments,tracking_categories,accounting_period,payment_term", - "payments,tracking_categories,applied_credit_notes", - "payments,tracking_categories,applied_credit_notes,accounting_period", - "payments,tracking_categories,applied_credit_notes,accounting_period,payment_term", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,payment_term", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,payment_term", - "payments,tracking_categories,applied_credit_notes,company", - "payments,tracking_categories,applied_credit_notes,company,accounting_period", - "payments,tracking_categories,applied_credit_notes,company,accounting_period,payment_term", - "payments,tracking_categories,applied_credit_notes,company,employee", - "payments,tracking_categories,applied_credit_notes,company,employee,accounting_period", - "payments,tracking_categories,applied_credit_notes,company,employee,accounting_period,payment_term", - "payments,tracking_categories,applied_credit_notes,company,employee,payment_term", - "payments,tracking_categories,applied_credit_notes,company,payment_term", - "payments,tracking_categories,applied_credit_notes,contact", - "payments,tracking_categories,applied_credit_notes,contact,accounting_period", - "payments,tracking_categories,applied_credit_notes,contact,accounting_period,payment_term", - "payments,tracking_categories,applied_credit_notes,contact,company", - "payments,tracking_categories,applied_credit_notes,contact,company,accounting_period", - "payments,tracking_categories,applied_credit_notes,contact,company,accounting_period,payment_term", - "payments,tracking_categories,applied_credit_notes,contact,company,employee", - "payments,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period", - "payments,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "payments,tracking_categories,applied_credit_notes,contact,company,employee,payment_term", - "payments,tracking_categories,applied_credit_notes,contact,company,payment_term", - "payments,tracking_categories,applied_credit_notes,contact,employee", - "payments,tracking_categories,applied_credit_notes,contact,employee,accounting_period", - "payments,tracking_categories,applied_credit_notes,contact,employee,accounting_period,payment_term", - "payments,tracking_categories,applied_credit_notes,contact,employee,payment_term", - "payments,tracking_categories,applied_credit_notes,contact,payment_term", - "payments,tracking_categories,applied_credit_notes,employee", - "payments,tracking_categories,applied_credit_notes,employee,accounting_period", - "payments,tracking_categories,applied_credit_notes,employee,accounting_period,payment_term", - "payments,tracking_categories,applied_credit_notes,employee,payment_term", - "payments,tracking_categories,applied_credit_notes,payment_term", - "payments,tracking_categories,applied_vendor_credits", - "payments,tracking_categories,applied_vendor_credits,accounting_period", - "payments,tracking_categories,applied_vendor_credits,accounting_period,payment_term", - "payments,tracking_categories,applied_vendor_credits,company", - "payments,tracking_categories,applied_vendor_credits,company,accounting_period", - "payments,tracking_categories,applied_vendor_credits,company,accounting_period,payment_term", - "payments,tracking_categories,applied_vendor_credits,company,employee", - "payments,tracking_categories,applied_vendor_credits,company,employee,accounting_period", - "payments,tracking_categories,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,tracking_categories,applied_vendor_credits,company,employee,payment_term", - "payments,tracking_categories,applied_vendor_credits,company,payment_term", - "payments,tracking_categories,applied_vendor_credits,contact", - "payments,tracking_categories,applied_vendor_credits,contact,accounting_period", - "payments,tracking_categories,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,tracking_categories,applied_vendor_credits,contact,company", - "payments,tracking_categories,applied_vendor_credits,contact,company,accounting_period", - "payments,tracking_categories,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,tracking_categories,applied_vendor_credits,contact,company,employee", - "payments,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,tracking_categories,applied_vendor_credits,contact,company,employee,payment_term", - "payments,tracking_categories,applied_vendor_credits,contact,company,payment_term", - "payments,tracking_categories,applied_vendor_credits,contact,employee", - "payments,tracking_categories,applied_vendor_credits,contact,employee,accounting_period", - "payments,tracking_categories,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,tracking_categories,applied_vendor_credits,contact,employee,payment_term", - "payments,tracking_categories,applied_vendor_credits,contact,payment_term", - "payments,tracking_categories,applied_vendor_credits,employee", - "payments,tracking_categories,applied_vendor_credits,employee,accounting_period", - "payments,tracking_categories,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,tracking_categories,applied_vendor_credits,employee,payment_term", - "payments,tracking_categories,applied_vendor_credits,payment_term", - "payments,tracking_categories,company", - "payments,tracking_categories,company,accounting_period", - "payments,tracking_categories,company,accounting_period,payment_term", - "payments,tracking_categories,company,employee", - "payments,tracking_categories,company,employee,accounting_period", - "payments,tracking_categories,company,employee,accounting_period,payment_term", - "payments,tracking_categories,company,employee,payment_term", - "payments,tracking_categories,company,payment_term", - "payments,tracking_categories,contact", - "payments,tracking_categories,contact,accounting_period", - "payments,tracking_categories,contact,accounting_period,payment_term", - "payments,tracking_categories,contact,company", - "payments,tracking_categories,contact,company,accounting_period", - "payments,tracking_categories,contact,company,accounting_period,payment_term", - "payments,tracking_categories,contact,company,employee", - "payments,tracking_categories,contact,company,employee,accounting_period", - "payments,tracking_categories,contact,company,employee,accounting_period,payment_term", - "payments,tracking_categories,contact,company,employee,payment_term", - "payments,tracking_categories,contact,company,payment_term", - "payments,tracking_categories,contact,employee", - "payments,tracking_categories,contact,employee,accounting_period", - "payments,tracking_categories,contact,employee,accounting_period,payment_term", - "payments,tracking_categories,contact,employee,payment_term", - "payments,tracking_categories,contact,payment_term", - "payments,tracking_categories,employee", - "payments,tracking_categories,employee,accounting_period", - "payments,tracking_categories,employee,accounting_period,payment_term", - "payments,tracking_categories,employee,payment_term", - "payments,tracking_categories,payment_term", - "payments,tracking_categories,purchase_orders", - "payments,tracking_categories,purchase_orders,accounting_period", - "payments,tracking_categories,purchase_orders,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes", - "payments,tracking_categories,purchase_orders,applied_credit_notes,accounting_period", - "payments,tracking_categories,purchase_orders,applied_credit_notes,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,company", - "payments,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period", - "payments,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee", - "payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period", - "payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,company,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact", - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period", - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company", - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period", - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee", - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee", - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,employee", - "payments,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period", - "payments,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,employee,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,payment_term", - "payments,tracking_categories,purchase_orders,applied_vendor_credits", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,company", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,payment_term", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,company,payment_term", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,payment_term", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,payment_term", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,employee", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,payment_term", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,payment_term", - "payments,tracking_categories,purchase_orders,company", - "payments,tracking_categories,purchase_orders,company,accounting_period", - "payments,tracking_categories,purchase_orders,company,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,company,employee", - "payments,tracking_categories,purchase_orders,company,employee,accounting_period", - "payments,tracking_categories,purchase_orders,company,employee,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,company,employee,payment_term", - "payments,tracking_categories,purchase_orders,company,payment_term", - "payments,tracking_categories,purchase_orders,contact", - "payments,tracking_categories,purchase_orders,contact,accounting_period", - "payments,tracking_categories,purchase_orders,contact,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,contact,company", - "payments,tracking_categories,purchase_orders,contact,company,accounting_period", - "payments,tracking_categories,purchase_orders,contact,company,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,contact,company,employee", - "payments,tracking_categories,purchase_orders,contact,company,employee,accounting_period", - "payments,tracking_categories,purchase_orders,contact,company,employee,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,contact,company,employee,payment_term", - "payments,tracking_categories,purchase_orders,contact,company,payment_term", - "payments,tracking_categories,purchase_orders,contact,employee", - "payments,tracking_categories,purchase_orders,contact,employee,accounting_period", - "payments,tracking_categories,purchase_orders,contact,employee,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,contact,employee,payment_term", - "payments,tracking_categories,purchase_orders,contact,payment_term", - "payments,tracking_categories,purchase_orders,employee", - "payments,tracking_categories,purchase_orders,employee,accounting_period", - "payments,tracking_categories,purchase_orders,employee,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,employee,payment_term", - "payments,tracking_categories,purchase_orders,payment_term", - "purchase_orders", - "purchase_orders,accounting_period", - "purchase_orders,accounting_period,payment_term", - "purchase_orders,applied_credit_notes", - "purchase_orders,applied_credit_notes,accounting_period", - "purchase_orders,applied_credit_notes,accounting_period,payment_term", - "purchase_orders,applied_credit_notes,applied_vendor_credits", - "purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - "purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "purchase_orders,applied_credit_notes,applied_vendor_credits,company", - "purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - "purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - "purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - "purchase_orders,applied_credit_notes,company", - "purchase_orders,applied_credit_notes,company,accounting_period", - "purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - "purchase_orders,applied_credit_notes,company,employee", - "purchase_orders,applied_credit_notes,company,employee,accounting_period", - "purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - "purchase_orders,applied_credit_notes,company,employee,payment_term", - "purchase_orders,applied_credit_notes,company,payment_term", - "purchase_orders,applied_credit_notes,contact", - "purchase_orders,applied_credit_notes,contact,accounting_period", - "purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - "purchase_orders,applied_credit_notes,contact,company", - "purchase_orders,applied_credit_notes,contact,company,accounting_period", - "purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - "purchase_orders,applied_credit_notes,contact,company,employee", - "purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - "purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - "purchase_orders,applied_credit_notes,contact,company,payment_term", - "purchase_orders,applied_credit_notes,contact,employee", - "purchase_orders,applied_credit_notes,contact,employee,accounting_period", - "purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - "purchase_orders,applied_credit_notes,contact,employee,payment_term", - "purchase_orders,applied_credit_notes,contact,payment_term", - "purchase_orders,applied_credit_notes,employee", - "purchase_orders,applied_credit_notes,employee,accounting_period", - "purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - "purchase_orders,applied_credit_notes,employee,payment_term", - "purchase_orders,applied_credit_notes,payment_term", - "purchase_orders,applied_vendor_credits", - "purchase_orders,applied_vendor_credits,accounting_period", - "purchase_orders,applied_vendor_credits,accounting_period,payment_term", - "purchase_orders,applied_vendor_credits,company", - "purchase_orders,applied_vendor_credits,company,accounting_period", - "purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - "purchase_orders,applied_vendor_credits,company,employee", - "purchase_orders,applied_vendor_credits,company,employee,accounting_period", - "purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - "purchase_orders,applied_vendor_credits,company,employee,payment_term", - "purchase_orders,applied_vendor_credits,company,payment_term", - "purchase_orders,applied_vendor_credits,contact", - "purchase_orders,applied_vendor_credits,contact,accounting_period", - "purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - "purchase_orders,applied_vendor_credits,contact,company", - "purchase_orders,applied_vendor_credits,contact,company,accounting_period", - "purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - "purchase_orders,applied_vendor_credits,contact,company,employee", - "purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - "purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - "purchase_orders,applied_vendor_credits,contact,company,payment_term", - "purchase_orders,applied_vendor_credits,contact,employee", - "purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - "purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "purchase_orders,applied_vendor_credits,contact,employee,payment_term", - "purchase_orders,applied_vendor_credits,contact,payment_term", - "purchase_orders,applied_vendor_credits,employee", - "purchase_orders,applied_vendor_credits,employee,accounting_period", - "purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - "purchase_orders,applied_vendor_credits,employee,payment_term", - "purchase_orders,applied_vendor_credits,payment_term", - "purchase_orders,company", - "purchase_orders,company,accounting_period", - "purchase_orders,company,accounting_period,payment_term", - "purchase_orders,company,employee", - "purchase_orders,company,employee,accounting_period", - "purchase_orders,company,employee,accounting_period,payment_term", - "purchase_orders,company,employee,payment_term", - "purchase_orders,company,payment_term", - "purchase_orders,contact", - "purchase_orders,contact,accounting_period", - "purchase_orders,contact,accounting_period,payment_term", - "purchase_orders,contact,company", - "purchase_orders,contact,company,accounting_period", - "purchase_orders,contact,company,accounting_period,payment_term", - "purchase_orders,contact,company,employee", - "purchase_orders,contact,company,employee,accounting_period", - "purchase_orders,contact,company,employee,accounting_period,payment_term", - "purchase_orders,contact,company,employee,payment_term", - "purchase_orders,contact,company,payment_term", - "purchase_orders,contact,employee", - "purchase_orders,contact,employee,accounting_period", - "purchase_orders,contact,employee,accounting_period,payment_term", - "purchase_orders,contact,employee,payment_term", - "purchase_orders,contact,payment_term", - "purchase_orders,employee", - "purchase_orders,employee,accounting_period", - "purchase_orders,employee,accounting_period,payment_term", - "purchase_orders,employee,payment_term", - "purchase_orders,payment_term", - "tracking_categories", - "tracking_categories,accounting_period", - "tracking_categories,accounting_period,payment_term", - "tracking_categories,applied_credit_notes", - "tracking_categories,applied_credit_notes,accounting_period", - "tracking_categories,applied_credit_notes,accounting_period,payment_term", - "tracking_categories,applied_credit_notes,applied_vendor_credits", - "tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period", - "tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "tracking_categories,applied_credit_notes,applied_vendor_credits,company", - "tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee", - "tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "tracking_categories,applied_credit_notes,applied_vendor_credits,company,payment_term", - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact", - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company", - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee", - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "tracking_categories,applied_credit_notes,applied_vendor_credits,employee", - "tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "tracking_categories,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "tracking_categories,applied_credit_notes,applied_vendor_credits,payment_term", - "tracking_categories,applied_credit_notes,company", - "tracking_categories,applied_credit_notes,company,accounting_period", - "tracking_categories,applied_credit_notes,company,accounting_period,payment_term", - "tracking_categories,applied_credit_notes,company,employee", - "tracking_categories,applied_credit_notes,company,employee,accounting_period", - "tracking_categories,applied_credit_notes,company,employee,accounting_period,payment_term", - "tracking_categories,applied_credit_notes,company,employee,payment_term", - "tracking_categories,applied_credit_notes,company,payment_term", - "tracking_categories,applied_credit_notes,contact", - "tracking_categories,applied_credit_notes,contact,accounting_period", - "tracking_categories,applied_credit_notes,contact,accounting_period,payment_term", - "tracking_categories,applied_credit_notes,contact,company", - "tracking_categories,applied_credit_notes,contact,company,accounting_period", - "tracking_categories,applied_credit_notes,contact,company,accounting_period,payment_term", - "tracking_categories,applied_credit_notes,contact,company,employee", - "tracking_categories,applied_credit_notes,contact,company,employee,accounting_period", - "tracking_categories,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "tracking_categories,applied_credit_notes,contact,company,employee,payment_term", - "tracking_categories,applied_credit_notes,contact,company,payment_term", - "tracking_categories,applied_credit_notes,contact,employee", - "tracking_categories,applied_credit_notes,contact,employee,accounting_period", - "tracking_categories,applied_credit_notes,contact,employee,accounting_period,payment_term", - "tracking_categories,applied_credit_notes,contact,employee,payment_term", - "tracking_categories,applied_credit_notes,contact,payment_term", - "tracking_categories,applied_credit_notes,employee", - "tracking_categories,applied_credit_notes,employee,accounting_period", - "tracking_categories,applied_credit_notes,employee,accounting_period,payment_term", - "tracking_categories,applied_credit_notes,employee,payment_term", - "tracking_categories,applied_credit_notes,payment_term", - "tracking_categories,applied_vendor_credits", - "tracking_categories,applied_vendor_credits,accounting_period", - "tracking_categories,applied_vendor_credits,accounting_period,payment_term", - "tracking_categories,applied_vendor_credits,company", - "tracking_categories,applied_vendor_credits,company,accounting_period", - "tracking_categories,applied_vendor_credits,company,accounting_period,payment_term", - "tracking_categories,applied_vendor_credits,company,employee", - "tracking_categories,applied_vendor_credits,company,employee,accounting_period", - "tracking_categories,applied_vendor_credits,company,employee,accounting_period,payment_term", - "tracking_categories,applied_vendor_credits,company,employee,payment_term", - "tracking_categories,applied_vendor_credits,company,payment_term", - "tracking_categories,applied_vendor_credits,contact", - "tracking_categories,applied_vendor_credits,contact,accounting_period", - "tracking_categories,applied_vendor_credits,contact,accounting_period,payment_term", - "tracking_categories,applied_vendor_credits,contact,company", - "tracking_categories,applied_vendor_credits,contact,company,accounting_period", - "tracking_categories,applied_vendor_credits,contact,company,accounting_period,payment_term", - "tracking_categories,applied_vendor_credits,contact,company,employee", - "tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period", - "tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "tracking_categories,applied_vendor_credits,contact,company,employee,payment_term", - "tracking_categories,applied_vendor_credits,contact,company,payment_term", - "tracking_categories,applied_vendor_credits,contact,employee", - "tracking_categories,applied_vendor_credits,contact,employee,accounting_period", - "tracking_categories,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "tracking_categories,applied_vendor_credits,contact,employee,payment_term", - "tracking_categories,applied_vendor_credits,contact,payment_term", - "tracking_categories,applied_vendor_credits,employee", - "tracking_categories,applied_vendor_credits,employee,accounting_period", - "tracking_categories,applied_vendor_credits,employee,accounting_period,payment_term", - "tracking_categories,applied_vendor_credits,employee,payment_term", - "tracking_categories,applied_vendor_credits,payment_term", - "tracking_categories,company", - "tracking_categories,company,accounting_period", - "tracking_categories,company,accounting_period,payment_term", - "tracking_categories,company,employee", - "tracking_categories,company,employee,accounting_period", - "tracking_categories,company,employee,accounting_period,payment_term", - "tracking_categories,company,employee,payment_term", - "tracking_categories,company,payment_term", - "tracking_categories,contact", - "tracking_categories,contact,accounting_period", - "tracking_categories,contact,accounting_period,payment_term", - "tracking_categories,contact,company", - "tracking_categories,contact,company,accounting_period", - "tracking_categories,contact,company,accounting_period,payment_term", - "tracking_categories,contact,company,employee", - "tracking_categories,contact,company,employee,accounting_period", - "tracking_categories,contact,company,employee,accounting_period,payment_term", - "tracking_categories,contact,company,employee,payment_term", - "tracking_categories,contact,company,payment_term", - "tracking_categories,contact,employee", - "tracking_categories,contact,employee,accounting_period", - "tracking_categories,contact,employee,accounting_period,payment_term", - "tracking_categories,contact,employee,payment_term", - "tracking_categories,contact,payment_term", - "tracking_categories,employee", - "tracking_categories,employee,accounting_period", - "tracking_categories,employee,accounting_period,payment_term", - "tracking_categories,employee,payment_term", - "tracking_categories,payment_term", - "tracking_categories,purchase_orders", - "tracking_categories,purchase_orders,accounting_period", - "tracking_categories,purchase_orders,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes", - "tracking_categories,purchase_orders,applied_credit_notes,accounting_period", - "tracking_categories,purchase_orders,applied_credit_notes,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,company", - "tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period", - "tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,company,employee", - "tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period", - "tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,company,employee,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,company,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,contact", - "tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period", - "tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,contact,company", - "tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period", - "tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee", - "tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - "tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,contact,company,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,contact,employee", - "tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - "tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,contact,employee,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,contact,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,employee", - "tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period", - "tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,employee,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,payment_term", - "tracking_categories,purchase_orders,applied_vendor_credits", - "tracking_categories,purchase_orders,applied_vendor_credits,accounting_period", - "tracking_categories,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_vendor_credits,company", - "tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period", - "tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_vendor_credits,company,employee", - "tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - "tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_vendor_credits,company,employee,payment_term", - "tracking_categories,purchase_orders,applied_vendor_credits,company,payment_term", - "tracking_categories,purchase_orders,applied_vendor_credits,contact", - "tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period", - "tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_vendor_credits,contact,company", - "tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - "tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee", - "tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - "tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - "tracking_categories,purchase_orders,applied_vendor_credits,contact,company,payment_term", - "tracking_categories,purchase_orders,applied_vendor_credits,contact,employee", - "tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - "tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - "tracking_categories,purchase_orders,applied_vendor_credits,contact,payment_term", - "tracking_categories,purchase_orders,applied_vendor_credits,employee", - "tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period", - "tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_vendor_credits,employee,payment_term", - "tracking_categories,purchase_orders,applied_vendor_credits,payment_term", - "tracking_categories,purchase_orders,company", - "tracking_categories,purchase_orders,company,accounting_period", - "tracking_categories,purchase_orders,company,accounting_period,payment_term", - "tracking_categories,purchase_orders,company,employee", - "tracking_categories,purchase_orders,company,employee,accounting_period", - "tracking_categories,purchase_orders,company,employee,accounting_period,payment_term", - "tracking_categories,purchase_orders,company,employee,payment_term", - "tracking_categories,purchase_orders,company,payment_term", - "tracking_categories,purchase_orders,contact", - "tracking_categories,purchase_orders,contact,accounting_period", - "tracking_categories,purchase_orders,contact,accounting_period,payment_term", - "tracking_categories,purchase_orders,contact,company", - "tracking_categories,purchase_orders,contact,company,accounting_period", - "tracking_categories,purchase_orders,contact,company,accounting_period,payment_term", - "tracking_categories,purchase_orders,contact,company,employee", - "tracking_categories,purchase_orders,contact,company,employee,accounting_period", - "tracking_categories,purchase_orders,contact,company,employee,accounting_period,payment_term", - "tracking_categories,purchase_orders,contact,company,employee,payment_term", - "tracking_categories,purchase_orders,contact,company,payment_term", - "tracking_categories,purchase_orders,contact,employee", - "tracking_categories,purchase_orders,contact,employee,accounting_period", - "tracking_categories,purchase_orders,contact,employee,accounting_period,payment_term", - "tracking_categories,purchase_orders,contact,employee,payment_term", - "tracking_categories,purchase_orders,contact,payment_term", - "tracking_categories,purchase_orders,employee", - "tracking_categories,purchase_orders,employee,accounting_period", - "tracking_categories,purchase_orders,employee,accounting_period,payment_term", - "tracking_categories,purchase_orders,employee,payment_term", - "tracking_categories,purchase_orders,payment_term", -]); - -export declare namespace InvoicesListRequestExpand { - export type Raw = - | "accounting_period" - | "accounting_period,payment_term" - | "applied_credit_notes" - | "applied_credit_notes,accounting_period" - | "applied_credit_notes,accounting_period,payment_term" - | "applied_credit_notes,applied_vendor_credits" - | "applied_credit_notes,applied_vendor_credits,accounting_period" - | "applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "applied_credit_notes,applied_vendor_credits,company" - | "applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "applied_credit_notes,applied_vendor_credits,company,employee" - | "applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "applied_credit_notes,applied_vendor_credits,company,payment_term" - | "applied_credit_notes,applied_vendor_credits,contact" - | "applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "applied_credit_notes,applied_vendor_credits,contact,company" - | "applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "applied_credit_notes,applied_vendor_credits,contact,employee" - | "applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "applied_credit_notes,applied_vendor_credits,employee" - | "applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "applied_credit_notes,applied_vendor_credits,payment_term" - | "applied_credit_notes,company" - | "applied_credit_notes,company,accounting_period" - | "applied_credit_notes,company,accounting_period,payment_term" - | "applied_credit_notes,company,employee" - | "applied_credit_notes,company,employee,accounting_period" - | "applied_credit_notes,company,employee,accounting_period,payment_term" - | "applied_credit_notes,company,employee,payment_term" - | "applied_credit_notes,company,payment_term" - | "applied_credit_notes,contact" - | "applied_credit_notes,contact,accounting_period" - | "applied_credit_notes,contact,accounting_period,payment_term" - | "applied_credit_notes,contact,company" - | "applied_credit_notes,contact,company,accounting_period" - | "applied_credit_notes,contact,company,accounting_period,payment_term" - | "applied_credit_notes,contact,company,employee" - | "applied_credit_notes,contact,company,employee,accounting_period" - | "applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "applied_credit_notes,contact,company,employee,payment_term" - | "applied_credit_notes,contact,company,payment_term" - | "applied_credit_notes,contact,employee" - | "applied_credit_notes,contact,employee,accounting_period" - | "applied_credit_notes,contact,employee,accounting_period,payment_term" - | "applied_credit_notes,contact,employee,payment_term" - | "applied_credit_notes,contact,payment_term" - | "applied_credit_notes,employee" - | "applied_credit_notes,employee,accounting_period" - | "applied_credit_notes,employee,accounting_period,payment_term" - | "applied_credit_notes,employee,payment_term" - | "applied_credit_notes,payment_term" - | "applied_payments" - | "applied_payments,accounting_period" - | "applied_payments,accounting_period,payment_term" - | "applied_payments,applied_credit_notes" - | "applied_payments,applied_credit_notes,accounting_period" - | "applied_payments,applied_credit_notes,accounting_period,payment_term" - | "applied_payments,applied_credit_notes,applied_vendor_credits" - | "applied_payments,applied_credit_notes,applied_vendor_credits,accounting_period" - | "applied_payments,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "applied_payments,applied_credit_notes,applied_vendor_credits,company" - | "applied_payments,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "applied_payments,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "applied_payments,applied_credit_notes,applied_vendor_credits,company,employee" - | "applied_payments,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "applied_payments,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "applied_payments,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "applied_payments,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "applied_payments,applied_credit_notes,applied_vendor_credits,contact" - | "applied_payments,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "applied_payments,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "applied_payments,applied_credit_notes,applied_vendor_credits,contact,company" - | "applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "applied_payments,applied_credit_notes,applied_vendor_credits,contact,employee" - | "applied_payments,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "applied_payments,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "applied_payments,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "applied_payments,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "applied_payments,applied_credit_notes,applied_vendor_credits,employee" - | "applied_payments,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "applied_payments,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "applied_payments,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "applied_payments,applied_credit_notes,applied_vendor_credits,payment_term" - | "applied_payments,applied_credit_notes,company" - | "applied_payments,applied_credit_notes,company,accounting_period" - | "applied_payments,applied_credit_notes,company,accounting_period,payment_term" - | "applied_payments,applied_credit_notes,company,employee" - | "applied_payments,applied_credit_notes,company,employee,accounting_period" - | "applied_payments,applied_credit_notes,company,employee,accounting_period,payment_term" - | "applied_payments,applied_credit_notes,company,employee,payment_term" - | "applied_payments,applied_credit_notes,company,payment_term" - | "applied_payments,applied_credit_notes,contact" - | "applied_payments,applied_credit_notes,contact,accounting_period" - | "applied_payments,applied_credit_notes,contact,accounting_period,payment_term" - | "applied_payments,applied_credit_notes,contact,company" - | "applied_payments,applied_credit_notes,contact,company,accounting_period" - | "applied_payments,applied_credit_notes,contact,company,accounting_period,payment_term" - | "applied_payments,applied_credit_notes,contact,company,employee" - | "applied_payments,applied_credit_notes,contact,company,employee,accounting_period" - | "applied_payments,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "applied_payments,applied_credit_notes,contact,company,employee,payment_term" - | "applied_payments,applied_credit_notes,contact,company,payment_term" - | "applied_payments,applied_credit_notes,contact,employee" - | "applied_payments,applied_credit_notes,contact,employee,accounting_period" - | "applied_payments,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "applied_payments,applied_credit_notes,contact,employee,payment_term" - | "applied_payments,applied_credit_notes,contact,payment_term" - | "applied_payments,applied_credit_notes,employee" - | "applied_payments,applied_credit_notes,employee,accounting_period" - | "applied_payments,applied_credit_notes,employee,accounting_period,payment_term" - | "applied_payments,applied_credit_notes,employee,payment_term" - | "applied_payments,applied_credit_notes,payment_term" - | "applied_payments,applied_vendor_credits" - | "applied_payments,applied_vendor_credits,accounting_period" - | "applied_payments,applied_vendor_credits,accounting_period,payment_term" - | "applied_payments,applied_vendor_credits,company" - | "applied_payments,applied_vendor_credits,company,accounting_period" - | "applied_payments,applied_vendor_credits,company,accounting_period,payment_term" - | "applied_payments,applied_vendor_credits,company,employee" - | "applied_payments,applied_vendor_credits,company,employee,accounting_period" - | "applied_payments,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "applied_payments,applied_vendor_credits,company,employee,payment_term" - | "applied_payments,applied_vendor_credits,company,payment_term" - | "applied_payments,applied_vendor_credits,contact" - | "applied_payments,applied_vendor_credits,contact,accounting_period" - | "applied_payments,applied_vendor_credits,contact,accounting_period,payment_term" - | "applied_payments,applied_vendor_credits,contact,company" - | "applied_payments,applied_vendor_credits,contact,company,accounting_period" - | "applied_payments,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "applied_payments,applied_vendor_credits,contact,company,employee" - | "applied_payments,applied_vendor_credits,contact,company,employee,accounting_period" - | "applied_payments,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "applied_payments,applied_vendor_credits,contact,company,employee,payment_term" - | "applied_payments,applied_vendor_credits,contact,company,payment_term" - | "applied_payments,applied_vendor_credits,contact,employee" - | "applied_payments,applied_vendor_credits,contact,employee,accounting_period" - | "applied_payments,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "applied_payments,applied_vendor_credits,contact,employee,payment_term" - | "applied_payments,applied_vendor_credits,contact,payment_term" - | "applied_payments,applied_vendor_credits,employee" - | "applied_payments,applied_vendor_credits,employee,accounting_period" - | "applied_payments,applied_vendor_credits,employee,accounting_period,payment_term" - | "applied_payments,applied_vendor_credits,employee,payment_term" - | "applied_payments,applied_vendor_credits,payment_term" - | "applied_payments,company" - | "applied_payments,company,accounting_period" - | "applied_payments,company,accounting_period,payment_term" - | "applied_payments,company,employee" - | "applied_payments,company,employee,accounting_period" - | "applied_payments,company,employee,accounting_period,payment_term" - | "applied_payments,company,employee,payment_term" - | "applied_payments,company,payment_term" - | "applied_payments,contact" - | "applied_payments,contact,accounting_period" - | "applied_payments,contact,accounting_period,payment_term" - | "applied_payments,contact,company" - | "applied_payments,contact,company,accounting_period" - | "applied_payments,contact,company,accounting_period,payment_term" - | "applied_payments,contact,company,employee" - | "applied_payments,contact,company,employee,accounting_period" - | "applied_payments,contact,company,employee,accounting_period,payment_term" - | "applied_payments,contact,company,employee,payment_term" - | "applied_payments,contact,company,payment_term" - | "applied_payments,contact,employee" - | "applied_payments,contact,employee,accounting_period" - | "applied_payments,contact,employee,accounting_period,payment_term" - | "applied_payments,contact,employee,payment_term" - | "applied_payments,contact,payment_term" - | "applied_payments,employee" - | "applied_payments,employee,accounting_period" - | "applied_payments,employee,accounting_period,payment_term" - | "applied_payments,employee,payment_term" - | "applied_payments,line_items" - | "applied_payments,line_items,accounting_period" - | "applied_payments,line_items,accounting_period,payment_term" - | "applied_payments,line_items,applied_credit_notes" - | "applied_payments,line_items,applied_credit_notes,accounting_period" - | "applied_payments,line_items,applied_credit_notes,accounting_period,payment_term" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,accounting_period" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,employee" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,payment_term" - | "applied_payments,line_items,applied_credit_notes,company" - | "applied_payments,line_items,applied_credit_notes,company,accounting_period" - | "applied_payments,line_items,applied_credit_notes,company,accounting_period,payment_term" - | "applied_payments,line_items,applied_credit_notes,company,employee" - | "applied_payments,line_items,applied_credit_notes,company,employee,accounting_period" - | "applied_payments,line_items,applied_credit_notes,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,applied_credit_notes,company,employee,payment_term" - | "applied_payments,line_items,applied_credit_notes,company,payment_term" - | "applied_payments,line_items,applied_credit_notes,contact" - | "applied_payments,line_items,applied_credit_notes,contact,accounting_period" - | "applied_payments,line_items,applied_credit_notes,contact,accounting_period,payment_term" - | "applied_payments,line_items,applied_credit_notes,contact,company" - | "applied_payments,line_items,applied_credit_notes,contact,company,accounting_period" - | "applied_payments,line_items,applied_credit_notes,contact,company,accounting_period,payment_term" - | "applied_payments,line_items,applied_credit_notes,contact,company,employee" - | "applied_payments,line_items,applied_credit_notes,contact,company,employee,accounting_period" - | "applied_payments,line_items,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,applied_credit_notes,contact,company,employee,payment_term" - | "applied_payments,line_items,applied_credit_notes,contact,company,payment_term" - | "applied_payments,line_items,applied_credit_notes,contact,employee" - | "applied_payments,line_items,applied_credit_notes,contact,employee,accounting_period" - | "applied_payments,line_items,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "applied_payments,line_items,applied_credit_notes,contact,employee,payment_term" - | "applied_payments,line_items,applied_credit_notes,contact,payment_term" - | "applied_payments,line_items,applied_credit_notes,employee" - | "applied_payments,line_items,applied_credit_notes,employee,accounting_period" - | "applied_payments,line_items,applied_credit_notes,employee,accounting_period,payment_term" - | "applied_payments,line_items,applied_credit_notes,employee,payment_term" - | "applied_payments,line_items,applied_credit_notes,payment_term" - | "applied_payments,line_items,applied_vendor_credits" - | "applied_payments,line_items,applied_vendor_credits,accounting_period" - | "applied_payments,line_items,applied_vendor_credits,accounting_period,payment_term" - | "applied_payments,line_items,applied_vendor_credits,company" - | "applied_payments,line_items,applied_vendor_credits,company,accounting_period" - | "applied_payments,line_items,applied_vendor_credits,company,accounting_period,payment_term" - | "applied_payments,line_items,applied_vendor_credits,company,employee" - | "applied_payments,line_items,applied_vendor_credits,company,employee,accounting_period" - | "applied_payments,line_items,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,applied_vendor_credits,company,employee,payment_term" - | "applied_payments,line_items,applied_vendor_credits,company,payment_term" - | "applied_payments,line_items,applied_vendor_credits,contact" - | "applied_payments,line_items,applied_vendor_credits,contact,accounting_period" - | "applied_payments,line_items,applied_vendor_credits,contact,accounting_period,payment_term" - | "applied_payments,line_items,applied_vendor_credits,contact,company" - | "applied_payments,line_items,applied_vendor_credits,contact,company,accounting_period" - | "applied_payments,line_items,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "applied_payments,line_items,applied_vendor_credits,contact,company,employee" - | "applied_payments,line_items,applied_vendor_credits,contact,company,employee,accounting_period" - | "applied_payments,line_items,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,applied_vendor_credits,contact,company,employee,payment_term" - | "applied_payments,line_items,applied_vendor_credits,contact,company,payment_term" - | "applied_payments,line_items,applied_vendor_credits,contact,employee" - | "applied_payments,line_items,applied_vendor_credits,contact,employee,accounting_period" - | "applied_payments,line_items,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "applied_payments,line_items,applied_vendor_credits,contact,employee,payment_term" - | "applied_payments,line_items,applied_vendor_credits,contact,payment_term" - | "applied_payments,line_items,applied_vendor_credits,employee" - | "applied_payments,line_items,applied_vendor_credits,employee,accounting_period" - | "applied_payments,line_items,applied_vendor_credits,employee,accounting_period,payment_term" - | "applied_payments,line_items,applied_vendor_credits,employee,payment_term" - | "applied_payments,line_items,applied_vendor_credits,payment_term" - | "applied_payments,line_items,company" - | "applied_payments,line_items,company,accounting_period" - | "applied_payments,line_items,company,accounting_period,payment_term" - | "applied_payments,line_items,company,employee" - | "applied_payments,line_items,company,employee,accounting_period" - | "applied_payments,line_items,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,company,employee,payment_term" - | "applied_payments,line_items,company,payment_term" - | "applied_payments,line_items,contact" - | "applied_payments,line_items,contact,accounting_period" - | "applied_payments,line_items,contact,accounting_period,payment_term" - | "applied_payments,line_items,contact,company" - | "applied_payments,line_items,contact,company,accounting_period" - | "applied_payments,line_items,contact,company,accounting_period,payment_term" - | "applied_payments,line_items,contact,company,employee" - | "applied_payments,line_items,contact,company,employee,accounting_period" - | "applied_payments,line_items,contact,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,contact,company,employee,payment_term" - | "applied_payments,line_items,contact,company,payment_term" - | "applied_payments,line_items,contact,employee" - | "applied_payments,line_items,contact,employee,accounting_period" - | "applied_payments,line_items,contact,employee,accounting_period,payment_term" - | "applied_payments,line_items,contact,employee,payment_term" - | "applied_payments,line_items,contact,payment_term" - | "applied_payments,line_items,employee" - | "applied_payments,line_items,employee,accounting_period" - | "applied_payments,line_items,employee,accounting_period,payment_term" - | "applied_payments,line_items,employee,payment_term" - | "applied_payments,line_items,payment_term" - | "applied_payments,line_items,purchase_orders" - | "applied_payments,line_items,purchase_orders,accounting_period" - | "applied_payments,line_items,purchase_orders,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,accounting_period" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,company" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,company,accounting_period" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,company,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,company,employee" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,company,employee,accounting_period" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,company,employee,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,company,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,contact" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,accounting_period" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,accounting_period" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,employee" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,employee,accounting_period" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,employee,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,employee" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,employee,accounting_period" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,employee,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,payment_term" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,accounting_period" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,company" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,company,accounting_period" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,company,employee" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,company,employee,accounting_period" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,company,employee,payment_term" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,company,payment_term" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,accounting_period" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,accounting_period" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,payment_term" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,employee" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,accounting_period" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,payment_term" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,payment_term" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,employee" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,employee,accounting_period" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,employee,payment_term" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,payment_term" - | "applied_payments,line_items,purchase_orders,company" - | "applied_payments,line_items,purchase_orders,company,accounting_period" - | "applied_payments,line_items,purchase_orders,company,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,company,employee" - | "applied_payments,line_items,purchase_orders,company,employee,accounting_period" - | "applied_payments,line_items,purchase_orders,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,company,employee,payment_term" - | "applied_payments,line_items,purchase_orders,company,payment_term" - | "applied_payments,line_items,purchase_orders,contact" - | "applied_payments,line_items,purchase_orders,contact,accounting_period" - | "applied_payments,line_items,purchase_orders,contact,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,contact,company" - | "applied_payments,line_items,purchase_orders,contact,company,accounting_period" - | "applied_payments,line_items,purchase_orders,contact,company,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,contact,company,employee" - | "applied_payments,line_items,purchase_orders,contact,company,employee,accounting_period" - | "applied_payments,line_items,purchase_orders,contact,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,contact,company,employee,payment_term" - | "applied_payments,line_items,purchase_orders,contact,company,payment_term" - | "applied_payments,line_items,purchase_orders,contact,employee" - | "applied_payments,line_items,purchase_orders,contact,employee,accounting_period" - | "applied_payments,line_items,purchase_orders,contact,employee,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,contact,employee,payment_term" - | "applied_payments,line_items,purchase_orders,contact,payment_term" - | "applied_payments,line_items,purchase_orders,employee" - | "applied_payments,line_items,purchase_orders,employee,accounting_period" - | "applied_payments,line_items,purchase_orders,employee,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,employee,payment_term" - | "applied_payments,line_items,purchase_orders,payment_term" - | "applied_payments,line_items,tracking_categories" - | "applied_payments,line_items,tracking_categories,accounting_period" - | "applied_payments,line_items,tracking_categories,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,accounting_period" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,company" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,company,accounting_period" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,company,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,company,employee" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,company,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,company,employee,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,company,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,contact" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,accounting_period" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,accounting_period" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,employee" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,employee,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,employee" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,employee,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,payment_term" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,accounting_period" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,company" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,company,accounting_period" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,company,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,company,employee" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,company,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,company,employee,payment_term" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,company,payment_term" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,accounting_period" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,accounting_period" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,payment_term" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,payment_term" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,employee" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,payment_term" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,payment_term" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,employee" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,employee,payment_term" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,payment_term" - | "applied_payments,line_items,tracking_categories,company" - | "applied_payments,line_items,tracking_categories,company,accounting_period" - | "applied_payments,line_items,tracking_categories,company,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,company,employee" - | "applied_payments,line_items,tracking_categories,company,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,company,employee,payment_term" - | "applied_payments,line_items,tracking_categories,company,payment_term" - | "applied_payments,line_items,tracking_categories,contact" - | "applied_payments,line_items,tracking_categories,contact,accounting_period" - | "applied_payments,line_items,tracking_categories,contact,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,contact,company" - | "applied_payments,line_items,tracking_categories,contact,company,accounting_period" - | "applied_payments,line_items,tracking_categories,contact,company,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,contact,company,employee" - | "applied_payments,line_items,tracking_categories,contact,company,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,contact,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,contact,company,employee,payment_term" - | "applied_payments,line_items,tracking_categories,contact,company,payment_term" - | "applied_payments,line_items,tracking_categories,contact,employee" - | "applied_payments,line_items,tracking_categories,contact,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,contact,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,contact,employee,payment_term" - | "applied_payments,line_items,tracking_categories,contact,payment_term" - | "applied_payments,line_items,tracking_categories,employee" - | "applied_payments,line_items,tracking_categories,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,employee,payment_term" - | "applied_payments,line_items,tracking_categories,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders" - | "applied_payments,line_items,tracking_categories,purchase_orders,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,company" - | "applied_payments,line_items,tracking_categories,purchase_orders,company,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,company,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,company,employee" - | "applied_payments,line_items,tracking_categories,purchase_orders,company,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,company,employee,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,company,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,contact" - | "applied_payments,line_items,tracking_categories,purchase_orders,contact,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,contact,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,contact,company" - | "applied_payments,line_items,tracking_categories,purchase_orders,contact,company,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,contact,company,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,contact,company,employee" - | "applied_payments,line_items,tracking_categories,purchase_orders,contact,company,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,contact,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,contact,company,employee,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,contact,company,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,contact,employee" - | "applied_payments,line_items,tracking_categories,purchase_orders,contact,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,contact,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,contact,employee,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,contact,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,employee" - | "applied_payments,line_items,tracking_categories,purchase_orders,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,employee,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,payment_term" - | "applied_payments,payment_term" - | "applied_payments,purchase_orders" - | "applied_payments,purchase_orders,accounting_period" - | "applied_payments,purchase_orders,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes" - | "applied_payments,purchase_orders,applied_credit_notes,accounting_period" - | "applied_payments,purchase_orders,applied_credit_notes,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,company" - | "applied_payments,purchase_orders,applied_credit_notes,company,accounting_period" - | "applied_payments,purchase_orders,applied_credit_notes,company,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,company,employee" - | "applied_payments,purchase_orders,applied_credit_notes,company,employee,accounting_period" - | "applied_payments,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,company,employee,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,company,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,contact" - | "applied_payments,purchase_orders,applied_credit_notes,contact,accounting_period" - | "applied_payments,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,contact,company" - | "applied_payments,purchase_orders,applied_credit_notes,contact,company,accounting_period" - | "applied_payments,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,contact,company,employee" - | "applied_payments,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period" - | "applied_payments,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,contact,company,employee,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,contact,company,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,contact,employee" - | "applied_payments,purchase_orders,applied_credit_notes,contact,employee,accounting_period" - | "applied_payments,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,contact,employee,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,contact,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,employee" - | "applied_payments,purchase_orders,applied_credit_notes,employee,accounting_period" - | "applied_payments,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,employee,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,payment_term" - | "applied_payments,purchase_orders,applied_vendor_credits" - | "applied_payments,purchase_orders,applied_vendor_credits,accounting_period" - | "applied_payments,purchase_orders,applied_vendor_credits,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_vendor_credits,company" - | "applied_payments,purchase_orders,applied_vendor_credits,company,accounting_period" - | "applied_payments,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_vendor_credits,company,employee" - | "applied_payments,purchase_orders,applied_vendor_credits,company,employee,accounting_period" - | "applied_payments,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_vendor_credits,company,employee,payment_term" - | "applied_payments,purchase_orders,applied_vendor_credits,company,payment_term" - | "applied_payments,purchase_orders,applied_vendor_credits,contact" - | "applied_payments,purchase_orders,applied_vendor_credits,contact,accounting_period" - | "applied_payments,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_vendor_credits,contact,company" - | "applied_payments,purchase_orders,applied_vendor_credits,contact,company,accounting_period" - | "applied_payments,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_vendor_credits,contact,company,employee" - | "applied_payments,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period" - | "applied_payments,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term" - | "applied_payments,purchase_orders,applied_vendor_credits,contact,company,payment_term" - | "applied_payments,purchase_orders,applied_vendor_credits,contact,employee" - | "applied_payments,purchase_orders,applied_vendor_credits,contact,employee,accounting_period" - | "applied_payments,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_vendor_credits,contact,employee,payment_term" - | "applied_payments,purchase_orders,applied_vendor_credits,contact,payment_term" - | "applied_payments,purchase_orders,applied_vendor_credits,employee" - | "applied_payments,purchase_orders,applied_vendor_credits,employee,accounting_period" - | "applied_payments,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_vendor_credits,employee,payment_term" - | "applied_payments,purchase_orders,applied_vendor_credits,payment_term" - | "applied_payments,purchase_orders,company" - | "applied_payments,purchase_orders,company,accounting_period" - | "applied_payments,purchase_orders,company,accounting_period,payment_term" - | "applied_payments,purchase_orders,company,employee" - | "applied_payments,purchase_orders,company,employee,accounting_period" - | "applied_payments,purchase_orders,company,employee,accounting_period,payment_term" - | "applied_payments,purchase_orders,company,employee,payment_term" - | "applied_payments,purchase_orders,company,payment_term" - | "applied_payments,purchase_orders,contact" - | "applied_payments,purchase_orders,contact,accounting_period" - | "applied_payments,purchase_orders,contact,accounting_period,payment_term" - | "applied_payments,purchase_orders,contact,company" - | "applied_payments,purchase_orders,contact,company,accounting_period" - | "applied_payments,purchase_orders,contact,company,accounting_period,payment_term" - | "applied_payments,purchase_orders,contact,company,employee" - | "applied_payments,purchase_orders,contact,company,employee,accounting_period" - | "applied_payments,purchase_orders,contact,company,employee,accounting_period,payment_term" - | "applied_payments,purchase_orders,contact,company,employee,payment_term" - | "applied_payments,purchase_orders,contact,company,payment_term" - | "applied_payments,purchase_orders,contact,employee" - | "applied_payments,purchase_orders,contact,employee,accounting_period" - | "applied_payments,purchase_orders,contact,employee,accounting_period,payment_term" - | "applied_payments,purchase_orders,contact,employee,payment_term" - | "applied_payments,purchase_orders,contact,payment_term" - | "applied_payments,purchase_orders,employee" - | "applied_payments,purchase_orders,employee,accounting_period" - | "applied_payments,purchase_orders,employee,accounting_period,payment_term" - | "applied_payments,purchase_orders,employee,payment_term" - | "applied_payments,purchase_orders,payment_term" - | "applied_payments,tracking_categories" - | "applied_payments,tracking_categories,accounting_period" - | "applied_payments,tracking_categories,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes" - | "applied_payments,tracking_categories,applied_credit_notes,accounting_period" - | "applied_payments,tracking_categories,applied_credit_notes,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,company" - | "applied_payments,tracking_categories,applied_credit_notes,company,accounting_period" - | "applied_payments,tracking_categories,applied_credit_notes,company,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,company,employee" - | "applied_payments,tracking_categories,applied_credit_notes,company,employee,accounting_period" - | "applied_payments,tracking_categories,applied_credit_notes,company,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,company,employee,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,company,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,contact" - | "applied_payments,tracking_categories,applied_credit_notes,contact,accounting_period" - | "applied_payments,tracking_categories,applied_credit_notes,contact,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,contact,company" - | "applied_payments,tracking_categories,applied_credit_notes,contact,company,accounting_period" - | "applied_payments,tracking_categories,applied_credit_notes,contact,company,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,contact,company,employee" - | "applied_payments,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period" - | "applied_payments,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,contact,company,employee,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,contact,company,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,contact,employee" - | "applied_payments,tracking_categories,applied_credit_notes,contact,employee,accounting_period" - | "applied_payments,tracking_categories,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,contact,employee,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,contact,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,employee" - | "applied_payments,tracking_categories,applied_credit_notes,employee,accounting_period" - | "applied_payments,tracking_categories,applied_credit_notes,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,employee,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,payment_term" - | "applied_payments,tracking_categories,applied_vendor_credits" - | "applied_payments,tracking_categories,applied_vendor_credits,accounting_period" - | "applied_payments,tracking_categories,applied_vendor_credits,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_vendor_credits,company" - | "applied_payments,tracking_categories,applied_vendor_credits,company,accounting_period" - | "applied_payments,tracking_categories,applied_vendor_credits,company,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_vendor_credits,company,employee" - | "applied_payments,tracking_categories,applied_vendor_credits,company,employee,accounting_period" - | "applied_payments,tracking_categories,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_vendor_credits,company,employee,payment_term" - | "applied_payments,tracking_categories,applied_vendor_credits,company,payment_term" - | "applied_payments,tracking_categories,applied_vendor_credits,contact" - | "applied_payments,tracking_categories,applied_vendor_credits,contact,accounting_period" - | "applied_payments,tracking_categories,applied_vendor_credits,contact,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_vendor_credits,contact,company" - | "applied_payments,tracking_categories,applied_vendor_credits,contact,company,accounting_period" - | "applied_payments,tracking_categories,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_vendor_credits,contact,company,employee" - | "applied_payments,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period" - | "applied_payments,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_vendor_credits,contact,company,employee,payment_term" - | "applied_payments,tracking_categories,applied_vendor_credits,contact,company,payment_term" - | "applied_payments,tracking_categories,applied_vendor_credits,contact,employee" - | "applied_payments,tracking_categories,applied_vendor_credits,contact,employee,accounting_period" - | "applied_payments,tracking_categories,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_vendor_credits,contact,employee,payment_term" - | "applied_payments,tracking_categories,applied_vendor_credits,contact,payment_term" - | "applied_payments,tracking_categories,applied_vendor_credits,employee" - | "applied_payments,tracking_categories,applied_vendor_credits,employee,accounting_period" - | "applied_payments,tracking_categories,applied_vendor_credits,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_vendor_credits,employee,payment_term" - | "applied_payments,tracking_categories,applied_vendor_credits,payment_term" - | "applied_payments,tracking_categories,company" - | "applied_payments,tracking_categories,company,accounting_period" - | "applied_payments,tracking_categories,company,accounting_period,payment_term" - | "applied_payments,tracking_categories,company,employee" - | "applied_payments,tracking_categories,company,employee,accounting_period" - | "applied_payments,tracking_categories,company,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,company,employee,payment_term" - | "applied_payments,tracking_categories,company,payment_term" - | "applied_payments,tracking_categories,contact" - | "applied_payments,tracking_categories,contact,accounting_period" - | "applied_payments,tracking_categories,contact,accounting_period,payment_term" - | "applied_payments,tracking_categories,contact,company" - | "applied_payments,tracking_categories,contact,company,accounting_period" - | "applied_payments,tracking_categories,contact,company,accounting_period,payment_term" - | "applied_payments,tracking_categories,contact,company,employee" - | "applied_payments,tracking_categories,contact,company,employee,accounting_period" - | "applied_payments,tracking_categories,contact,company,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,contact,company,employee,payment_term" - | "applied_payments,tracking_categories,contact,company,payment_term" - | "applied_payments,tracking_categories,contact,employee" - | "applied_payments,tracking_categories,contact,employee,accounting_period" - | "applied_payments,tracking_categories,contact,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,contact,employee,payment_term" - | "applied_payments,tracking_categories,contact,payment_term" - | "applied_payments,tracking_categories,employee" - | "applied_payments,tracking_categories,employee,accounting_period" - | "applied_payments,tracking_categories,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,employee,payment_term" - | "applied_payments,tracking_categories,payment_term" - | "applied_payments,tracking_categories,purchase_orders" - | "applied_payments,tracking_categories,purchase_orders,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,employee" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,employee,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,employee" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,payment_term" - | "applied_payments,tracking_categories,purchase_orders,company" - | "applied_payments,tracking_categories,purchase_orders,company,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,company,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,company,employee" - | "applied_payments,tracking_categories,purchase_orders,company,employee,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,company,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,company,employee,payment_term" - | "applied_payments,tracking_categories,purchase_orders,company,payment_term" - | "applied_payments,tracking_categories,purchase_orders,contact" - | "applied_payments,tracking_categories,purchase_orders,contact,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,contact,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,contact,company" - | "applied_payments,tracking_categories,purchase_orders,contact,company,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,contact,company,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,contact,company,employee" - | "applied_payments,tracking_categories,purchase_orders,contact,company,employee,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,contact,company,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,contact,company,employee,payment_term" - | "applied_payments,tracking_categories,purchase_orders,contact,company,payment_term" - | "applied_payments,tracking_categories,purchase_orders,contact,employee" - | "applied_payments,tracking_categories,purchase_orders,contact,employee,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,contact,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,contact,employee,payment_term" - | "applied_payments,tracking_categories,purchase_orders,contact,payment_term" - | "applied_payments,tracking_categories,purchase_orders,employee" - | "applied_payments,tracking_categories,purchase_orders,employee,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,employee,payment_term" - | "applied_payments,tracking_categories,purchase_orders,payment_term" - | "applied_vendor_credits" - | "applied_vendor_credits,accounting_period" - | "applied_vendor_credits,accounting_period,payment_term" - | "applied_vendor_credits,company" - | "applied_vendor_credits,company,accounting_period" - | "applied_vendor_credits,company,accounting_period,payment_term" - | "applied_vendor_credits,company,employee" - | "applied_vendor_credits,company,employee,accounting_period" - | "applied_vendor_credits,company,employee,accounting_period,payment_term" - | "applied_vendor_credits,company,employee,payment_term" - | "applied_vendor_credits,company,payment_term" - | "applied_vendor_credits,contact" - | "applied_vendor_credits,contact,accounting_period" - | "applied_vendor_credits,contact,accounting_period,payment_term" - | "applied_vendor_credits,contact,company" - | "applied_vendor_credits,contact,company,accounting_period" - | "applied_vendor_credits,contact,company,accounting_period,payment_term" - | "applied_vendor_credits,contact,company,employee" - | "applied_vendor_credits,contact,company,employee,accounting_period" - | "applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "applied_vendor_credits,contact,company,employee,payment_term" - | "applied_vendor_credits,contact,company,payment_term" - | "applied_vendor_credits,contact,employee" - | "applied_vendor_credits,contact,employee,accounting_period" - | "applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "applied_vendor_credits,contact,employee,payment_term" - | "applied_vendor_credits,contact,payment_term" - | "applied_vendor_credits,employee" - | "applied_vendor_credits,employee,accounting_period" - | "applied_vendor_credits,employee,accounting_period,payment_term" - | "applied_vendor_credits,employee,payment_term" - | "applied_vendor_credits,payment_term" - | "company" - | "company,accounting_period" - | "company,accounting_period,payment_term" - | "company,employee" - | "company,employee,accounting_period" - | "company,employee,accounting_period,payment_term" - | "company,employee,payment_term" - | "company,payment_term" - | "contact" - | "contact,accounting_period" - | "contact,accounting_period,payment_term" - | "contact,company" - | "contact,company,accounting_period" - | "contact,company,accounting_period,payment_term" - | "contact,company,employee" - | "contact,company,employee,accounting_period" - | "contact,company,employee,accounting_period,payment_term" - | "contact,company,employee,payment_term" - | "contact,company,payment_term" - | "contact,employee" - | "contact,employee,accounting_period" - | "contact,employee,accounting_period,payment_term" - | "contact,employee,payment_term" - | "contact,payment_term" - | "employee" - | "employee,accounting_period" - | "employee,accounting_period,payment_term" - | "employee,payment_term" - | "line_items" - | "line_items,accounting_period" - | "line_items,accounting_period,payment_term" - | "line_items,applied_credit_notes" - | "line_items,applied_credit_notes,accounting_period" - | "line_items,applied_credit_notes,accounting_period,payment_term" - | "line_items,applied_credit_notes,applied_vendor_credits" - | "line_items,applied_credit_notes,applied_vendor_credits,accounting_period" - | "line_items,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "line_items,applied_credit_notes,applied_vendor_credits,company" - | "line_items,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "line_items,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "line_items,applied_credit_notes,applied_vendor_credits,company,employee" - | "line_items,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "line_items,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "line_items,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "line_items,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "line_items,applied_credit_notes,applied_vendor_credits,contact" - | "line_items,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "line_items,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "line_items,applied_credit_notes,applied_vendor_credits,contact,company" - | "line_items,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "line_items,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "line_items,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "line_items,applied_credit_notes,applied_vendor_credits,contact,employee" - | "line_items,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "line_items,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "line_items,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "line_items,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "line_items,applied_credit_notes,applied_vendor_credits,employee" - | "line_items,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "line_items,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "line_items,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "line_items,applied_credit_notes,applied_vendor_credits,payment_term" - | "line_items,applied_credit_notes,company" - | "line_items,applied_credit_notes,company,accounting_period" - | "line_items,applied_credit_notes,company,accounting_period,payment_term" - | "line_items,applied_credit_notes,company,employee" - | "line_items,applied_credit_notes,company,employee,accounting_period" - | "line_items,applied_credit_notes,company,employee,accounting_period,payment_term" - | "line_items,applied_credit_notes,company,employee,payment_term" - | "line_items,applied_credit_notes,company,payment_term" - | "line_items,applied_credit_notes,contact" - | "line_items,applied_credit_notes,contact,accounting_period" - | "line_items,applied_credit_notes,contact,accounting_period,payment_term" - | "line_items,applied_credit_notes,contact,company" - | "line_items,applied_credit_notes,contact,company,accounting_period" - | "line_items,applied_credit_notes,contact,company,accounting_period,payment_term" - | "line_items,applied_credit_notes,contact,company,employee" - | "line_items,applied_credit_notes,contact,company,employee,accounting_period" - | "line_items,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "line_items,applied_credit_notes,contact,company,employee,payment_term" - | "line_items,applied_credit_notes,contact,company,payment_term" - | "line_items,applied_credit_notes,contact,employee" - | "line_items,applied_credit_notes,contact,employee,accounting_period" - | "line_items,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "line_items,applied_credit_notes,contact,employee,payment_term" - | "line_items,applied_credit_notes,contact,payment_term" - | "line_items,applied_credit_notes,employee" - | "line_items,applied_credit_notes,employee,accounting_period" - | "line_items,applied_credit_notes,employee,accounting_period,payment_term" - | "line_items,applied_credit_notes,employee,payment_term" - | "line_items,applied_credit_notes,payment_term" - | "line_items,applied_vendor_credits" - | "line_items,applied_vendor_credits,accounting_period" - | "line_items,applied_vendor_credits,accounting_period,payment_term" - | "line_items,applied_vendor_credits,company" - | "line_items,applied_vendor_credits,company,accounting_period" - | "line_items,applied_vendor_credits,company,accounting_period,payment_term" - | "line_items,applied_vendor_credits,company,employee" - | "line_items,applied_vendor_credits,company,employee,accounting_period" - | "line_items,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "line_items,applied_vendor_credits,company,employee,payment_term" - | "line_items,applied_vendor_credits,company,payment_term" - | "line_items,applied_vendor_credits,contact" - | "line_items,applied_vendor_credits,contact,accounting_period" - | "line_items,applied_vendor_credits,contact,accounting_period,payment_term" - | "line_items,applied_vendor_credits,contact,company" - | "line_items,applied_vendor_credits,contact,company,accounting_period" - | "line_items,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "line_items,applied_vendor_credits,contact,company,employee" - | "line_items,applied_vendor_credits,contact,company,employee,accounting_period" - | "line_items,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "line_items,applied_vendor_credits,contact,company,employee,payment_term" - | "line_items,applied_vendor_credits,contact,company,payment_term" - | "line_items,applied_vendor_credits,contact,employee" - | "line_items,applied_vendor_credits,contact,employee,accounting_period" - | "line_items,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "line_items,applied_vendor_credits,contact,employee,payment_term" - | "line_items,applied_vendor_credits,contact,payment_term" - | "line_items,applied_vendor_credits,employee" - | "line_items,applied_vendor_credits,employee,accounting_period" - | "line_items,applied_vendor_credits,employee,accounting_period,payment_term" - | "line_items,applied_vendor_credits,employee,payment_term" - | "line_items,applied_vendor_credits,payment_term" - | "line_items,company" - | "line_items,company,accounting_period" - | "line_items,company,accounting_period,payment_term" - | "line_items,company,employee" - | "line_items,company,employee,accounting_period" - | "line_items,company,employee,accounting_period,payment_term" - | "line_items,company,employee,payment_term" - | "line_items,company,payment_term" - | "line_items,contact" - | "line_items,contact,accounting_period" - | "line_items,contact,accounting_period,payment_term" - | "line_items,contact,company" - | "line_items,contact,company,accounting_period" - | "line_items,contact,company,accounting_period,payment_term" - | "line_items,contact,company,employee" - | "line_items,contact,company,employee,accounting_period" - | "line_items,contact,company,employee,accounting_period,payment_term" - | "line_items,contact,company,employee,payment_term" - | "line_items,contact,company,payment_term" - | "line_items,contact,employee" - | "line_items,contact,employee,accounting_period" - | "line_items,contact,employee,accounting_period,payment_term" - | "line_items,contact,employee,payment_term" - | "line_items,contact,payment_term" - | "line_items,employee" - | "line_items,employee,accounting_period" - | "line_items,employee,accounting_period,payment_term" - | "line_items,employee,payment_term" - | "line_items,payment_term" - | "line_items,purchase_orders" - | "line_items,purchase_orders,accounting_period" - | "line_items,purchase_orders,accounting_period,payment_term" - | "line_items,purchase_orders,applied_credit_notes" - | "line_items,purchase_orders,applied_credit_notes,accounting_period" - | "line_items,purchase_orders,applied_credit_notes,accounting_period,payment_term" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term" - | "line_items,purchase_orders,applied_credit_notes,company" - | "line_items,purchase_orders,applied_credit_notes,company,accounting_period" - | "line_items,purchase_orders,applied_credit_notes,company,accounting_period,payment_term" - | "line_items,purchase_orders,applied_credit_notes,company,employee" - | "line_items,purchase_orders,applied_credit_notes,company,employee,accounting_period" - | "line_items,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term" - | "line_items,purchase_orders,applied_credit_notes,company,employee,payment_term" - | "line_items,purchase_orders,applied_credit_notes,company,payment_term" - | "line_items,purchase_orders,applied_credit_notes,contact" - | "line_items,purchase_orders,applied_credit_notes,contact,accounting_period" - | "line_items,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term" - | "line_items,purchase_orders,applied_credit_notes,contact,company" - | "line_items,purchase_orders,applied_credit_notes,contact,company,accounting_period" - | "line_items,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term" - | "line_items,purchase_orders,applied_credit_notes,contact,company,employee" - | "line_items,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period" - | "line_items,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "line_items,purchase_orders,applied_credit_notes,contact,company,employee,payment_term" - | "line_items,purchase_orders,applied_credit_notes,contact,company,payment_term" - | "line_items,purchase_orders,applied_credit_notes,contact,employee" - | "line_items,purchase_orders,applied_credit_notes,contact,employee,accounting_period" - | "line_items,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "line_items,purchase_orders,applied_credit_notes,contact,employee,payment_term" - | "line_items,purchase_orders,applied_credit_notes,contact,payment_term" - | "line_items,purchase_orders,applied_credit_notes,employee" - | "line_items,purchase_orders,applied_credit_notes,employee,accounting_period" - | "line_items,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term" - | "line_items,purchase_orders,applied_credit_notes,employee,payment_term" - | "line_items,purchase_orders,applied_credit_notes,payment_term" - | "line_items,purchase_orders,applied_vendor_credits" - | "line_items,purchase_orders,applied_vendor_credits,accounting_period" - | "line_items,purchase_orders,applied_vendor_credits,accounting_period,payment_term" - | "line_items,purchase_orders,applied_vendor_credits,company" - | "line_items,purchase_orders,applied_vendor_credits,company,accounting_period" - | "line_items,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term" - | "line_items,purchase_orders,applied_vendor_credits,company,employee" - | "line_items,purchase_orders,applied_vendor_credits,company,employee,accounting_period" - | "line_items,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "line_items,purchase_orders,applied_vendor_credits,company,employee,payment_term" - | "line_items,purchase_orders,applied_vendor_credits,company,payment_term" - | "line_items,purchase_orders,applied_vendor_credits,contact" - | "line_items,purchase_orders,applied_vendor_credits,contact,accounting_period" - | "line_items,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term" - | "line_items,purchase_orders,applied_vendor_credits,contact,company" - | "line_items,purchase_orders,applied_vendor_credits,contact,company,accounting_period" - | "line_items,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "line_items,purchase_orders,applied_vendor_credits,contact,company,employee" - | "line_items,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period" - | "line_items,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "line_items,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term" - | "line_items,purchase_orders,applied_vendor_credits,contact,company,payment_term" - | "line_items,purchase_orders,applied_vendor_credits,contact,employee" - | "line_items,purchase_orders,applied_vendor_credits,contact,employee,accounting_period" - | "line_items,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "line_items,purchase_orders,applied_vendor_credits,contact,employee,payment_term" - | "line_items,purchase_orders,applied_vendor_credits,contact,payment_term" - | "line_items,purchase_orders,applied_vendor_credits,employee" - | "line_items,purchase_orders,applied_vendor_credits,employee,accounting_period" - | "line_items,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term" - | "line_items,purchase_orders,applied_vendor_credits,employee,payment_term" - | "line_items,purchase_orders,applied_vendor_credits,payment_term" - | "line_items,purchase_orders,company" - | "line_items,purchase_orders,company,accounting_period" - | "line_items,purchase_orders,company,accounting_period,payment_term" - | "line_items,purchase_orders,company,employee" - | "line_items,purchase_orders,company,employee,accounting_period" - | "line_items,purchase_orders,company,employee,accounting_period,payment_term" - | "line_items,purchase_orders,company,employee,payment_term" - | "line_items,purchase_orders,company,payment_term" - | "line_items,purchase_orders,contact" - | "line_items,purchase_orders,contact,accounting_period" - | "line_items,purchase_orders,contact,accounting_period,payment_term" - | "line_items,purchase_orders,contact,company" - | "line_items,purchase_orders,contact,company,accounting_period" - | "line_items,purchase_orders,contact,company,accounting_period,payment_term" - | "line_items,purchase_orders,contact,company,employee" - | "line_items,purchase_orders,contact,company,employee,accounting_period" - | "line_items,purchase_orders,contact,company,employee,accounting_period,payment_term" - | "line_items,purchase_orders,contact,company,employee,payment_term" - | "line_items,purchase_orders,contact,company,payment_term" - | "line_items,purchase_orders,contact,employee" - | "line_items,purchase_orders,contact,employee,accounting_period" - | "line_items,purchase_orders,contact,employee,accounting_period,payment_term" - | "line_items,purchase_orders,contact,employee,payment_term" - | "line_items,purchase_orders,contact,payment_term" - | "line_items,purchase_orders,employee" - | "line_items,purchase_orders,employee,accounting_period" - | "line_items,purchase_orders,employee,accounting_period,payment_term" - | "line_items,purchase_orders,employee,payment_term" - | "line_items,purchase_orders,payment_term" - | "line_items,tracking_categories" - | "line_items,tracking_categories,accounting_period" - | "line_items,tracking_categories,accounting_period,payment_term" - | "line_items,tracking_categories,applied_credit_notes" - | "line_items,tracking_categories,applied_credit_notes,accounting_period" - | "line_items,tracking_categories,applied_credit_notes,accounting_period,payment_term" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,payment_term" - | "line_items,tracking_categories,applied_credit_notes,company" - | "line_items,tracking_categories,applied_credit_notes,company,accounting_period" - | "line_items,tracking_categories,applied_credit_notes,company,accounting_period,payment_term" - | "line_items,tracking_categories,applied_credit_notes,company,employee" - | "line_items,tracking_categories,applied_credit_notes,company,employee,accounting_period" - | "line_items,tracking_categories,applied_credit_notes,company,employee,accounting_period,payment_term" - | "line_items,tracking_categories,applied_credit_notes,company,employee,payment_term" - | "line_items,tracking_categories,applied_credit_notes,company,payment_term" - | "line_items,tracking_categories,applied_credit_notes,contact" - | "line_items,tracking_categories,applied_credit_notes,contact,accounting_period" - | "line_items,tracking_categories,applied_credit_notes,contact,accounting_period,payment_term" - | "line_items,tracking_categories,applied_credit_notes,contact,company" - | "line_items,tracking_categories,applied_credit_notes,contact,company,accounting_period" - | "line_items,tracking_categories,applied_credit_notes,contact,company,accounting_period,payment_term" - | "line_items,tracking_categories,applied_credit_notes,contact,company,employee" - | "line_items,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period" - | "line_items,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "line_items,tracking_categories,applied_credit_notes,contact,company,employee,payment_term" - | "line_items,tracking_categories,applied_credit_notes,contact,company,payment_term" - | "line_items,tracking_categories,applied_credit_notes,contact,employee" - | "line_items,tracking_categories,applied_credit_notes,contact,employee,accounting_period" - | "line_items,tracking_categories,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "line_items,tracking_categories,applied_credit_notes,contact,employee,payment_term" - | "line_items,tracking_categories,applied_credit_notes,contact,payment_term" - | "line_items,tracking_categories,applied_credit_notes,employee" - | "line_items,tracking_categories,applied_credit_notes,employee,accounting_period" - | "line_items,tracking_categories,applied_credit_notes,employee,accounting_period,payment_term" - | "line_items,tracking_categories,applied_credit_notes,employee,payment_term" - | "line_items,tracking_categories,applied_credit_notes,payment_term" - | "line_items,tracking_categories,applied_vendor_credits" - | "line_items,tracking_categories,applied_vendor_credits,accounting_period" - | "line_items,tracking_categories,applied_vendor_credits,accounting_period,payment_term" - | "line_items,tracking_categories,applied_vendor_credits,company" - | "line_items,tracking_categories,applied_vendor_credits,company,accounting_period" - | "line_items,tracking_categories,applied_vendor_credits,company,accounting_period,payment_term" - | "line_items,tracking_categories,applied_vendor_credits,company,employee" - | "line_items,tracking_categories,applied_vendor_credits,company,employee,accounting_period" - | "line_items,tracking_categories,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "line_items,tracking_categories,applied_vendor_credits,company,employee,payment_term" - | "line_items,tracking_categories,applied_vendor_credits,company,payment_term" - | "line_items,tracking_categories,applied_vendor_credits,contact" - | "line_items,tracking_categories,applied_vendor_credits,contact,accounting_period" - | "line_items,tracking_categories,applied_vendor_credits,contact,accounting_period,payment_term" - | "line_items,tracking_categories,applied_vendor_credits,contact,company" - | "line_items,tracking_categories,applied_vendor_credits,contact,company,accounting_period" - | "line_items,tracking_categories,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "line_items,tracking_categories,applied_vendor_credits,contact,company,employee" - | "line_items,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period" - | "line_items,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "line_items,tracking_categories,applied_vendor_credits,contact,company,employee,payment_term" - | "line_items,tracking_categories,applied_vendor_credits,contact,company,payment_term" - | "line_items,tracking_categories,applied_vendor_credits,contact,employee" - | "line_items,tracking_categories,applied_vendor_credits,contact,employee,accounting_period" - | "line_items,tracking_categories,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "line_items,tracking_categories,applied_vendor_credits,contact,employee,payment_term" - | "line_items,tracking_categories,applied_vendor_credits,contact,payment_term" - | "line_items,tracking_categories,applied_vendor_credits,employee" - | "line_items,tracking_categories,applied_vendor_credits,employee,accounting_period" - | "line_items,tracking_categories,applied_vendor_credits,employee,accounting_period,payment_term" - | "line_items,tracking_categories,applied_vendor_credits,employee,payment_term" - | "line_items,tracking_categories,applied_vendor_credits,payment_term" - | "line_items,tracking_categories,company" - | "line_items,tracking_categories,company,accounting_period" - | "line_items,tracking_categories,company,accounting_period,payment_term" - | "line_items,tracking_categories,company,employee" - | "line_items,tracking_categories,company,employee,accounting_period" - | "line_items,tracking_categories,company,employee,accounting_period,payment_term" - | "line_items,tracking_categories,company,employee,payment_term" - | "line_items,tracking_categories,company,payment_term" - | "line_items,tracking_categories,contact" - | "line_items,tracking_categories,contact,accounting_period" - | "line_items,tracking_categories,contact,accounting_period,payment_term" - | "line_items,tracking_categories,contact,company" - | "line_items,tracking_categories,contact,company,accounting_period" - | "line_items,tracking_categories,contact,company,accounting_period,payment_term" - | "line_items,tracking_categories,contact,company,employee" - | "line_items,tracking_categories,contact,company,employee,accounting_period" - | "line_items,tracking_categories,contact,company,employee,accounting_period,payment_term" - | "line_items,tracking_categories,contact,company,employee,payment_term" - | "line_items,tracking_categories,contact,company,payment_term" - | "line_items,tracking_categories,contact,employee" - | "line_items,tracking_categories,contact,employee,accounting_period" - | "line_items,tracking_categories,contact,employee,accounting_period,payment_term" - | "line_items,tracking_categories,contact,employee,payment_term" - | "line_items,tracking_categories,contact,payment_term" - | "line_items,tracking_categories,employee" - | "line_items,tracking_categories,employee,accounting_period" - | "line_items,tracking_categories,employee,accounting_period,payment_term" - | "line_items,tracking_categories,employee,payment_term" - | "line_items,tracking_categories,payment_term" - | "line_items,tracking_categories,purchase_orders" - | "line_items,tracking_categories,purchase_orders,accounting_period" - | "line_items,tracking_categories,purchase_orders,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,accounting_period" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,company" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,company,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,employee" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,company" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,payment_term" - | "line_items,tracking_categories,purchase_orders,company" - | "line_items,tracking_categories,purchase_orders,company,accounting_period" - | "line_items,tracking_categories,purchase_orders,company,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,company,employee" - | "line_items,tracking_categories,purchase_orders,company,employee,accounting_period" - | "line_items,tracking_categories,purchase_orders,company,employee,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,company,employee,payment_term" - | "line_items,tracking_categories,purchase_orders,company,payment_term" - | "line_items,tracking_categories,purchase_orders,contact" - | "line_items,tracking_categories,purchase_orders,contact,accounting_period" - | "line_items,tracking_categories,purchase_orders,contact,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,contact,company" - | "line_items,tracking_categories,purchase_orders,contact,company,accounting_period" - | "line_items,tracking_categories,purchase_orders,contact,company,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,contact,company,employee" - | "line_items,tracking_categories,purchase_orders,contact,company,employee,accounting_period" - | "line_items,tracking_categories,purchase_orders,contact,company,employee,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,contact,company,employee,payment_term" - | "line_items,tracking_categories,purchase_orders,contact,company,payment_term" - | "line_items,tracking_categories,purchase_orders,contact,employee" - | "line_items,tracking_categories,purchase_orders,contact,employee,accounting_period" - | "line_items,tracking_categories,purchase_orders,contact,employee,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,contact,employee,payment_term" - | "line_items,tracking_categories,purchase_orders,contact,payment_term" - | "line_items,tracking_categories,purchase_orders,employee" - | "line_items,tracking_categories,purchase_orders,employee,accounting_period" - | "line_items,tracking_categories,purchase_orders,employee,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,employee,payment_term" - | "line_items,tracking_categories,purchase_orders,payment_term" - | "payment_term" - | "payments" - | "payments,accounting_period" - | "payments,accounting_period,payment_term" - | "payments,applied_credit_notes" - | "payments,applied_credit_notes,accounting_period" - | "payments,applied_credit_notes,accounting_period,payment_term" - | "payments,applied_credit_notes,applied_vendor_credits" - | "payments,applied_credit_notes,applied_vendor_credits,accounting_period" - | "payments,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "payments,applied_credit_notes,applied_vendor_credits,company" - | "payments,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "payments,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,applied_credit_notes,applied_vendor_credits,company,employee" - | "payments,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "payments,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "payments,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "payments,applied_credit_notes,applied_vendor_credits,contact" - | "payments,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "payments,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,applied_credit_notes,applied_vendor_credits,contact,company" - | "payments,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "payments,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "payments,applied_credit_notes,applied_vendor_credits,contact,employee" - | "payments,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "payments,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "payments,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "payments,applied_credit_notes,applied_vendor_credits,employee" - | "payments,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "payments,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "payments,applied_credit_notes,applied_vendor_credits,payment_term" - | "payments,applied_credit_notes,company" - | "payments,applied_credit_notes,company,accounting_period" - | "payments,applied_credit_notes,company,accounting_period,payment_term" - | "payments,applied_credit_notes,company,employee" - | "payments,applied_credit_notes,company,employee,accounting_period" - | "payments,applied_credit_notes,company,employee,accounting_period,payment_term" - | "payments,applied_credit_notes,company,employee,payment_term" - | "payments,applied_credit_notes,company,payment_term" - | "payments,applied_credit_notes,contact" - | "payments,applied_credit_notes,contact,accounting_period" - | "payments,applied_credit_notes,contact,accounting_period,payment_term" - | "payments,applied_credit_notes,contact,company" - | "payments,applied_credit_notes,contact,company,accounting_period" - | "payments,applied_credit_notes,contact,company,accounting_period,payment_term" - | "payments,applied_credit_notes,contact,company,employee" - | "payments,applied_credit_notes,contact,company,employee,accounting_period" - | "payments,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "payments,applied_credit_notes,contact,company,employee,payment_term" - | "payments,applied_credit_notes,contact,company,payment_term" - | "payments,applied_credit_notes,contact,employee" - | "payments,applied_credit_notes,contact,employee,accounting_period" - | "payments,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "payments,applied_credit_notes,contact,employee,payment_term" - | "payments,applied_credit_notes,contact,payment_term" - | "payments,applied_credit_notes,employee" - | "payments,applied_credit_notes,employee,accounting_period" - | "payments,applied_credit_notes,employee,accounting_period,payment_term" - | "payments,applied_credit_notes,employee,payment_term" - | "payments,applied_credit_notes,payment_term" - | "payments,applied_payments" - | "payments,applied_payments,accounting_period" - | "payments,applied_payments,accounting_period,payment_term" - | "payments,applied_payments,applied_credit_notes" - | "payments,applied_payments,applied_credit_notes,accounting_period" - | "payments,applied_payments,applied_credit_notes,accounting_period,payment_term" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,accounting_period" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,company" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,company,employee" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,company" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,employee" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,employee" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,payment_term" - | "payments,applied_payments,applied_credit_notes,company" - | "payments,applied_payments,applied_credit_notes,company,accounting_period" - | "payments,applied_payments,applied_credit_notes,company,accounting_period,payment_term" - | "payments,applied_payments,applied_credit_notes,company,employee" - | "payments,applied_payments,applied_credit_notes,company,employee,accounting_period" - | "payments,applied_payments,applied_credit_notes,company,employee,accounting_period,payment_term" - | "payments,applied_payments,applied_credit_notes,company,employee,payment_term" - | "payments,applied_payments,applied_credit_notes,company,payment_term" - | "payments,applied_payments,applied_credit_notes,contact" - | "payments,applied_payments,applied_credit_notes,contact,accounting_period" - | "payments,applied_payments,applied_credit_notes,contact,accounting_period,payment_term" - | "payments,applied_payments,applied_credit_notes,contact,company" - | "payments,applied_payments,applied_credit_notes,contact,company,accounting_period" - | "payments,applied_payments,applied_credit_notes,contact,company,accounting_period,payment_term" - | "payments,applied_payments,applied_credit_notes,contact,company,employee" - | "payments,applied_payments,applied_credit_notes,contact,company,employee,accounting_period" - | "payments,applied_payments,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,applied_credit_notes,contact,company,employee,payment_term" - | "payments,applied_payments,applied_credit_notes,contact,company,payment_term" - | "payments,applied_payments,applied_credit_notes,contact,employee" - | "payments,applied_payments,applied_credit_notes,contact,employee,accounting_period" - | "payments,applied_payments,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,applied_credit_notes,contact,employee,payment_term" - | "payments,applied_payments,applied_credit_notes,contact,payment_term" - | "payments,applied_payments,applied_credit_notes,employee" - | "payments,applied_payments,applied_credit_notes,employee,accounting_period" - | "payments,applied_payments,applied_credit_notes,employee,accounting_period,payment_term" - | "payments,applied_payments,applied_credit_notes,employee,payment_term" - | "payments,applied_payments,applied_credit_notes,payment_term" - | "payments,applied_payments,applied_vendor_credits" - | "payments,applied_payments,applied_vendor_credits,accounting_period" - | "payments,applied_payments,applied_vendor_credits,accounting_period,payment_term" - | "payments,applied_payments,applied_vendor_credits,company" - | "payments,applied_payments,applied_vendor_credits,company,accounting_period" - | "payments,applied_payments,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,applied_payments,applied_vendor_credits,company,employee" - | "payments,applied_payments,applied_vendor_credits,company,employee,accounting_period" - | "payments,applied_payments,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,applied_payments,applied_vendor_credits,company,employee,payment_term" - | "payments,applied_payments,applied_vendor_credits,company,payment_term" - | "payments,applied_payments,applied_vendor_credits,contact" - | "payments,applied_payments,applied_vendor_credits,contact,accounting_period" - | "payments,applied_payments,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,applied_payments,applied_vendor_credits,contact,company" - | "payments,applied_payments,applied_vendor_credits,contact,company,accounting_period" - | "payments,applied_payments,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,applied_payments,applied_vendor_credits,contact,company,employee" - | "payments,applied_payments,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,applied_payments,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,applied_payments,applied_vendor_credits,contact,company,payment_term" - | "payments,applied_payments,applied_vendor_credits,contact,employee" - | "payments,applied_payments,applied_vendor_credits,contact,employee,accounting_period" - | "payments,applied_payments,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,applied_vendor_credits,contact,employee,payment_term" - | "payments,applied_payments,applied_vendor_credits,contact,payment_term" - | "payments,applied_payments,applied_vendor_credits,employee" - | "payments,applied_payments,applied_vendor_credits,employee,accounting_period" - | "payments,applied_payments,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,applied_payments,applied_vendor_credits,employee,payment_term" - | "payments,applied_payments,applied_vendor_credits,payment_term" - | "payments,applied_payments,company" - | "payments,applied_payments,company,accounting_period" - | "payments,applied_payments,company,accounting_period,payment_term" - | "payments,applied_payments,company,employee" - | "payments,applied_payments,company,employee,accounting_period" - | "payments,applied_payments,company,employee,accounting_period,payment_term" - | "payments,applied_payments,company,employee,payment_term" - | "payments,applied_payments,company,payment_term" - | "payments,applied_payments,contact" - | "payments,applied_payments,contact,accounting_period" - | "payments,applied_payments,contact,accounting_period,payment_term" - | "payments,applied_payments,contact,company" - | "payments,applied_payments,contact,company,accounting_period" - | "payments,applied_payments,contact,company,accounting_period,payment_term" - | "payments,applied_payments,contact,company,employee" - | "payments,applied_payments,contact,company,employee,accounting_period" - | "payments,applied_payments,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,contact,company,employee,payment_term" - | "payments,applied_payments,contact,company,payment_term" - | "payments,applied_payments,contact,employee" - | "payments,applied_payments,contact,employee,accounting_period" - | "payments,applied_payments,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,contact,employee,payment_term" - | "payments,applied_payments,contact,payment_term" - | "payments,applied_payments,employee" - | "payments,applied_payments,employee,accounting_period" - | "payments,applied_payments,employee,accounting_period,payment_term" - | "payments,applied_payments,employee,payment_term" - | "payments,applied_payments,line_items" - | "payments,applied_payments,line_items,accounting_period" - | "payments,applied_payments,line_items,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes" - | "payments,applied_payments,line_items,applied_credit_notes,accounting_period" - | "payments,applied_payments,line_items,applied_credit_notes,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,accounting_period" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,employee" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,company" - | "payments,applied_payments,line_items,applied_credit_notes,company,accounting_period" - | "payments,applied_payments,line_items,applied_credit_notes,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,company,employee" - | "payments,applied_payments,line_items,applied_credit_notes,company,employee,accounting_period" - | "payments,applied_payments,line_items,applied_credit_notes,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,company,employee,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,company,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,contact" - | "payments,applied_payments,line_items,applied_credit_notes,contact,accounting_period" - | "payments,applied_payments,line_items,applied_credit_notes,contact,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,contact,company" - | "payments,applied_payments,line_items,applied_credit_notes,contact,company,accounting_period" - | "payments,applied_payments,line_items,applied_credit_notes,contact,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,contact,company,employee" - | "payments,applied_payments,line_items,applied_credit_notes,contact,company,employee,accounting_period" - | "payments,applied_payments,line_items,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,contact,company,employee,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,contact,company,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,contact,employee" - | "payments,applied_payments,line_items,applied_credit_notes,contact,employee,accounting_period" - | "payments,applied_payments,line_items,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,contact,employee,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,contact,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,employee" - | "payments,applied_payments,line_items,applied_credit_notes,employee,accounting_period" - | "payments,applied_payments,line_items,applied_credit_notes,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,employee,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,payment_term" - | "payments,applied_payments,line_items,applied_vendor_credits" - | "payments,applied_payments,line_items,applied_vendor_credits,accounting_period" - | "payments,applied_payments,line_items,applied_vendor_credits,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_vendor_credits,company" - | "payments,applied_payments,line_items,applied_vendor_credits,company,accounting_period" - | "payments,applied_payments,line_items,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_vendor_credits,company,employee" - | "payments,applied_payments,line_items,applied_vendor_credits,company,employee,accounting_period" - | "payments,applied_payments,line_items,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_vendor_credits,company,employee,payment_term" - | "payments,applied_payments,line_items,applied_vendor_credits,company,payment_term" - | "payments,applied_payments,line_items,applied_vendor_credits,contact" - | "payments,applied_payments,line_items,applied_vendor_credits,contact,accounting_period" - | "payments,applied_payments,line_items,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_vendor_credits,contact,company" - | "payments,applied_payments,line_items,applied_vendor_credits,contact,company,accounting_period" - | "payments,applied_payments,line_items,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_vendor_credits,contact,company,employee" - | "payments,applied_payments,line_items,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,applied_payments,line_items,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,applied_payments,line_items,applied_vendor_credits,contact,company,payment_term" - | "payments,applied_payments,line_items,applied_vendor_credits,contact,employee" - | "payments,applied_payments,line_items,applied_vendor_credits,contact,employee,accounting_period" - | "payments,applied_payments,line_items,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_vendor_credits,contact,employee,payment_term" - | "payments,applied_payments,line_items,applied_vendor_credits,contact,payment_term" - | "payments,applied_payments,line_items,applied_vendor_credits,employee" - | "payments,applied_payments,line_items,applied_vendor_credits,employee,accounting_period" - | "payments,applied_payments,line_items,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_vendor_credits,employee,payment_term" - | "payments,applied_payments,line_items,applied_vendor_credits,payment_term" - | "payments,applied_payments,line_items,company" - | "payments,applied_payments,line_items,company,accounting_period" - | "payments,applied_payments,line_items,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,company,employee" - | "payments,applied_payments,line_items,company,employee,accounting_period" - | "payments,applied_payments,line_items,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,company,employee,payment_term" - | "payments,applied_payments,line_items,company,payment_term" - | "payments,applied_payments,line_items,contact" - | "payments,applied_payments,line_items,contact,accounting_period" - | "payments,applied_payments,line_items,contact,accounting_period,payment_term" - | "payments,applied_payments,line_items,contact,company" - | "payments,applied_payments,line_items,contact,company,accounting_period" - | "payments,applied_payments,line_items,contact,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,contact,company,employee" - | "payments,applied_payments,line_items,contact,company,employee,accounting_period" - | "payments,applied_payments,line_items,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,contact,company,employee,payment_term" - | "payments,applied_payments,line_items,contact,company,payment_term" - | "payments,applied_payments,line_items,contact,employee" - | "payments,applied_payments,line_items,contact,employee,accounting_period" - | "payments,applied_payments,line_items,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,contact,employee,payment_term" - | "payments,applied_payments,line_items,contact,payment_term" - | "payments,applied_payments,line_items,employee" - | "payments,applied_payments,line_items,employee,accounting_period" - | "payments,applied_payments,line_items,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,employee,payment_term" - | "payments,applied_payments,line_items,payment_term" - | "payments,applied_payments,line_items,purchase_orders" - | "payments,applied_payments,line_items,purchase_orders,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,company" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,company,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,company,employee" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,company,employee,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,company,employee,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,company,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,employee" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,employee,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,employee,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,employee" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,employee,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,employee,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,company" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,company,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,company,employee" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,company,employee,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,company,employee,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,company,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,employee" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,employee" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,employee,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,employee,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,payment_term" - | "payments,applied_payments,line_items,purchase_orders,company" - | "payments,applied_payments,line_items,purchase_orders,company,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,company,employee" - | "payments,applied_payments,line_items,purchase_orders,company,employee,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,company,employee,payment_term" - | "payments,applied_payments,line_items,purchase_orders,company,payment_term" - | "payments,applied_payments,line_items,purchase_orders,contact" - | "payments,applied_payments,line_items,purchase_orders,contact,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,contact,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,contact,company" - | "payments,applied_payments,line_items,purchase_orders,contact,company,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,contact,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,contact,company,employee" - | "payments,applied_payments,line_items,purchase_orders,contact,company,employee,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,contact,company,employee,payment_term" - | "payments,applied_payments,line_items,purchase_orders,contact,company,payment_term" - | "payments,applied_payments,line_items,purchase_orders,contact,employee" - | "payments,applied_payments,line_items,purchase_orders,contact,employee,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,contact,employee,payment_term" - | "payments,applied_payments,line_items,purchase_orders,contact,payment_term" - | "payments,applied_payments,line_items,purchase_orders,employee" - | "payments,applied_payments,line_items,purchase_orders,employee,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,employee,payment_term" - | "payments,applied_payments,line_items,purchase_orders,payment_term" - | "payments,applied_payments,line_items,tracking_categories" - | "payments,applied_payments,line_items,tracking_categories,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,company" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,company,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,company,employee" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,company,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,company,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,company,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,employee" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,employee" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,company" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,company,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,company,employee" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,company,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,company,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,company,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,employee" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,employee" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,payment_term" - | "payments,applied_payments,line_items,tracking_categories,company" - | "payments,applied_payments,line_items,tracking_categories,company,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,company,employee" - | "payments,applied_payments,line_items,tracking_categories,company,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,company,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,company,payment_term" - | "payments,applied_payments,line_items,tracking_categories,contact" - | "payments,applied_payments,line_items,tracking_categories,contact,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,contact,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,contact,company" - | "payments,applied_payments,line_items,tracking_categories,contact,company,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,contact,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,contact,company,employee" - | "payments,applied_payments,line_items,tracking_categories,contact,company,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,contact,company,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,contact,company,payment_term" - | "payments,applied_payments,line_items,tracking_categories,contact,employee" - | "payments,applied_payments,line_items,tracking_categories,contact,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,contact,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,contact,payment_term" - | "payments,applied_payments,line_items,tracking_categories,employee" - | "payments,applied_payments,line_items,tracking_categories,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,company" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,company,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,company,employee" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,company,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,company,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,company,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,company" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,company,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,company,employee" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,company,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,company,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,company,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,employee" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,employee" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,payment_term" - | "payments,applied_payments,payment_term" - | "payments,applied_payments,purchase_orders" - | "payments,applied_payments,purchase_orders,accounting_period" - | "payments,applied_payments,purchase_orders,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes" - | "payments,applied_payments,purchase_orders,applied_credit_notes,accounting_period" - | "payments,applied_payments,purchase_orders,applied_credit_notes,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,company" - | "payments,applied_payments,purchase_orders,applied_credit_notes,company,accounting_period" - | "payments,applied_payments,purchase_orders,applied_credit_notes,company,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,company,employee" - | "payments,applied_payments,purchase_orders,applied_credit_notes,company,employee,accounting_period" - | "payments,applied_payments,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,company,employee,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,company,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,contact" - | "payments,applied_payments,purchase_orders,applied_credit_notes,contact,accounting_period" - | "payments,applied_payments,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,contact,company" - | "payments,applied_payments,purchase_orders,applied_credit_notes,contact,company,accounting_period" - | "payments,applied_payments,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,contact,company,employee" - | "payments,applied_payments,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period" - | "payments,applied_payments,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,contact,company,employee,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,contact,company,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,contact,employee" - | "payments,applied_payments,purchase_orders,applied_credit_notes,contact,employee,accounting_period" - | "payments,applied_payments,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,contact,employee,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,contact,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,employee" - | "payments,applied_payments,purchase_orders,applied_credit_notes,employee,accounting_period" - | "payments,applied_payments,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,employee,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,payment_term" - | "payments,applied_payments,purchase_orders,applied_vendor_credits" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,accounting_period" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,company" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,company,accounting_period" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,company,employee" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,company,employee,accounting_period" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,company,employee,payment_term" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,company,payment_term" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,contact" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,accounting_period" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,company" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,company,accounting_period" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,company,employee" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,company,payment_term" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,employee" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,employee,accounting_period" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,employee,payment_term" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,payment_term" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,employee" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,employee,accounting_period" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,employee,payment_term" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,payment_term" - | "payments,applied_payments,purchase_orders,company" - | "payments,applied_payments,purchase_orders,company,accounting_period" - | "payments,applied_payments,purchase_orders,company,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,company,employee" - | "payments,applied_payments,purchase_orders,company,employee,accounting_period" - | "payments,applied_payments,purchase_orders,company,employee,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,company,employee,payment_term" - | "payments,applied_payments,purchase_orders,company,payment_term" - | "payments,applied_payments,purchase_orders,contact" - | "payments,applied_payments,purchase_orders,contact,accounting_period" - | "payments,applied_payments,purchase_orders,contact,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,contact,company" - | "payments,applied_payments,purchase_orders,contact,company,accounting_period" - | "payments,applied_payments,purchase_orders,contact,company,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,contact,company,employee" - | "payments,applied_payments,purchase_orders,contact,company,employee,accounting_period" - | "payments,applied_payments,purchase_orders,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,contact,company,employee,payment_term" - | "payments,applied_payments,purchase_orders,contact,company,payment_term" - | "payments,applied_payments,purchase_orders,contact,employee" - | "payments,applied_payments,purchase_orders,contact,employee,accounting_period" - | "payments,applied_payments,purchase_orders,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,contact,employee,payment_term" - | "payments,applied_payments,purchase_orders,contact,payment_term" - | "payments,applied_payments,purchase_orders,employee" - | "payments,applied_payments,purchase_orders,employee,accounting_period" - | "payments,applied_payments,purchase_orders,employee,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,employee,payment_term" - | "payments,applied_payments,purchase_orders,payment_term" - | "payments,applied_payments,tracking_categories" - | "payments,applied_payments,tracking_categories,accounting_period" - | "payments,applied_payments,tracking_categories,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes" - | "payments,applied_payments,tracking_categories,applied_credit_notes,accounting_period" - | "payments,applied_payments,tracking_categories,applied_credit_notes,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,company" - | "payments,applied_payments,tracking_categories,applied_credit_notes,company,accounting_period" - | "payments,applied_payments,tracking_categories,applied_credit_notes,company,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,company,employee" - | "payments,applied_payments,tracking_categories,applied_credit_notes,company,employee,accounting_period" - | "payments,applied_payments,tracking_categories,applied_credit_notes,company,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,company,employee,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,company,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,contact" - | "payments,applied_payments,tracking_categories,applied_credit_notes,contact,accounting_period" - | "payments,applied_payments,tracking_categories,applied_credit_notes,contact,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,contact,company" - | "payments,applied_payments,tracking_categories,applied_credit_notes,contact,company,accounting_period" - | "payments,applied_payments,tracking_categories,applied_credit_notes,contact,company,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,contact,company,employee" - | "payments,applied_payments,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period" - | "payments,applied_payments,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,contact,company,employee,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,contact,company,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,contact,employee" - | "payments,applied_payments,tracking_categories,applied_credit_notes,contact,employee,accounting_period" - | "payments,applied_payments,tracking_categories,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,contact,employee,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,contact,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,employee" - | "payments,applied_payments,tracking_categories,applied_credit_notes,employee,accounting_period" - | "payments,applied_payments,tracking_categories,applied_credit_notes,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,employee,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,payment_term" - | "payments,applied_payments,tracking_categories,applied_vendor_credits" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,accounting_period" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,company" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,company,accounting_period" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,company,employee" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,company,employee,accounting_period" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,company,employee,payment_term" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,company,payment_term" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,contact" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,accounting_period" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,company" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,company,accounting_period" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,company,employee" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,company,payment_term" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,employee" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,employee,accounting_period" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,employee,payment_term" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,payment_term" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,employee" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,employee,accounting_period" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,employee,payment_term" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,payment_term" - | "payments,applied_payments,tracking_categories,company" - | "payments,applied_payments,tracking_categories,company,accounting_period" - | "payments,applied_payments,tracking_categories,company,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,company,employee" - | "payments,applied_payments,tracking_categories,company,employee,accounting_period" - | "payments,applied_payments,tracking_categories,company,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,company,employee,payment_term" - | "payments,applied_payments,tracking_categories,company,payment_term" - | "payments,applied_payments,tracking_categories,contact" - | "payments,applied_payments,tracking_categories,contact,accounting_period" - | "payments,applied_payments,tracking_categories,contact,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,contact,company" - | "payments,applied_payments,tracking_categories,contact,company,accounting_period" - | "payments,applied_payments,tracking_categories,contact,company,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,contact,company,employee" - | "payments,applied_payments,tracking_categories,contact,company,employee,accounting_period" - | "payments,applied_payments,tracking_categories,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,contact,company,employee,payment_term" - | "payments,applied_payments,tracking_categories,contact,company,payment_term" - | "payments,applied_payments,tracking_categories,contact,employee" - | "payments,applied_payments,tracking_categories,contact,employee,accounting_period" - | "payments,applied_payments,tracking_categories,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,contact,employee,payment_term" - | "payments,applied_payments,tracking_categories,contact,payment_term" - | "payments,applied_payments,tracking_categories,employee" - | "payments,applied_payments,tracking_categories,employee,accounting_period" - | "payments,applied_payments,tracking_categories,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,employee,payment_term" - | "payments,applied_payments,tracking_categories,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders" - | "payments,applied_payments,tracking_categories,purchase_orders,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,employee" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,employee,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,employee" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,company" - | "payments,applied_payments,tracking_categories,purchase_orders,company,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,company,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,company,employee" - | "payments,applied_payments,tracking_categories,purchase_orders,company,employee,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,company,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,company,employee,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,company,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,contact" - | "payments,applied_payments,tracking_categories,purchase_orders,contact,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,contact,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,contact,company" - | "payments,applied_payments,tracking_categories,purchase_orders,contact,company,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,contact,company,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,contact,company,employee" - | "payments,applied_payments,tracking_categories,purchase_orders,contact,company,employee,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,contact,company,employee,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,contact,company,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,contact,employee" - | "payments,applied_payments,tracking_categories,purchase_orders,contact,employee,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,contact,employee,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,contact,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,employee" - | "payments,applied_payments,tracking_categories,purchase_orders,employee,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,employee,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,payment_term" - | "payments,applied_vendor_credits" - | "payments,applied_vendor_credits,accounting_period" - | "payments,applied_vendor_credits,accounting_period,payment_term" - | "payments,applied_vendor_credits,company" - | "payments,applied_vendor_credits,company,accounting_period" - | "payments,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,applied_vendor_credits,company,employee" - | "payments,applied_vendor_credits,company,employee,accounting_period" - | "payments,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,applied_vendor_credits,company,employee,payment_term" - | "payments,applied_vendor_credits,company,payment_term" - | "payments,applied_vendor_credits,contact" - | "payments,applied_vendor_credits,contact,accounting_period" - | "payments,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,applied_vendor_credits,contact,company" - | "payments,applied_vendor_credits,contact,company,accounting_period" - | "payments,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,applied_vendor_credits,contact,company,employee" - | "payments,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,applied_vendor_credits,contact,company,payment_term" - | "payments,applied_vendor_credits,contact,employee" - | "payments,applied_vendor_credits,contact,employee,accounting_period" - | "payments,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,applied_vendor_credits,contact,employee,payment_term" - | "payments,applied_vendor_credits,contact,payment_term" - | "payments,applied_vendor_credits,employee" - | "payments,applied_vendor_credits,employee,accounting_period" - | "payments,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,applied_vendor_credits,employee,payment_term" - | "payments,applied_vendor_credits,payment_term" - | "payments,company" - | "payments,company,accounting_period" - | "payments,company,accounting_period,payment_term" - | "payments,company,employee" - | "payments,company,employee,accounting_period" - | "payments,company,employee,accounting_period,payment_term" - | "payments,company,employee,payment_term" - | "payments,company,payment_term" - | "payments,contact" - | "payments,contact,accounting_period" - | "payments,contact,accounting_period,payment_term" - | "payments,contact,company" - | "payments,contact,company,accounting_period" - | "payments,contact,company,accounting_period,payment_term" - | "payments,contact,company,employee" - | "payments,contact,company,employee,accounting_period" - | "payments,contact,company,employee,accounting_period,payment_term" - | "payments,contact,company,employee,payment_term" - | "payments,contact,company,payment_term" - | "payments,contact,employee" - | "payments,contact,employee,accounting_period" - | "payments,contact,employee,accounting_period,payment_term" - | "payments,contact,employee,payment_term" - | "payments,contact,payment_term" - | "payments,employee" - | "payments,employee,accounting_period" - | "payments,employee,accounting_period,payment_term" - | "payments,employee,payment_term" - | "payments,line_items" - | "payments,line_items,accounting_period" - | "payments,line_items,accounting_period,payment_term" - | "payments,line_items,applied_credit_notes" - | "payments,line_items,applied_credit_notes,accounting_period" - | "payments,line_items,applied_credit_notes,accounting_period,payment_term" - | "payments,line_items,applied_credit_notes,applied_vendor_credits" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,accounting_period" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,company" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,contact" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,employee" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,payment_term" - | "payments,line_items,applied_credit_notes,company" - | "payments,line_items,applied_credit_notes,company,accounting_period" - | "payments,line_items,applied_credit_notes,company,accounting_period,payment_term" - | "payments,line_items,applied_credit_notes,company,employee" - | "payments,line_items,applied_credit_notes,company,employee,accounting_period" - | "payments,line_items,applied_credit_notes,company,employee,accounting_period,payment_term" - | "payments,line_items,applied_credit_notes,company,employee,payment_term" - | "payments,line_items,applied_credit_notes,company,payment_term" - | "payments,line_items,applied_credit_notes,contact" - | "payments,line_items,applied_credit_notes,contact,accounting_period" - | "payments,line_items,applied_credit_notes,contact,accounting_period,payment_term" - | "payments,line_items,applied_credit_notes,contact,company" - | "payments,line_items,applied_credit_notes,contact,company,accounting_period" - | "payments,line_items,applied_credit_notes,contact,company,accounting_period,payment_term" - | "payments,line_items,applied_credit_notes,contact,company,employee" - | "payments,line_items,applied_credit_notes,contact,company,employee,accounting_period" - | "payments,line_items,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "payments,line_items,applied_credit_notes,contact,company,employee,payment_term" - | "payments,line_items,applied_credit_notes,contact,company,payment_term" - | "payments,line_items,applied_credit_notes,contact,employee" - | "payments,line_items,applied_credit_notes,contact,employee,accounting_period" - | "payments,line_items,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "payments,line_items,applied_credit_notes,contact,employee,payment_term" - | "payments,line_items,applied_credit_notes,contact,payment_term" - | "payments,line_items,applied_credit_notes,employee" - | "payments,line_items,applied_credit_notes,employee,accounting_period" - | "payments,line_items,applied_credit_notes,employee,accounting_period,payment_term" - | "payments,line_items,applied_credit_notes,employee,payment_term" - | "payments,line_items,applied_credit_notes,payment_term" - | "payments,line_items,applied_vendor_credits" - | "payments,line_items,applied_vendor_credits,accounting_period" - | "payments,line_items,applied_vendor_credits,accounting_period,payment_term" - | "payments,line_items,applied_vendor_credits,company" - | "payments,line_items,applied_vendor_credits,company,accounting_period" - | "payments,line_items,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,line_items,applied_vendor_credits,company,employee" - | "payments,line_items,applied_vendor_credits,company,employee,accounting_period" - | "payments,line_items,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,line_items,applied_vendor_credits,company,employee,payment_term" - | "payments,line_items,applied_vendor_credits,company,payment_term" - | "payments,line_items,applied_vendor_credits,contact" - | "payments,line_items,applied_vendor_credits,contact,accounting_period" - | "payments,line_items,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,line_items,applied_vendor_credits,contact,company" - | "payments,line_items,applied_vendor_credits,contact,company,accounting_period" - | "payments,line_items,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,line_items,applied_vendor_credits,contact,company,employee" - | "payments,line_items,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,line_items,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,line_items,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,line_items,applied_vendor_credits,contact,company,payment_term" - | "payments,line_items,applied_vendor_credits,contact,employee" - | "payments,line_items,applied_vendor_credits,contact,employee,accounting_period" - | "payments,line_items,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,line_items,applied_vendor_credits,contact,employee,payment_term" - | "payments,line_items,applied_vendor_credits,contact,payment_term" - | "payments,line_items,applied_vendor_credits,employee" - | "payments,line_items,applied_vendor_credits,employee,accounting_period" - | "payments,line_items,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,line_items,applied_vendor_credits,employee,payment_term" - | "payments,line_items,applied_vendor_credits,payment_term" - | "payments,line_items,company" - | "payments,line_items,company,accounting_period" - | "payments,line_items,company,accounting_period,payment_term" - | "payments,line_items,company,employee" - | "payments,line_items,company,employee,accounting_period" - | "payments,line_items,company,employee,accounting_period,payment_term" - | "payments,line_items,company,employee,payment_term" - | "payments,line_items,company,payment_term" - | "payments,line_items,contact" - | "payments,line_items,contact,accounting_period" - | "payments,line_items,contact,accounting_period,payment_term" - | "payments,line_items,contact,company" - | "payments,line_items,contact,company,accounting_period" - | "payments,line_items,contact,company,accounting_period,payment_term" - | "payments,line_items,contact,company,employee" - | "payments,line_items,contact,company,employee,accounting_period" - | "payments,line_items,contact,company,employee,accounting_period,payment_term" - | "payments,line_items,contact,company,employee,payment_term" - | "payments,line_items,contact,company,payment_term" - | "payments,line_items,contact,employee" - | "payments,line_items,contact,employee,accounting_period" - | "payments,line_items,contact,employee,accounting_period,payment_term" - | "payments,line_items,contact,employee,payment_term" - | "payments,line_items,contact,payment_term" - | "payments,line_items,employee" - | "payments,line_items,employee,accounting_period" - | "payments,line_items,employee,accounting_period,payment_term" - | "payments,line_items,employee,payment_term" - | "payments,line_items,payment_term" - | "payments,line_items,purchase_orders" - | "payments,line_items,purchase_orders,accounting_period" - | "payments,line_items,purchase_orders,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes" - | "payments,line_items,purchase_orders,applied_credit_notes,accounting_period" - | "payments,line_items,purchase_orders,applied_credit_notes,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,company" - | "payments,line_items,purchase_orders,applied_credit_notes,company,accounting_period" - | "payments,line_items,purchase_orders,applied_credit_notes,company,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,company,employee" - | "payments,line_items,purchase_orders,applied_credit_notes,company,employee,accounting_period" - | "payments,line_items,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,company,employee,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,company,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,contact" - | "payments,line_items,purchase_orders,applied_credit_notes,contact,accounting_period" - | "payments,line_items,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,contact,company" - | "payments,line_items,purchase_orders,applied_credit_notes,contact,company,accounting_period" - | "payments,line_items,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee" - | "payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period" - | "payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,contact,company,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,contact,employee" - | "payments,line_items,purchase_orders,applied_credit_notes,contact,employee,accounting_period" - | "payments,line_items,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,contact,employee,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,contact,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,employee" - | "payments,line_items,purchase_orders,applied_credit_notes,employee,accounting_period" - | "payments,line_items,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,employee,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,payment_term" - | "payments,line_items,purchase_orders,applied_vendor_credits" - | "payments,line_items,purchase_orders,applied_vendor_credits,accounting_period" - | "payments,line_items,purchase_orders,applied_vendor_credits,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_vendor_credits,company" - | "payments,line_items,purchase_orders,applied_vendor_credits,company,accounting_period" - | "payments,line_items,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_vendor_credits,company,employee" - | "payments,line_items,purchase_orders,applied_vendor_credits,company,employee,accounting_period" - | "payments,line_items,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_vendor_credits,company,employee,payment_term" - | "payments,line_items,purchase_orders,applied_vendor_credits,company,payment_term" - | "payments,line_items,purchase_orders,applied_vendor_credits,contact" - | "payments,line_items,purchase_orders,applied_vendor_credits,contact,accounting_period" - | "payments,line_items,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_vendor_credits,contact,company" - | "payments,line_items,purchase_orders,applied_vendor_credits,contact,company,accounting_period" - | "payments,line_items,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee" - | "payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,line_items,purchase_orders,applied_vendor_credits,contact,company,payment_term" - | "payments,line_items,purchase_orders,applied_vendor_credits,contact,employee" - | "payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,accounting_period" - | "payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,payment_term" - | "payments,line_items,purchase_orders,applied_vendor_credits,contact,payment_term" - | "payments,line_items,purchase_orders,applied_vendor_credits,employee" - | "payments,line_items,purchase_orders,applied_vendor_credits,employee,accounting_period" - | "payments,line_items,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_vendor_credits,employee,payment_term" - | "payments,line_items,purchase_orders,applied_vendor_credits,payment_term" - | "payments,line_items,purchase_orders,company" - | "payments,line_items,purchase_orders,company,accounting_period" - | "payments,line_items,purchase_orders,company,accounting_period,payment_term" - | "payments,line_items,purchase_orders,company,employee" - | "payments,line_items,purchase_orders,company,employee,accounting_period" - | "payments,line_items,purchase_orders,company,employee,accounting_period,payment_term" - | "payments,line_items,purchase_orders,company,employee,payment_term" - | "payments,line_items,purchase_orders,company,payment_term" - | "payments,line_items,purchase_orders,contact" - | "payments,line_items,purchase_orders,contact,accounting_period" - | "payments,line_items,purchase_orders,contact,accounting_period,payment_term" - | "payments,line_items,purchase_orders,contact,company" - | "payments,line_items,purchase_orders,contact,company,accounting_period" - | "payments,line_items,purchase_orders,contact,company,accounting_period,payment_term" - | "payments,line_items,purchase_orders,contact,company,employee" - | "payments,line_items,purchase_orders,contact,company,employee,accounting_period" - | "payments,line_items,purchase_orders,contact,company,employee,accounting_period,payment_term" - | "payments,line_items,purchase_orders,contact,company,employee,payment_term" - | "payments,line_items,purchase_orders,contact,company,payment_term" - | "payments,line_items,purchase_orders,contact,employee" - | "payments,line_items,purchase_orders,contact,employee,accounting_period" - | "payments,line_items,purchase_orders,contact,employee,accounting_period,payment_term" - | "payments,line_items,purchase_orders,contact,employee,payment_term" - | "payments,line_items,purchase_orders,contact,payment_term" - | "payments,line_items,purchase_orders,employee" - | "payments,line_items,purchase_orders,employee,accounting_period" - | "payments,line_items,purchase_orders,employee,accounting_period,payment_term" - | "payments,line_items,purchase_orders,employee,payment_term" - | "payments,line_items,purchase_orders,payment_term" - | "payments,line_items,tracking_categories" - | "payments,line_items,tracking_categories,accounting_period" - | "payments,line_items,tracking_categories,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes" - | "payments,line_items,tracking_categories,applied_credit_notes,accounting_period" - | "payments,line_items,tracking_categories,applied_credit_notes,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,company" - | "payments,line_items,tracking_categories,applied_credit_notes,company,accounting_period" - | "payments,line_items,tracking_categories,applied_credit_notes,company,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,company,employee" - | "payments,line_items,tracking_categories,applied_credit_notes,company,employee,accounting_period" - | "payments,line_items,tracking_categories,applied_credit_notes,company,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,company,employee,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,company,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,contact" - | "payments,line_items,tracking_categories,applied_credit_notes,contact,accounting_period" - | "payments,line_items,tracking_categories,applied_credit_notes,contact,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,contact,company" - | "payments,line_items,tracking_categories,applied_credit_notes,contact,company,accounting_period" - | "payments,line_items,tracking_categories,applied_credit_notes,contact,company,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee" - | "payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period" - | "payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,contact,company,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,contact,employee" - | "payments,line_items,tracking_categories,applied_credit_notes,contact,employee,accounting_period" - | "payments,line_items,tracking_categories,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,contact,employee,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,contact,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,employee" - | "payments,line_items,tracking_categories,applied_credit_notes,employee,accounting_period" - | "payments,line_items,tracking_categories,applied_credit_notes,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,employee,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,payment_term" - | "payments,line_items,tracking_categories,applied_vendor_credits" - | "payments,line_items,tracking_categories,applied_vendor_credits,accounting_period" - | "payments,line_items,tracking_categories,applied_vendor_credits,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_vendor_credits,company" - | "payments,line_items,tracking_categories,applied_vendor_credits,company,accounting_period" - | "payments,line_items,tracking_categories,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_vendor_credits,company,employee" - | "payments,line_items,tracking_categories,applied_vendor_credits,company,employee,accounting_period" - | "payments,line_items,tracking_categories,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_vendor_credits,company,employee,payment_term" - | "payments,line_items,tracking_categories,applied_vendor_credits,company,payment_term" - | "payments,line_items,tracking_categories,applied_vendor_credits,contact" - | "payments,line_items,tracking_categories,applied_vendor_credits,contact,accounting_period" - | "payments,line_items,tracking_categories,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_vendor_credits,contact,company" - | "payments,line_items,tracking_categories,applied_vendor_credits,contact,company,accounting_period" - | "payments,line_items,tracking_categories,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee" - | "payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,line_items,tracking_categories,applied_vendor_credits,contact,company,payment_term" - | "payments,line_items,tracking_categories,applied_vendor_credits,contact,employee" - | "payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,accounting_period" - | "payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,payment_term" - | "payments,line_items,tracking_categories,applied_vendor_credits,contact,payment_term" - | "payments,line_items,tracking_categories,applied_vendor_credits,employee" - | "payments,line_items,tracking_categories,applied_vendor_credits,employee,accounting_period" - | "payments,line_items,tracking_categories,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_vendor_credits,employee,payment_term" - | "payments,line_items,tracking_categories,applied_vendor_credits,payment_term" - | "payments,line_items,tracking_categories,company" - | "payments,line_items,tracking_categories,company,accounting_period" - | "payments,line_items,tracking_categories,company,accounting_period,payment_term" - | "payments,line_items,tracking_categories,company,employee" - | "payments,line_items,tracking_categories,company,employee,accounting_period" - | "payments,line_items,tracking_categories,company,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,company,employee,payment_term" - | "payments,line_items,tracking_categories,company,payment_term" - | "payments,line_items,tracking_categories,contact" - | "payments,line_items,tracking_categories,contact,accounting_period" - | "payments,line_items,tracking_categories,contact,accounting_period,payment_term" - | "payments,line_items,tracking_categories,contact,company" - | "payments,line_items,tracking_categories,contact,company,accounting_period" - | "payments,line_items,tracking_categories,contact,company,accounting_period,payment_term" - | "payments,line_items,tracking_categories,contact,company,employee" - | "payments,line_items,tracking_categories,contact,company,employee,accounting_period" - | "payments,line_items,tracking_categories,contact,company,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,contact,company,employee,payment_term" - | "payments,line_items,tracking_categories,contact,company,payment_term" - | "payments,line_items,tracking_categories,contact,employee" - | "payments,line_items,tracking_categories,contact,employee,accounting_period" - | "payments,line_items,tracking_categories,contact,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,contact,employee,payment_term" - | "payments,line_items,tracking_categories,contact,payment_term" - | "payments,line_items,tracking_categories,employee" - | "payments,line_items,tracking_categories,employee,accounting_period" - | "payments,line_items,tracking_categories,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,employee,payment_term" - | "payments,line_items,tracking_categories,payment_term" - | "payments,line_items,tracking_categories,purchase_orders" - | "payments,line_items,tracking_categories,purchase_orders,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,company" - | "payments,line_items,tracking_categories,purchase_orders,company,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,company,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,company,employee" - | "payments,line_items,tracking_categories,purchase_orders,company,employee,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,company,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,company,employee,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,company,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,contact" - | "payments,line_items,tracking_categories,purchase_orders,contact,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,contact,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,contact,company" - | "payments,line_items,tracking_categories,purchase_orders,contact,company,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,contact,company,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,contact,company,employee" - | "payments,line_items,tracking_categories,purchase_orders,contact,company,employee,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,contact,company,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,contact,company,employee,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,contact,company,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,contact,employee" - | "payments,line_items,tracking_categories,purchase_orders,contact,employee,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,contact,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,contact,employee,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,contact,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,employee" - | "payments,line_items,tracking_categories,purchase_orders,employee,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,employee,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,payment_term" - | "payments,payment_term" - | "payments,purchase_orders" - | "payments,purchase_orders,accounting_period" - | "payments,purchase_orders,accounting_period,payment_term" - | "payments,purchase_orders,applied_credit_notes" - | "payments,purchase_orders,applied_credit_notes,accounting_period" - | "payments,purchase_orders,applied_credit_notes,accounting_period,payment_term" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term" - | "payments,purchase_orders,applied_credit_notes,company" - | "payments,purchase_orders,applied_credit_notes,company,accounting_period" - | "payments,purchase_orders,applied_credit_notes,company,accounting_period,payment_term" - | "payments,purchase_orders,applied_credit_notes,company,employee" - | "payments,purchase_orders,applied_credit_notes,company,employee,accounting_period" - | "payments,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term" - | "payments,purchase_orders,applied_credit_notes,company,employee,payment_term" - | "payments,purchase_orders,applied_credit_notes,company,payment_term" - | "payments,purchase_orders,applied_credit_notes,contact" - | "payments,purchase_orders,applied_credit_notes,contact,accounting_period" - | "payments,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term" - | "payments,purchase_orders,applied_credit_notes,contact,company" - | "payments,purchase_orders,applied_credit_notes,contact,company,accounting_period" - | "payments,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term" - | "payments,purchase_orders,applied_credit_notes,contact,company,employee" - | "payments,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period" - | "payments,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "payments,purchase_orders,applied_credit_notes,contact,company,employee,payment_term" - | "payments,purchase_orders,applied_credit_notes,contact,company,payment_term" - | "payments,purchase_orders,applied_credit_notes,contact,employee" - | "payments,purchase_orders,applied_credit_notes,contact,employee,accounting_period" - | "payments,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "payments,purchase_orders,applied_credit_notes,contact,employee,payment_term" - | "payments,purchase_orders,applied_credit_notes,contact,payment_term" - | "payments,purchase_orders,applied_credit_notes,employee" - | "payments,purchase_orders,applied_credit_notes,employee,accounting_period" - | "payments,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term" - | "payments,purchase_orders,applied_credit_notes,employee,payment_term" - | "payments,purchase_orders,applied_credit_notes,payment_term" - | "payments,purchase_orders,applied_vendor_credits" - | "payments,purchase_orders,applied_vendor_credits,accounting_period" - | "payments,purchase_orders,applied_vendor_credits,accounting_period,payment_term" - | "payments,purchase_orders,applied_vendor_credits,company" - | "payments,purchase_orders,applied_vendor_credits,company,accounting_period" - | "payments,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,purchase_orders,applied_vendor_credits,company,employee" - | "payments,purchase_orders,applied_vendor_credits,company,employee,accounting_period" - | "payments,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,purchase_orders,applied_vendor_credits,company,employee,payment_term" - | "payments,purchase_orders,applied_vendor_credits,company,payment_term" - | "payments,purchase_orders,applied_vendor_credits,contact" - | "payments,purchase_orders,applied_vendor_credits,contact,accounting_period" - | "payments,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,purchase_orders,applied_vendor_credits,contact,company" - | "payments,purchase_orders,applied_vendor_credits,contact,company,accounting_period" - | "payments,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,purchase_orders,applied_vendor_credits,contact,company,employee" - | "payments,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,purchase_orders,applied_vendor_credits,contact,company,payment_term" - | "payments,purchase_orders,applied_vendor_credits,contact,employee" - | "payments,purchase_orders,applied_vendor_credits,contact,employee,accounting_period" - | "payments,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,purchase_orders,applied_vendor_credits,contact,employee,payment_term" - | "payments,purchase_orders,applied_vendor_credits,contact,payment_term" - | "payments,purchase_orders,applied_vendor_credits,employee" - | "payments,purchase_orders,applied_vendor_credits,employee,accounting_period" - | "payments,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,purchase_orders,applied_vendor_credits,employee,payment_term" - | "payments,purchase_orders,applied_vendor_credits,payment_term" - | "payments,purchase_orders,company" - | "payments,purchase_orders,company,accounting_period" - | "payments,purchase_orders,company,accounting_period,payment_term" - | "payments,purchase_orders,company,employee" - | "payments,purchase_orders,company,employee,accounting_period" - | "payments,purchase_orders,company,employee,accounting_period,payment_term" - | "payments,purchase_orders,company,employee,payment_term" - | "payments,purchase_orders,company,payment_term" - | "payments,purchase_orders,contact" - | "payments,purchase_orders,contact,accounting_period" - | "payments,purchase_orders,contact,accounting_period,payment_term" - | "payments,purchase_orders,contact,company" - | "payments,purchase_orders,contact,company,accounting_period" - | "payments,purchase_orders,contact,company,accounting_period,payment_term" - | "payments,purchase_orders,contact,company,employee" - | "payments,purchase_orders,contact,company,employee,accounting_period" - | "payments,purchase_orders,contact,company,employee,accounting_period,payment_term" - | "payments,purchase_orders,contact,company,employee,payment_term" - | "payments,purchase_orders,contact,company,payment_term" - | "payments,purchase_orders,contact,employee" - | "payments,purchase_orders,contact,employee,accounting_period" - | "payments,purchase_orders,contact,employee,accounting_period,payment_term" - | "payments,purchase_orders,contact,employee,payment_term" - | "payments,purchase_orders,contact,payment_term" - | "payments,purchase_orders,employee" - | "payments,purchase_orders,employee,accounting_period" - | "payments,purchase_orders,employee,accounting_period,payment_term" - | "payments,purchase_orders,employee,payment_term" - | "payments,purchase_orders,payment_term" - | "payments,tracking_categories" - | "payments,tracking_categories,accounting_period" - | "payments,tracking_categories,accounting_period,payment_term" - | "payments,tracking_categories,applied_credit_notes" - | "payments,tracking_categories,applied_credit_notes,accounting_period" - | "payments,tracking_categories,applied_credit_notes,accounting_period,payment_term" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,payment_term" - | "payments,tracking_categories,applied_credit_notes,company" - | "payments,tracking_categories,applied_credit_notes,company,accounting_period" - | "payments,tracking_categories,applied_credit_notes,company,accounting_period,payment_term" - | "payments,tracking_categories,applied_credit_notes,company,employee" - | "payments,tracking_categories,applied_credit_notes,company,employee,accounting_period" - | "payments,tracking_categories,applied_credit_notes,company,employee,accounting_period,payment_term" - | "payments,tracking_categories,applied_credit_notes,company,employee,payment_term" - | "payments,tracking_categories,applied_credit_notes,company,payment_term" - | "payments,tracking_categories,applied_credit_notes,contact" - | "payments,tracking_categories,applied_credit_notes,contact,accounting_period" - | "payments,tracking_categories,applied_credit_notes,contact,accounting_period,payment_term" - | "payments,tracking_categories,applied_credit_notes,contact,company" - | "payments,tracking_categories,applied_credit_notes,contact,company,accounting_period" - | "payments,tracking_categories,applied_credit_notes,contact,company,accounting_period,payment_term" - | "payments,tracking_categories,applied_credit_notes,contact,company,employee" - | "payments,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period" - | "payments,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "payments,tracking_categories,applied_credit_notes,contact,company,employee,payment_term" - | "payments,tracking_categories,applied_credit_notes,contact,company,payment_term" - | "payments,tracking_categories,applied_credit_notes,contact,employee" - | "payments,tracking_categories,applied_credit_notes,contact,employee,accounting_period" - | "payments,tracking_categories,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "payments,tracking_categories,applied_credit_notes,contact,employee,payment_term" - | "payments,tracking_categories,applied_credit_notes,contact,payment_term" - | "payments,tracking_categories,applied_credit_notes,employee" - | "payments,tracking_categories,applied_credit_notes,employee,accounting_period" - | "payments,tracking_categories,applied_credit_notes,employee,accounting_period,payment_term" - | "payments,tracking_categories,applied_credit_notes,employee,payment_term" - | "payments,tracking_categories,applied_credit_notes,payment_term" - | "payments,tracking_categories,applied_vendor_credits" - | "payments,tracking_categories,applied_vendor_credits,accounting_period" - | "payments,tracking_categories,applied_vendor_credits,accounting_period,payment_term" - | "payments,tracking_categories,applied_vendor_credits,company" - | "payments,tracking_categories,applied_vendor_credits,company,accounting_period" - | "payments,tracking_categories,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,tracking_categories,applied_vendor_credits,company,employee" - | "payments,tracking_categories,applied_vendor_credits,company,employee,accounting_period" - | "payments,tracking_categories,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,tracking_categories,applied_vendor_credits,company,employee,payment_term" - | "payments,tracking_categories,applied_vendor_credits,company,payment_term" - | "payments,tracking_categories,applied_vendor_credits,contact" - | "payments,tracking_categories,applied_vendor_credits,contact,accounting_period" - | "payments,tracking_categories,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,tracking_categories,applied_vendor_credits,contact,company" - | "payments,tracking_categories,applied_vendor_credits,contact,company,accounting_period" - | "payments,tracking_categories,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,tracking_categories,applied_vendor_credits,contact,company,employee" - | "payments,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,tracking_categories,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,tracking_categories,applied_vendor_credits,contact,company,payment_term" - | "payments,tracking_categories,applied_vendor_credits,contact,employee" - | "payments,tracking_categories,applied_vendor_credits,contact,employee,accounting_period" - | "payments,tracking_categories,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,tracking_categories,applied_vendor_credits,contact,employee,payment_term" - | "payments,tracking_categories,applied_vendor_credits,contact,payment_term" - | "payments,tracking_categories,applied_vendor_credits,employee" - | "payments,tracking_categories,applied_vendor_credits,employee,accounting_period" - | "payments,tracking_categories,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,tracking_categories,applied_vendor_credits,employee,payment_term" - | "payments,tracking_categories,applied_vendor_credits,payment_term" - | "payments,tracking_categories,company" - | "payments,tracking_categories,company,accounting_period" - | "payments,tracking_categories,company,accounting_period,payment_term" - | "payments,tracking_categories,company,employee" - | "payments,tracking_categories,company,employee,accounting_period" - | "payments,tracking_categories,company,employee,accounting_period,payment_term" - | "payments,tracking_categories,company,employee,payment_term" - | "payments,tracking_categories,company,payment_term" - | "payments,tracking_categories,contact" - | "payments,tracking_categories,contact,accounting_period" - | "payments,tracking_categories,contact,accounting_period,payment_term" - | "payments,tracking_categories,contact,company" - | "payments,tracking_categories,contact,company,accounting_period" - | "payments,tracking_categories,contact,company,accounting_period,payment_term" - | "payments,tracking_categories,contact,company,employee" - | "payments,tracking_categories,contact,company,employee,accounting_period" - | "payments,tracking_categories,contact,company,employee,accounting_period,payment_term" - | "payments,tracking_categories,contact,company,employee,payment_term" - | "payments,tracking_categories,contact,company,payment_term" - | "payments,tracking_categories,contact,employee" - | "payments,tracking_categories,contact,employee,accounting_period" - | "payments,tracking_categories,contact,employee,accounting_period,payment_term" - | "payments,tracking_categories,contact,employee,payment_term" - | "payments,tracking_categories,contact,payment_term" - | "payments,tracking_categories,employee" - | "payments,tracking_categories,employee,accounting_period" - | "payments,tracking_categories,employee,accounting_period,payment_term" - | "payments,tracking_categories,employee,payment_term" - | "payments,tracking_categories,payment_term" - | "payments,tracking_categories,purchase_orders" - | "payments,tracking_categories,purchase_orders,accounting_period" - | "payments,tracking_categories,purchase_orders,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,accounting_period" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,company" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,company,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,contact" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,employee" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,employee,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,payment_term" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,company" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,payment_term" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,company,payment_term" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,payment_term" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,payment_term" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,payment_term" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,employee" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,payment_term" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,payment_term" - | "payments,tracking_categories,purchase_orders,company" - | "payments,tracking_categories,purchase_orders,company,accounting_period" - | "payments,tracking_categories,purchase_orders,company,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,company,employee" - | "payments,tracking_categories,purchase_orders,company,employee,accounting_period" - | "payments,tracking_categories,purchase_orders,company,employee,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,company,employee,payment_term" - | "payments,tracking_categories,purchase_orders,company,payment_term" - | "payments,tracking_categories,purchase_orders,contact" - | "payments,tracking_categories,purchase_orders,contact,accounting_period" - | "payments,tracking_categories,purchase_orders,contact,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,contact,company" - | "payments,tracking_categories,purchase_orders,contact,company,accounting_period" - | "payments,tracking_categories,purchase_orders,contact,company,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,contact,company,employee" - | "payments,tracking_categories,purchase_orders,contact,company,employee,accounting_period" - | "payments,tracking_categories,purchase_orders,contact,company,employee,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,contact,company,employee,payment_term" - | "payments,tracking_categories,purchase_orders,contact,company,payment_term" - | "payments,tracking_categories,purchase_orders,contact,employee" - | "payments,tracking_categories,purchase_orders,contact,employee,accounting_period" - | "payments,tracking_categories,purchase_orders,contact,employee,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,contact,employee,payment_term" - | "payments,tracking_categories,purchase_orders,contact,payment_term" - | "payments,tracking_categories,purchase_orders,employee" - | "payments,tracking_categories,purchase_orders,employee,accounting_period" - | "payments,tracking_categories,purchase_orders,employee,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,employee,payment_term" - | "payments,tracking_categories,purchase_orders,payment_term" - | "purchase_orders" - | "purchase_orders,accounting_period" - | "purchase_orders,accounting_period,payment_term" - | "purchase_orders,applied_credit_notes" - | "purchase_orders,applied_credit_notes,accounting_period" - | "purchase_orders,applied_credit_notes,accounting_period,payment_term" - | "purchase_orders,applied_credit_notes,applied_vendor_credits" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,company" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,contact" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,employee" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term" - | "purchase_orders,applied_credit_notes,company" - | "purchase_orders,applied_credit_notes,company,accounting_period" - | "purchase_orders,applied_credit_notes,company,accounting_period,payment_term" - | "purchase_orders,applied_credit_notes,company,employee" - | "purchase_orders,applied_credit_notes,company,employee,accounting_period" - | "purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term" - | "purchase_orders,applied_credit_notes,company,employee,payment_term" - | "purchase_orders,applied_credit_notes,company,payment_term" - | "purchase_orders,applied_credit_notes,contact" - | "purchase_orders,applied_credit_notes,contact,accounting_period" - | "purchase_orders,applied_credit_notes,contact,accounting_period,payment_term" - | "purchase_orders,applied_credit_notes,contact,company" - | "purchase_orders,applied_credit_notes,contact,company,accounting_period" - | "purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term" - | "purchase_orders,applied_credit_notes,contact,company,employee" - | "purchase_orders,applied_credit_notes,contact,company,employee,accounting_period" - | "purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "purchase_orders,applied_credit_notes,contact,company,employee,payment_term" - | "purchase_orders,applied_credit_notes,contact,company,payment_term" - | "purchase_orders,applied_credit_notes,contact,employee" - | "purchase_orders,applied_credit_notes,contact,employee,accounting_period" - | "purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "purchase_orders,applied_credit_notes,contact,employee,payment_term" - | "purchase_orders,applied_credit_notes,contact,payment_term" - | "purchase_orders,applied_credit_notes,employee" - | "purchase_orders,applied_credit_notes,employee,accounting_period" - | "purchase_orders,applied_credit_notes,employee,accounting_period,payment_term" - | "purchase_orders,applied_credit_notes,employee,payment_term" - | "purchase_orders,applied_credit_notes,payment_term" - | "purchase_orders,applied_vendor_credits" - | "purchase_orders,applied_vendor_credits,accounting_period" - | "purchase_orders,applied_vendor_credits,accounting_period,payment_term" - | "purchase_orders,applied_vendor_credits,company" - | "purchase_orders,applied_vendor_credits,company,accounting_period" - | "purchase_orders,applied_vendor_credits,company,accounting_period,payment_term" - | "purchase_orders,applied_vendor_credits,company,employee" - | "purchase_orders,applied_vendor_credits,company,employee,accounting_period" - | "purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "purchase_orders,applied_vendor_credits,company,employee,payment_term" - | "purchase_orders,applied_vendor_credits,company,payment_term" - | "purchase_orders,applied_vendor_credits,contact" - | "purchase_orders,applied_vendor_credits,contact,accounting_period" - | "purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term" - | "purchase_orders,applied_vendor_credits,contact,company" - | "purchase_orders,applied_vendor_credits,contact,company,accounting_period" - | "purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "purchase_orders,applied_vendor_credits,contact,company,employee" - | "purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period" - | "purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "purchase_orders,applied_vendor_credits,contact,company,employee,payment_term" - | "purchase_orders,applied_vendor_credits,contact,company,payment_term" - | "purchase_orders,applied_vendor_credits,contact,employee" - | "purchase_orders,applied_vendor_credits,contact,employee,accounting_period" - | "purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "purchase_orders,applied_vendor_credits,contact,employee,payment_term" - | "purchase_orders,applied_vendor_credits,contact,payment_term" - | "purchase_orders,applied_vendor_credits,employee" - | "purchase_orders,applied_vendor_credits,employee,accounting_period" - | "purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term" - | "purchase_orders,applied_vendor_credits,employee,payment_term" - | "purchase_orders,applied_vendor_credits,payment_term" - | "purchase_orders,company" - | "purchase_orders,company,accounting_period" - | "purchase_orders,company,accounting_period,payment_term" - | "purchase_orders,company,employee" - | "purchase_orders,company,employee,accounting_period" - | "purchase_orders,company,employee,accounting_period,payment_term" - | "purchase_orders,company,employee,payment_term" - | "purchase_orders,company,payment_term" - | "purchase_orders,contact" - | "purchase_orders,contact,accounting_period" - | "purchase_orders,contact,accounting_period,payment_term" - | "purchase_orders,contact,company" - | "purchase_orders,contact,company,accounting_period" - | "purchase_orders,contact,company,accounting_period,payment_term" - | "purchase_orders,contact,company,employee" - | "purchase_orders,contact,company,employee,accounting_period" - | "purchase_orders,contact,company,employee,accounting_period,payment_term" - | "purchase_orders,contact,company,employee,payment_term" - | "purchase_orders,contact,company,payment_term" - | "purchase_orders,contact,employee" - | "purchase_orders,contact,employee,accounting_period" - | "purchase_orders,contact,employee,accounting_period,payment_term" - | "purchase_orders,contact,employee,payment_term" - | "purchase_orders,contact,payment_term" - | "purchase_orders,employee" - | "purchase_orders,employee,accounting_period" - | "purchase_orders,employee,accounting_period,payment_term" - | "purchase_orders,employee,payment_term" - | "purchase_orders,payment_term" - | "tracking_categories" - | "tracking_categories,accounting_period" - | "tracking_categories,accounting_period,payment_term" - | "tracking_categories,applied_credit_notes" - | "tracking_categories,applied_credit_notes,accounting_period" - | "tracking_categories,applied_credit_notes,accounting_period,payment_term" - | "tracking_categories,applied_credit_notes,applied_vendor_credits" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,company" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,contact" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,employee" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,payment_term" - | "tracking_categories,applied_credit_notes,company" - | "tracking_categories,applied_credit_notes,company,accounting_period" - | "tracking_categories,applied_credit_notes,company,accounting_period,payment_term" - | "tracking_categories,applied_credit_notes,company,employee" - | "tracking_categories,applied_credit_notes,company,employee,accounting_period" - | "tracking_categories,applied_credit_notes,company,employee,accounting_period,payment_term" - | "tracking_categories,applied_credit_notes,company,employee,payment_term" - | "tracking_categories,applied_credit_notes,company,payment_term" - | "tracking_categories,applied_credit_notes,contact" - | "tracking_categories,applied_credit_notes,contact,accounting_period" - | "tracking_categories,applied_credit_notes,contact,accounting_period,payment_term" - | "tracking_categories,applied_credit_notes,contact,company" - | "tracking_categories,applied_credit_notes,contact,company,accounting_period" - | "tracking_categories,applied_credit_notes,contact,company,accounting_period,payment_term" - | "tracking_categories,applied_credit_notes,contact,company,employee" - | "tracking_categories,applied_credit_notes,contact,company,employee,accounting_period" - | "tracking_categories,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "tracking_categories,applied_credit_notes,contact,company,employee,payment_term" - | "tracking_categories,applied_credit_notes,contact,company,payment_term" - | "tracking_categories,applied_credit_notes,contact,employee" - | "tracking_categories,applied_credit_notes,contact,employee,accounting_period" - | "tracking_categories,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "tracking_categories,applied_credit_notes,contact,employee,payment_term" - | "tracking_categories,applied_credit_notes,contact,payment_term" - | "tracking_categories,applied_credit_notes,employee" - | "tracking_categories,applied_credit_notes,employee,accounting_period" - | "tracking_categories,applied_credit_notes,employee,accounting_period,payment_term" - | "tracking_categories,applied_credit_notes,employee,payment_term" - | "tracking_categories,applied_credit_notes,payment_term" - | "tracking_categories,applied_vendor_credits" - | "tracking_categories,applied_vendor_credits,accounting_period" - | "tracking_categories,applied_vendor_credits,accounting_period,payment_term" - | "tracking_categories,applied_vendor_credits,company" - | "tracking_categories,applied_vendor_credits,company,accounting_period" - | "tracking_categories,applied_vendor_credits,company,accounting_period,payment_term" - | "tracking_categories,applied_vendor_credits,company,employee" - | "tracking_categories,applied_vendor_credits,company,employee,accounting_period" - | "tracking_categories,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "tracking_categories,applied_vendor_credits,company,employee,payment_term" - | "tracking_categories,applied_vendor_credits,company,payment_term" - | "tracking_categories,applied_vendor_credits,contact" - | "tracking_categories,applied_vendor_credits,contact,accounting_period" - | "tracking_categories,applied_vendor_credits,contact,accounting_period,payment_term" - | "tracking_categories,applied_vendor_credits,contact,company" - | "tracking_categories,applied_vendor_credits,contact,company,accounting_period" - | "tracking_categories,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "tracking_categories,applied_vendor_credits,contact,company,employee" - | "tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period" - | "tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "tracking_categories,applied_vendor_credits,contact,company,employee,payment_term" - | "tracking_categories,applied_vendor_credits,contact,company,payment_term" - | "tracking_categories,applied_vendor_credits,contact,employee" - | "tracking_categories,applied_vendor_credits,contact,employee,accounting_period" - | "tracking_categories,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "tracking_categories,applied_vendor_credits,contact,employee,payment_term" - | "tracking_categories,applied_vendor_credits,contact,payment_term" - | "tracking_categories,applied_vendor_credits,employee" - | "tracking_categories,applied_vendor_credits,employee,accounting_period" - | "tracking_categories,applied_vendor_credits,employee,accounting_period,payment_term" - | "tracking_categories,applied_vendor_credits,employee,payment_term" - | "tracking_categories,applied_vendor_credits,payment_term" - | "tracking_categories,company" - | "tracking_categories,company,accounting_period" - | "tracking_categories,company,accounting_period,payment_term" - | "tracking_categories,company,employee" - | "tracking_categories,company,employee,accounting_period" - | "tracking_categories,company,employee,accounting_period,payment_term" - | "tracking_categories,company,employee,payment_term" - | "tracking_categories,company,payment_term" - | "tracking_categories,contact" - | "tracking_categories,contact,accounting_period" - | "tracking_categories,contact,accounting_period,payment_term" - | "tracking_categories,contact,company" - | "tracking_categories,contact,company,accounting_period" - | "tracking_categories,contact,company,accounting_period,payment_term" - | "tracking_categories,contact,company,employee" - | "tracking_categories,contact,company,employee,accounting_period" - | "tracking_categories,contact,company,employee,accounting_period,payment_term" - | "tracking_categories,contact,company,employee,payment_term" - | "tracking_categories,contact,company,payment_term" - | "tracking_categories,contact,employee" - | "tracking_categories,contact,employee,accounting_period" - | "tracking_categories,contact,employee,accounting_period,payment_term" - | "tracking_categories,contact,employee,payment_term" - | "tracking_categories,contact,payment_term" - | "tracking_categories,employee" - | "tracking_categories,employee,accounting_period" - | "tracking_categories,employee,accounting_period,payment_term" - | "tracking_categories,employee,payment_term" - | "tracking_categories,payment_term" - | "tracking_categories,purchase_orders" - | "tracking_categories,purchase_orders,accounting_period" - | "tracking_categories,purchase_orders,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes" - | "tracking_categories,purchase_orders,applied_credit_notes,accounting_period" - | "tracking_categories,purchase_orders,applied_credit_notes,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,company" - | "tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period" - | "tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,company,employee" - | "tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period" - | "tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,company,employee,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,company,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,contact" - | "tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period" - | "tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,contact,company" - | "tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period" - | "tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee" - | "tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period" - | "tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,contact,company,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,contact,employee" - | "tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period" - | "tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,contact,employee,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,contact,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,employee" - | "tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period" - | "tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,employee,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,payment_term" - | "tracking_categories,purchase_orders,applied_vendor_credits" - | "tracking_categories,purchase_orders,applied_vendor_credits,accounting_period" - | "tracking_categories,purchase_orders,applied_vendor_credits,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_vendor_credits,company" - | "tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period" - | "tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_vendor_credits,company,employee" - | "tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period" - | "tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_vendor_credits,company,employee,payment_term" - | "tracking_categories,purchase_orders,applied_vendor_credits,company,payment_term" - | "tracking_categories,purchase_orders,applied_vendor_credits,contact" - | "tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period" - | "tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_vendor_credits,contact,company" - | "tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period" - | "tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee" - | "tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period" - | "tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term" - | "tracking_categories,purchase_orders,applied_vendor_credits,contact,company,payment_term" - | "tracking_categories,purchase_orders,applied_vendor_credits,contact,employee" - | "tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period" - | "tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,payment_term" - | "tracking_categories,purchase_orders,applied_vendor_credits,contact,payment_term" - | "tracking_categories,purchase_orders,applied_vendor_credits,employee" - | "tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period" - | "tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_vendor_credits,employee,payment_term" - | "tracking_categories,purchase_orders,applied_vendor_credits,payment_term" - | "tracking_categories,purchase_orders,company" - | "tracking_categories,purchase_orders,company,accounting_period" - | "tracking_categories,purchase_orders,company,accounting_period,payment_term" - | "tracking_categories,purchase_orders,company,employee" - | "tracking_categories,purchase_orders,company,employee,accounting_period" - | "tracking_categories,purchase_orders,company,employee,accounting_period,payment_term" - | "tracking_categories,purchase_orders,company,employee,payment_term" - | "tracking_categories,purchase_orders,company,payment_term" - | "tracking_categories,purchase_orders,contact" - | "tracking_categories,purchase_orders,contact,accounting_period" - | "tracking_categories,purchase_orders,contact,accounting_period,payment_term" - | "tracking_categories,purchase_orders,contact,company" - | "tracking_categories,purchase_orders,contact,company,accounting_period" - | "tracking_categories,purchase_orders,contact,company,accounting_period,payment_term" - | "tracking_categories,purchase_orders,contact,company,employee" - | "tracking_categories,purchase_orders,contact,company,employee,accounting_period" - | "tracking_categories,purchase_orders,contact,company,employee,accounting_period,payment_term" - | "tracking_categories,purchase_orders,contact,company,employee,payment_term" - | "tracking_categories,purchase_orders,contact,company,payment_term" - | "tracking_categories,purchase_orders,contact,employee" - | "tracking_categories,purchase_orders,contact,employee,accounting_period" - | "tracking_categories,purchase_orders,contact,employee,accounting_period,payment_term" - | "tracking_categories,purchase_orders,contact,employee,payment_term" - | "tracking_categories,purchase_orders,contact,payment_term" - | "tracking_categories,purchase_orders,employee" - | "tracking_categories,purchase_orders,employee,accounting_period" - | "tracking_categories,purchase_orders,employee,accounting_period,payment_term" - | "tracking_categories,purchase_orders,employee,payment_term" - | "tracking_categories,purchase_orders,payment_term"; -} diff --git a/src/serialization/resources/accounting/resources/invoices/types/InvoicesListRequestStatus.ts b/src/serialization/resources/accounting/resources/invoices/types/InvoicesListRequestStatus.ts deleted file mode 100644 index bb5588945..000000000 --- a/src/serialization/resources/accounting/resources/invoices/types/InvoicesListRequestStatus.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; - -export const InvoicesListRequestStatus: core.serialization.Schema< - serializers.accounting.InvoicesListRequestStatus.Raw, - Merge.accounting.InvoicesListRequestStatus -> = core.serialization.enum_(["DRAFT", "OPEN", "PAID", "PARTIALLY_PAID", "SUBMITTED", "VOID"]); - -export declare namespace InvoicesListRequestStatus { - export type Raw = "DRAFT" | "OPEN" | "PAID" | "PARTIALLY_PAID" | "SUBMITTED" | "VOID"; -} diff --git a/src/serialization/resources/accounting/resources/invoices/types/InvoicesListRequestType.ts b/src/serialization/resources/accounting/resources/invoices/types/InvoicesListRequestType.ts deleted file mode 100644 index 7a363ac17..000000000 --- a/src/serialization/resources/accounting/resources/invoices/types/InvoicesListRequestType.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; - -export const InvoicesListRequestType: core.serialization.Schema< - serializers.accounting.InvoicesListRequestType.Raw, - Merge.accounting.InvoicesListRequestType -> = core.serialization.enum_(["ACCOUNTS_PAYABLE", "ACCOUNTS_RECEIVABLE"]); - -export declare namespace InvoicesListRequestType { - export type Raw = "ACCOUNTS_PAYABLE" | "ACCOUNTS_RECEIVABLE"; -} diff --git a/src/serialization/resources/accounting/resources/invoices/types/InvoicesRetrieveRequestExpand.ts b/src/serialization/resources/accounting/resources/invoices/types/InvoicesRetrieveRequestExpand.ts deleted file mode 100644 index bb017ee28..000000000 --- a/src/serialization/resources/accounting/resources/invoices/types/InvoicesRetrieveRequestExpand.ts +++ /dev/null @@ -1,8205 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; - -export const InvoicesRetrieveRequestExpand: core.serialization.Schema< - serializers.accounting.InvoicesRetrieveRequestExpand.Raw, - Merge.accounting.InvoicesRetrieveRequestExpand -> = core.serialization.enum_([ - "accounting_period", - "accounting_period,payment_term", - "applied_credit_notes", - "applied_credit_notes,accounting_period", - "applied_credit_notes,accounting_period,payment_term", - "applied_credit_notes,applied_vendor_credits", - "applied_credit_notes,applied_vendor_credits,accounting_period", - "applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "applied_credit_notes,applied_vendor_credits,company", - "applied_credit_notes,applied_vendor_credits,company,accounting_period", - "applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "applied_credit_notes,applied_vendor_credits,company,employee", - "applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "applied_credit_notes,applied_vendor_credits,company,payment_term", - "applied_credit_notes,applied_vendor_credits,contact", - "applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "applied_credit_notes,applied_vendor_credits,contact,company", - "applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "applied_credit_notes,applied_vendor_credits,contact,company,employee", - "applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "applied_credit_notes,applied_vendor_credits,contact,employee", - "applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "applied_credit_notes,applied_vendor_credits,contact,payment_term", - "applied_credit_notes,applied_vendor_credits,employee", - "applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "applied_credit_notes,applied_vendor_credits,employee,payment_term", - "applied_credit_notes,applied_vendor_credits,payment_term", - "applied_credit_notes,company", - "applied_credit_notes,company,accounting_period", - "applied_credit_notes,company,accounting_period,payment_term", - "applied_credit_notes,company,employee", - "applied_credit_notes,company,employee,accounting_period", - "applied_credit_notes,company,employee,accounting_period,payment_term", - "applied_credit_notes,company,employee,payment_term", - "applied_credit_notes,company,payment_term", - "applied_credit_notes,contact", - "applied_credit_notes,contact,accounting_period", - "applied_credit_notes,contact,accounting_period,payment_term", - "applied_credit_notes,contact,company", - "applied_credit_notes,contact,company,accounting_period", - "applied_credit_notes,contact,company,accounting_period,payment_term", - "applied_credit_notes,contact,company,employee", - "applied_credit_notes,contact,company,employee,accounting_period", - "applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "applied_credit_notes,contact,company,employee,payment_term", - "applied_credit_notes,contact,company,payment_term", - "applied_credit_notes,contact,employee", - "applied_credit_notes,contact,employee,accounting_period", - "applied_credit_notes,contact,employee,accounting_period,payment_term", - "applied_credit_notes,contact,employee,payment_term", - "applied_credit_notes,contact,payment_term", - "applied_credit_notes,employee", - "applied_credit_notes,employee,accounting_period", - "applied_credit_notes,employee,accounting_period,payment_term", - "applied_credit_notes,employee,payment_term", - "applied_credit_notes,payment_term", - "applied_payments", - "applied_payments,accounting_period", - "applied_payments,accounting_period,payment_term", - "applied_payments,applied_credit_notes", - "applied_payments,applied_credit_notes,accounting_period", - "applied_payments,applied_credit_notes,accounting_period,payment_term", - "applied_payments,applied_credit_notes,applied_vendor_credits", - "applied_payments,applied_credit_notes,applied_vendor_credits,accounting_period", - "applied_payments,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "applied_payments,applied_credit_notes,applied_vendor_credits,company", - "applied_payments,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "applied_payments,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "applied_payments,applied_credit_notes,applied_vendor_credits,company,employee", - "applied_payments,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "applied_payments,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "applied_payments,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "applied_payments,applied_credit_notes,applied_vendor_credits,company,payment_term", - "applied_payments,applied_credit_notes,applied_vendor_credits,contact", - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,company", - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,employee", - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "applied_payments,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "applied_payments,applied_credit_notes,applied_vendor_credits,employee", - "applied_payments,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "applied_payments,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "applied_payments,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "applied_payments,applied_credit_notes,applied_vendor_credits,payment_term", - "applied_payments,applied_credit_notes,company", - "applied_payments,applied_credit_notes,company,accounting_period", - "applied_payments,applied_credit_notes,company,accounting_period,payment_term", - "applied_payments,applied_credit_notes,company,employee", - "applied_payments,applied_credit_notes,company,employee,accounting_period", - "applied_payments,applied_credit_notes,company,employee,accounting_period,payment_term", - "applied_payments,applied_credit_notes,company,employee,payment_term", - "applied_payments,applied_credit_notes,company,payment_term", - "applied_payments,applied_credit_notes,contact", - "applied_payments,applied_credit_notes,contact,accounting_period", - "applied_payments,applied_credit_notes,contact,accounting_period,payment_term", - "applied_payments,applied_credit_notes,contact,company", - "applied_payments,applied_credit_notes,contact,company,accounting_period", - "applied_payments,applied_credit_notes,contact,company,accounting_period,payment_term", - "applied_payments,applied_credit_notes,contact,company,employee", - "applied_payments,applied_credit_notes,contact,company,employee,accounting_period", - "applied_payments,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "applied_payments,applied_credit_notes,contact,company,employee,payment_term", - "applied_payments,applied_credit_notes,contact,company,payment_term", - "applied_payments,applied_credit_notes,contact,employee", - "applied_payments,applied_credit_notes,contact,employee,accounting_period", - "applied_payments,applied_credit_notes,contact,employee,accounting_period,payment_term", - "applied_payments,applied_credit_notes,contact,employee,payment_term", - "applied_payments,applied_credit_notes,contact,payment_term", - "applied_payments,applied_credit_notes,employee", - "applied_payments,applied_credit_notes,employee,accounting_period", - "applied_payments,applied_credit_notes,employee,accounting_period,payment_term", - "applied_payments,applied_credit_notes,employee,payment_term", - "applied_payments,applied_credit_notes,payment_term", - "applied_payments,applied_vendor_credits", - "applied_payments,applied_vendor_credits,accounting_period", - "applied_payments,applied_vendor_credits,accounting_period,payment_term", - "applied_payments,applied_vendor_credits,company", - "applied_payments,applied_vendor_credits,company,accounting_period", - "applied_payments,applied_vendor_credits,company,accounting_period,payment_term", - "applied_payments,applied_vendor_credits,company,employee", - "applied_payments,applied_vendor_credits,company,employee,accounting_period", - "applied_payments,applied_vendor_credits,company,employee,accounting_period,payment_term", - "applied_payments,applied_vendor_credits,company,employee,payment_term", - "applied_payments,applied_vendor_credits,company,payment_term", - "applied_payments,applied_vendor_credits,contact", - "applied_payments,applied_vendor_credits,contact,accounting_period", - "applied_payments,applied_vendor_credits,contact,accounting_period,payment_term", - "applied_payments,applied_vendor_credits,contact,company", - "applied_payments,applied_vendor_credits,contact,company,accounting_period", - "applied_payments,applied_vendor_credits,contact,company,accounting_period,payment_term", - "applied_payments,applied_vendor_credits,contact,company,employee", - "applied_payments,applied_vendor_credits,contact,company,employee,accounting_period", - "applied_payments,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "applied_payments,applied_vendor_credits,contact,company,employee,payment_term", - "applied_payments,applied_vendor_credits,contact,company,payment_term", - "applied_payments,applied_vendor_credits,contact,employee", - "applied_payments,applied_vendor_credits,contact,employee,accounting_period", - "applied_payments,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "applied_payments,applied_vendor_credits,contact,employee,payment_term", - "applied_payments,applied_vendor_credits,contact,payment_term", - "applied_payments,applied_vendor_credits,employee", - "applied_payments,applied_vendor_credits,employee,accounting_period", - "applied_payments,applied_vendor_credits,employee,accounting_period,payment_term", - "applied_payments,applied_vendor_credits,employee,payment_term", - "applied_payments,applied_vendor_credits,payment_term", - "applied_payments,company", - "applied_payments,company,accounting_period", - "applied_payments,company,accounting_period,payment_term", - "applied_payments,company,employee", - "applied_payments,company,employee,accounting_period", - "applied_payments,company,employee,accounting_period,payment_term", - "applied_payments,company,employee,payment_term", - "applied_payments,company,payment_term", - "applied_payments,contact", - "applied_payments,contact,accounting_period", - "applied_payments,contact,accounting_period,payment_term", - "applied_payments,contact,company", - "applied_payments,contact,company,accounting_period", - "applied_payments,contact,company,accounting_period,payment_term", - "applied_payments,contact,company,employee", - "applied_payments,contact,company,employee,accounting_period", - "applied_payments,contact,company,employee,accounting_period,payment_term", - "applied_payments,contact,company,employee,payment_term", - "applied_payments,contact,company,payment_term", - "applied_payments,contact,employee", - "applied_payments,contact,employee,accounting_period", - "applied_payments,contact,employee,accounting_period,payment_term", - "applied_payments,contact,employee,payment_term", - "applied_payments,contact,payment_term", - "applied_payments,employee", - "applied_payments,employee,accounting_period", - "applied_payments,employee,accounting_period,payment_term", - "applied_payments,employee,payment_term", - "applied_payments,line_items", - "applied_payments,line_items,accounting_period", - "applied_payments,line_items,accounting_period,payment_term", - "applied_payments,line_items,applied_credit_notes", - "applied_payments,line_items,applied_credit_notes,accounting_period", - "applied_payments,line_items,applied_credit_notes,accounting_period,payment_term", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,accounting_period", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,payment_term", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,employee", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,payment_term", - "applied_payments,line_items,applied_credit_notes,company", - "applied_payments,line_items,applied_credit_notes,company,accounting_period", - "applied_payments,line_items,applied_credit_notes,company,accounting_period,payment_term", - "applied_payments,line_items,applied_credit_notes,company,employee", - "applied_payments,line_items,applied_credit_notes,company,employee,accounting_period", - "applied_payments,line_items,applied_credit_notes,company,employee,accounting_period,payment_term", - "applied_payments,line_items,applied_credit_notes,company,employee,payment_term", - "applied_payments,line_items,applied_credit_notes,company,payment_term", - "applied_payments,line_items,applied_credit_notes,contact", - "applied_payments,line_items,applied_credit_notes,contact,accounting_period", - "applied_payments,line_items,applied_credit_notes,contact,accounting_period,payment_term", - "applied_payments,line_items,applied_credit_notes,contact,company", - "applied_payments,line_items,applied_credit_notes,contact,company,accounting_period", - "applied_payments,line_items,applied_credit_notes,contact,company,accounting_period,payment_term", - "applied_payments,line_items,applied_credit_notes,contact,company,employee", - "applied_payments,line_items,applied_credit_notes,contact,company,employee,accounting_period", - "applied_payments,line_items,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "applied_payments,line_items,applied_credit_notes,contact,company,employee,payment_term", - "applied_payments,line_items,applied_credit_notes,contact,company,payment_term", - "applied_payments,line_items,applied_credit_notes,contact,employee", - "applied_payments,line_items,applied_credit_notes,contact,employee,accounting_period", - "applied_payments,line_items,applied_credit_notes,contact,employee,accounting_period,payment_term", - "applied_payments,line_items,applied_credit_notes,contact,employee,payment_term", - "applied_payments,line_items,applied_credit_notes,contact,payment_term", - "applied_payments,line_items,applied_credit_notes,employee", - "applied_payments,line_items,applied_credit_notes,employee,accounting_period", - "applied_payments,line_items,applied_credit_notes,employee,accounting_period,payment_term", - "applied_payments,line_items,applied_credit_notes,employee,payment_term", - "applied_payments,line_items,applied_credit_notes,payment_term", - "applied_payments,line_items,applied_vendor_credits", - "applied_payments,line_items,applied_vendor_credits,accounting_period", - "applied_payments,line_items,applied_vendor_credits,accounting_period,payment_term", - "applied_payments,line_items,applied_vendor_credits,company", - "applied_payments,line_items,applied_vendor_credits,company,accounting_period", - "applied_payments,line_items,applied_vendor_credits,company,accounting_period,payment_term", - "applied_payments,line_items,applied_vendor_credits,company,employee", - "applied_payments,line_items,applied_vendor_credits,company,employee,accounting_period", - "applied_payments,line_items,applied_vendor_credits,company,employee,accounting_period,payment_term", - "applied_payments,line_items,applied_vendor_credits,company,employee,payment_term", - "applied_payments,line_items,applied_vendor_credits,company,payment_term", - "applied_payments,line_items,applied_vendor_credits,contact", - "applied_payments,line_items,applied_vendor_credits,contact,accounting_period", - "applied_payments,line_items,applied_vendor_credits,contact,accounting_period,payment_term", - "applied_payments,line_items,applied_vendor_credits,contact,company", - "applied_payments,line_items,applied_vendor_credits,contact,company,accounting_period", - "applied_payments,line_items,applied_vendor_credits,contact,company,accounting_period,payment_term", - "applied_payments,line_items,applied_vendor_credits,contact,company,employee", - "applied_payments,line_items,applied_vendor_credits,contact,company,employee,accounting_period", - "applied_payments,line_items,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "applied_payments,line_items,applied_vendor_credits,contact,company,employee,payment_term", - "applied_payments,line_items,applied_vendor_credits,contact,company,payment_term", - "applied_payments,line_items,applied_vendor_credits,contact,employee", - "applied_payments,line_items,applied_vendor_credits,contact,employee,accounting_period", - "applied_payments,line_items,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "applied_payments,line_items,applied_vendor_credits,contact,employee,payment_term", - "applied_payments,line_items,applied_vendor_credits,contact,payment_term", - "applied_payments,line_items,applied_vendor_credits,employee", - "applied_payments,line_items,applied_vendor_credits,employee,accounting_period", - "applied_payments,line_items,applied_vendor_credits,employee,accounting_period,payment_term", - "applied_payments,line_items,applied_vendor_credits,employee,payment_term", - "applied_payments,line_items,applied_vendor_credits,payment_term", - "applied_payments,line_items,company", - "applied_payments,line_items,company,accounting_period", - "applied_payments,line_items,company,accounting_period,payment_term", - "applied_payments,line_items,company,employee", - "applied_payments,line_items,company,employee,accounting_period", - "applied_payments,line_items,company,employee,accounting_period,payment_term", - "applied_payments,line_items,company,employee,payment_term", - "applied_payments,line_items,company,payment_term", - "applied_payments,line_items,contact", - "applied_payments,line_items,contact,accounting_period", - "applied_payments,line_items,contact,accounting_period,payment_term", - "applied_payments,line_items,contact,company", - "applied_payments,line_items,contact,company,accounting_period", - "applied_payments,line_items,contact,company,accounting_period,payment_term", - "applied_payments,line_items,contact,company,employee", - "applied_payments,line_items,contact,company,employee,accounting_period", - "applied_payments,line_items,contact,company,employee,accounting_period,payment_term", - "applied_payments,line_items,contact,company,employee,payment_term", - "applied_payments,line_items,contact,company,payment_term", - "applied_payments,line_items,contact,employee", - "applied_payments,line_items,contact,employee,accounting_period", - "applied_payments,line_items,contact,employee,accounting_period,payment_term", - "applied_payments,line_items,contact,employee,payment_term", - "applied_payments,line_items,contact,payment_term", - "applied_payments,line_items,employee", - "applied_payments,line_items,employee,accounting_period", - "applied_payments,line_items,employee,accounting_period,payment_term", - "applied_payments,line_items,employee,payment_term", - "applied_payments,line_items,payment_term", - "applied_payments,line_items,purchase_orders", - "applied_payments,line_items,purchase_orders,accounting_period", - "applied_payments,line_items,purchase_orders,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes", - "applied_payments,line_items,purchase_orders,applied_credit_notes,accounting_period", - "applied_payments,line_items,purchase_orders,applied_credit_notes,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,company", - "applied_payments,line_items,purchase_orders,applied_credit_notes,company,accounting_period", - "applied_payments,line_items,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,company,employee", - "applied_payments,line_items,purchase_orders,applied_credit_notes,company,employee,accounting_period", - "applied_payments,line_items,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,company,employee,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,company,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact", - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,accounting_period", - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company", - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,accounting_period", - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee", - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,employee", - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,employee,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,employee", - "applied_payments,line_items,purchase_orders,applied_credit_notes,employee,accounting_period", - "applied_payments,line_items,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,employee,payment_term", - "applied_payments,line_items,purchase_orders,applied_credit_notes,payment_term", - "applied_payments,line_items,purchase_orders,applied_vendor_credits", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,accounting_period", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,company", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,company,accounting_period", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,company,employee", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,company,employee,payment_term", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,company,payment_term", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,accounting_period", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,payment_term", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,employee", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,payment_term", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,employee", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,employee,accounting_period", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,employee,payment_term", - "applied_payments,line_items,purchase_orders,applied_vendor_credits,payment_term", - "applied_payments,line_items,purchase_orders,company", - "applied_payments,line_items,purchase_orders,company,accounting_period", - "applied_payments,line_items,purchase_orders,company,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,company,employee", - "applied_payments,line_items,purchase_orders,company,employee,accounting_period", - "applied_payments,line_items,purchase_orders,company,employee,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,company,employee,payment_term", - "applied_payments,line_items,purchase_orders,company,payment_term", - "applied_payments,line_items,purchase_orders,contact", - "applied_payments,line_items,purchase_orders,contact,accounting_period", - "applied_payments,line_items,purchase_orders,contact,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,contact,company", - "applied_payments,line_items,purchase_orders,contact,company,accounting_period", - "applied_payments,line_items,purchase_orders,contact,company,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,contact,company,employee", - "applied_payments,line_items,purchase_orders,contact,company,employee,accounting_period", - "applied_payments,line_items,purchase_orders,contact,company,employee,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,contact,company,employee,payment_term", - "applied_payments,line_items,purchase_orders,contact,company,payment_term", - "applied_payments,line_items,purchase_orders,contact,employee", - "applied_payments,line_items,purchase_orders,contact,employee,accounting_period", - "applied_payments,line_items,purchase_orders,contact,employee,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,contact,employee,payment_term", - "applied_payments,line_items,purchase_orders,contact,payment_term", - "applied_payments,line_items,purchase_orders,employee", - "applied_payments,line_items,purchase_orders,employee,accounting_period", - "applied_payments,line_items,purchase_orders,employee,accounting_period,payment_term", - "applied_payments,line_items,purchase_orders,employee,payment_term", - "applied_payments,line_items,purchase_orders,payment_term", - "applied_payments,line_items,tracking_categories", - "applied_payments,line_items,tracking_categories,accounting_period", - "applied_payments,line_items,tracking_categories,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes", - "applied_payments,line_items,tracking_categories,applied_credit_notes,accounting_period", - "applied_payments,line_items,tracking_categories,applied_credit_notes,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,company", - "applied_payments,line_items,tracking_categories,applied_credit_notes,company,accounting_period", - "applied_payments,line_items,tracking_categories,applied_credit_notes,company,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,company,employee", - "applied_payments,line_items,tracking_categories,applied_credit_notes,company,employee,accounting_period", - "applied_payments,line_items,tracking_categories,applied_credit_notes,company,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,company,employee,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,company,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact", - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,accounting_period", - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company", - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,accounting_period", - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee", - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period", - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,employee", - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,employee,accounting_period", - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,employee,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,employee", - "applied_payments,line_items,tracking_categories,applied_credit_notes,employee,accounting_period", - "applied_payments,line_items,tracking_categories,applied_credit_notes,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,employee,payment_term", - "applied_payments,line_items,tracking_categories,applied_credit_notes,payment_term", - "applied_payments,line_items,tracking_categories,applied_vendor_credits", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,accounting_period", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,company", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,company,accounting_period", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,company,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,company,employee", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,company,employee,accounting_period", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,company,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,company,employee,payment_term", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,company,payment_term", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,accounting_period", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,accounting_period", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,payment_term", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,payment_term", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,employee", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,accounting_period", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,payment_term", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,payment_term", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,employee", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,employee,accounting_period", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,employee,payment_term", - "applied_payments,line_items,tracking_categories,applied_vendor_credits,payment_term", - "applied_payments,line_items,tracking_categories,company", - "applied_payments,line_items,tracking_categories,company,accounting_period", - "applied_payments,line_items,tracking_categories,company,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,company,employee", - "applied_payments,line_items,tracking_categories,company,employee,accounting_period", - "applied_payments,line_items,tracking_categories,company,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,company,employee,payment_term", - "applied_payments,line_items,tracking_categories,company,payment_term", - "applied_payments,line_items,tracking_categories,contact", - "applied_payments,line_items,tracking_categories,contact,accounting_period", - "applied_payments,line_items,tracking_categories,contact,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,contact,company", - "applied_payments,line_items,tracking_categories,contact,company,accounting_period", - "applied_payments,line_items,tracking_categories,contact,company,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,contact,company,employee", - "applied_payments,line_items,tracking_categories,contact,company,employee,accounting_period", - "applied_payments,line_items,tracking_categories,contact,company,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,contact,company,employee,payment_term", - "applied_payments,line_items,tracking_categories,contact,company,payment_term", - "applied_payments,line_items,tracking_categories,contact,employee", - "applied_payments,line_items,tracking_categories,contact,employee,accounting_period", - "applied_payments,line_items,tracking_categories,contact,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,contact,employee,payment_term", - "applied_payments,line_items,tracking_categories,contact,payment_term", - "applied_payments,line_items,tracking_categories,employee", - "applied_payments,line_items,tracking_categories,employee,accounting_period", - "applied_payments,line_items,tracking_categories,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,employee,payment_term", - "applied_payments,line_items,tracking_categories,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders", - "applied_payments,line_items,tracking_categories,purchase_orders,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,company", - "applied_payments,line_items,tracking_categories,purchase_orders,company,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,company,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,company,employee", - "applied_payments,line_items,tracking_categories,purchase_orders,company,employee,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,company,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,company,employee,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,company,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,contact", - "applied_payments,line_items,tracking_categories,purchase_orders,contact,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,contact,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,contact,company", - "applied_payments,line_items,tracking_categories,purchase_orders,contact,company,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,contact,company,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,contact,company,employee", - "applied_payments,line_items,tracking_categories,purchase_orders,contact,company,employee,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,contact,company,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,contact,company,employee,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,contact,company,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,contact,employee", - "applied_payments,line_items,tracking_categories,purchase_orders,contact,employee,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,contact,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,contact,employee,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,contact,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,employee", - "applied_payments,line_items,tracking_categories,purchase_orders,employee,accounting_period", - "applied_payments,line_items,tracking_categories,purchase_orders,employee,accounting_period,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,employee,payment_term", - "applied_payments,line_items,tracking_categories,purchase_orders,payment_term", - "applied_payments,payment_term", - "applied_payments,purchase_orders", - "applied_payments,purchase_orders,accounting_period", - "applied_payments,purchase_orders,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_credit_notes", - "applied_payments,purchase_orders,applied_credit_notes,accounting_period", - "applied_payments,purchase_orders,applied_credit_notes,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,company", - "applied_payments,purchase_orders,applied_credit_notes,company,accounting_period", - "applied_payments,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,company,employee", - "applied_payments,purchase_orders,applied_credit_notes,company,employee,accounting_period", - "applied_payments,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,company,employee,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,company,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,contact", - "applied_payments,purchase_orders,applied_credit_notes,contact,accounting_period", - "applied_payments,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,contact,company", - "applied_payments,purchase_orders,applied_credit_notes,contact,company,accounting_period", - "applied_payments,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,contact,company,employee", - "applied_payments,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - "applied_payments,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,contact,company,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,contact,employee", - "applied_payments,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - "applied_payments,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,contact,employee,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,contact,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,employee", - "applied_payments,purchase_orders,applied_credit_notes,employee,accounting_period", - "applied_payments,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,employee,payment_term", - "applied_payments,purchase_orders,applied_credit_notes,payment_term", - "applied_payments,purchase_orders,applied_vendor_credits", - "applied_payments,purchase_orders,applied_vendor_credits,accounting_period", - "applied_payments,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_vendor_credits,company", - "applied_payments,purchase_orders,applied_vendor_credits,company,accounting_period", - "applied_payments,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_vendor_credits,company,employee", - "applied_payments,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - "applied_payments,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_vendor_credits,company,employee,payment_term", - "applied_payments,purchase_orders,applied_vendor_credits,company,payment_term", - "applied_payments,purchase_orders,applied_vendor_credits,contact", - "applied_payments,purchase_orders,applied_vendor_credits,contact,accounting_period", - "applied_payments,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_vendor_credits,contact,company", - "applied_payments,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - "applied_payments,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_vendor_credits,contact,company,employee", - "applied_payments,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - "applied_payments,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - "applied_payments,purchase_orders,applied_vendor_credits,contact,company,payment_term", - "applied_payments,purchase_orders,applied_vendor_credits,contact,employee", - "applied_payments,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - "applied_payments,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - "applied_payments,purchase_orders,applied_vendor_credits,contact,payment_term", - "applied_payments,purchase_orders,applied_vendor_credits,employee", - "applied_payments,purchase_orders,applied_vendor_credits,employee,accounting_period", - "applied_payments,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - "applied_payments,purchase_orders,applied_vendor_credits,employee,payment_term", - "applied_payments,purchase_orders,applied_vendor_credits,payment_term", - "applied_payments,purchase_orders,company", - "applied_payments,purchase_orders,company,accounting_period", - "applied_payments,purchase_orders,company,accounting_period,payment_term", - "applied_payments,purchase_orders,company,employee", - "applied_payments,purchase_orders,company,employee,accounting_period", - "applied_payments,purchase_orders,company,employee,accounting_period,payment_term", - "applied_payments,purchase_orders,company,employee,payment_term", - "applied_payments,purchase_orders,company,payment_term", - "applied_payments,purchase_orders,contact", - "applied_payments,purchase_orders,contact,accounting_period", - "applied_payments,purchase_orders,contact,accounting_period,payment_term", - "applied_payments,purchase_orders,contact,company", - "applied_payments,purchase_orders,contact,company,accounting_period", - "applied_payments,purchase_orders,contact,company,accounting_period,payment_term", - "applied_payments,purchase_orders,contact,company,employee", - "applied_payments,purchase_orders,contact,company,employee,accounting_period", - "applied_payments,purchase_orders,contact,company,employee,accounting_period,payment_term", - "applied_payments,purchase_orders,contact,company,employee,payment_term", - "applied_payments,purchase_orders,contact,company,payment_term", - "applied_payments,purchase_orders,contact,employee", - "applied_payments,purchase_orders,contact,employee,accounting_period", - "applied_payments,purchase_orders,contact,employee,accounting_period,payment_term", - "applied_payments,purchase_orders,contact,employee,payment_term", - "applied_payments,purchase_orders,contact,payment_term", - "applied_payments,purchase_orders,employee", - "applied_payments,purchase_orders,employee,accounting_period", - "applied_payments,purchase_orders,employee,accounting_period,payment_term", - "applied_payments,purchase_orders,employee,payment_term", - "applied_payments,purchase_orders,payment_term", - "applied_payments,tracking_categories", - "applied_payments,tracking_categories,accounting_period", - "applied_payments,tracking_categories,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_credit_notes", - "applied_payments,tracking_categories,applied_credit_notes,accounting_period", - "applied_payments,tracking_categories,applied_credit_notes,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,company", - "applied_payments,tracking_categories,applied_credit_notes,company,accounting_period", - "applied_payments,tracking_categories,applied_credit_notes,company,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,company,employee", - "applied_payments,tracking_categories,applied_credit_notes,company,employee,accounting_period", - "applied_payments,tracking_categories,applied_credit_notes,company,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,company,employee,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,company,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,contact", - "applied_payments,tracking_categories,applied_credit_notes,contact,accounting_period", - "applied_payments,tracking_categories,applied_credit_notes,contact,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,contact,company", - "applied_payments,tracking_categories,applied_credit_notes,contact,company,accounting_period", - "applied_payments,tracking_categories,applied_credit_notes,contact,company,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,contact,company,employee", - "applied_payments,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period", - "applied_payments,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,contact,company,employee,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,contact,company,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,contact,employee", - "applied_payments,tracking_categories,applied_credit_notes,contact,employee,accounting_period", - "applied_payments,tracking_categories,applied_credit_notes,contact,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,contact,employee,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,contact,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,employee", - "applied_payments,tracking_categories,applied_credit_notes,employee,accounting_period", - "applied_payments,tracking_categories,applied_credit_notes,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,employee,payment_term", - "applied_payments,tracking_categories,applied_credit_notes,payment_term", - "applied_payments,tracking_categories,applied_vendor_credits", - "applied_payments,tracking_categories,applied_vendor_credits,accounting_period", - "applied_payments,tracking_categories,applied_vendor_credits,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_vendor_credits,company", - "applied_payments,tracking_categories,applied_vendor_credits,company,accounting_period", - "applied_payments,tracking_categories,applied_vendor_credits,company,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_vendor_credits,company,employee", - "applied_payments,tracking_categories,applied_vendor_credits,company,employee,accounting_period", - "applied_payments,tracking_categories,applied_vendor_credits,company,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_vendor_credits,company,employee,payment_term", - "applied_payments,tracking_categories,applied_vendor_credits,company,payment_term", - "applied_payments,tracking_categories,applied_vendor_credits,contact", - "applied_payments,tracking_categories,applied_vendor_credits,contact,accounting_period", - "applied_payments,tracking_categories,applied_vendor_credits,contact,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_vendor_credits,contact,company", - "applied_payments,tracking_categories,applied_vendor_credits,contact,company,accounting_period", - "applied_payments,tracking_categories,applied_vendor_credits,contact,company,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_vendor_credits,contact,company,employee", - "applied_payments,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period", - "applied_payments,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_vendor_credits,contact,company,employee,payment_term", - "applied_payments,tracking_categories,applied_vendor_credits,contact,company,payment_term", - "applied_payments,tracking_categories,applied_vendor_credits,contact,employee", - "applied_payments,tracking_categories,applied_vendor_credits,contact,employee,accounting_period", - "applied_payments,tracking_categories,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_vendor_credits,contact,employee,payment_term", - "applied_payments,tracking_categories,applied_vendor_credits,contact,payment_term", - "applied_payments,tracking_categories,applied_vendor_credits,employee", - "applied_payments,tracking_categories,applied_vendor_credits,employee,accounting_period", - "applied_payments,tracking_categories,applied_vendor_credits,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,applied_vendor_credits,employee,payment_term", - "applied_payments,tracking_categories,applied_vendor_credits,payment_term", - "applied_payments,tracking_categories,company", - "applied_payments,tracking_categories,company,accounting_period", - "applied_payments,tracking_categories,company,accounting_period,payment_term", - "applied_payments,tracking_categories,company,employee", - "applied_payments,tracking_categories,company,employee,accounting_period", - "applied_payments,tracking_categories,company,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,company,employee,payment_term", - "applied_payments,tracking_categories,company,payment_term", - "applied_payments,tracking_categories,contact", - "applied_payments,tracking_categories,contact,accounting_period", - "applied_payments,tracking_categories,contact,accounting_period,payment_term", - "applied_payments,tracking_categories,contact,company", - "applied_payments,tracking_categories,contact,company,accounting_period", - "applied_payments,tracking_categories,contact,company,accounting_period,payment_term", - "applied_payments,tracking_categories,contact,company,employee", - "applied_payments,tracking_categories,contact,company,employee,accounting_period", - "applied_payments,tracking_categories,contact,company,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,contact,company,employee,payment_term", - "applied_payments,tracking_categories,contact,company,payment_term", - "applied_payments,tracking_categories,contact,employee", - "applied_payments,tracking_categories,contact,employee,accounting_period", - "applied_payments,tracking_categories,contact,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,contact,employee,payment_term", - "applied_payments,tracking_categories,contact,payment_term", - "applied_payments,tracking_categories,employee", - "applied_payments,tracking_categories,employee,accounting_period", - "applied_payments,tracking_categories,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,employee,payment_term", - "applied_payments,tracking_categories,payment_term", - "applied_payments,tracking_categories,purchase_orders", - "applied_payments,tracking_categories,purchase_orders,accounting_period", - "applied_payments,tracking_categories,purchase_orders,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,accounting_period", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,employee", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,employee,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,employee", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,payment_term", - "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,payment_term", - "applied_payments,tracking_categories,purchase_orders,company", - "applied_payments,tracking_categories,purchase_orders,company,accounting_period", - "applied_payments,tracking_categories,purchase_orders,company,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,company,employee", - "applied_payments,tracking_categories,purchase_orders,company,employee,accounting_period", - "applied_payments,tracking_categories,purchase_orders,company,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,company,employee,payment_term", - "applied_payments,tracking_categories,purchase_orders,company,payment_term", - "applied_payments,tracking_categories,purchase_orders,contact", - "applied_payments,tracking_categories,purchase_orders,contact,accounting_period", - "applied_payments,tracking_categories,purchase_orders,contact,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,contact,company", - "applied_payments,tracking_categories,purchase_orders,contact,company,accounting_period", - "applied_payments,tracking_categories,purchase_orders,contact,company,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,contact,company,employee", - "applied_payments,tracking_categories,purchase_orders,contact,company,employee,accounting_period", - "applied_payments,tracking_categories,purchase_orders,contact,company,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,contact,company,employee,payment_term", - "applied_payments,tracking_categories,purchase_orders,contact,company,payment_term", - "applied_payments,tracking_categories,purchase_orders,contact,employee", - "applied_payments,tracking_categories,purchase_orders,contact,employee,accounting_period", - "applied_payments,tracking_categories,purchase_orders,contact,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,contact,employee,payment_term", - "applied_payments,tracking_categories,purchase_orders,contact,payment_term", - "applied_payments,tracking_categories,purchase_orders,employee", - "applied_payments,tracking_categories,purchase_orders,employee,accounting_period", - "applied_payments,tracking_categories,purchase_orders,employee,accounting_period,payment_term", - "applied_payments,tracking_categories,purchase_orders,employee,payment_term", - "applied_payments,tracking_categories,purchase_orders,payment_term", - "applied_vendor_credits", - "applied_vendor_credits,accounting_period", - "applied_vendor_credits,accounting_period,payment_term", - "applied_vendor_credits,company", - "applied_vendor_credits,company,accounting_period", - "applied_vendor_credits,company,accounting_period,payment_term", - "applied_vendor_credits,company,employee", - "applied_vendor_credits,company,employee,accounting_period", - "applied_vendor_credits,company,employee,accounting_period,payment_term", - "applied_vendor_credits,company,employee,payment_term", - "applied_vendor_credits,company,payment_term", - "applied_vendor_credits,contact", - "applied_vendor_credits,contact,accounting_period", - "applied_vendor_credits,contact,accounting_period,payment_term", - "applied_vendor_credits,contact,company", - "applied_vendor_credits,contact,company,accounting_period", - "applied_vendor_credits,contact,company,accounting_period,payment_term", - "applied_vendor_credits,contact,company,employee", - "applied_vendor_credits,contact,company,employee,accounting_period", - "applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "applied_vendor_credits,contact,company,employee,payment_term", - "applied_vendor_credits,contact,company,payment_term", - "applied_vendor_credits,contact,employee", - "applied_vendor_credits,contact,employee,accounting_period", - "applied_vendor_credits,contact,employee,accounting_period,payment_term", - "applied_vendor_credits,contact,employee,payment_term", - "applied_vendor_credits,contact,payment_term", - "applied_vendor_credits,employee", - "applied_vendor_credits,employee,accounting_period", - "applied_vendor_credits,employee,accounting_period,payment_term", - "applied_vendor_credits,employee,payment_term", - "applied_vendor_credits,payment_term", - "company", - "company,accounting_period", - "company,accounting_period,payment_term", - "company,employee", - "company,employee,accounting_period", - "company,employee,accounting_period,payment_term", - "company,employee,payment_term", - "company,payment_term", - "contact", - "contact,accounting_period", - "contact,accounting_period,payment_term", - "contact,company", - "contact,company,accounting_period", - "contact,company,accounting_period,payment_term", - "contact,company,employee", - "contact,company,employee,accounting_period", - "contact,company,employee,accounting_period,payment_term", - "contact,company,employee,payment_term", - "contact,company,payment_term", - "contact,employee", - "contact,employee,accounting_period", - "contact,employee,accounting_period,payment_term", - "contact,employee,payment_term", - "contact,payment_term", - "employee", - "employee,accounting_period", - "employee,accounting_period,payment_term", - "employee,payment_term", - "line_items", - "line_items,accounting_period", - "line_items,accounting_period,payment_term", - "line_items,applied_credit_notes", - "line_items,applied_credit_notes,accounting_period", - "line_items,applied_credit_notes,accounting_period,payment_term", - "line_items,applied_credit_notes,applied_vendor_credits", - "line_items,applied_credit_notes,applied_vendor_credits,accounting_period", - "line_items,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "line_items,applied_credit_notes,applied_vendor_credits,company", - "line_items,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "line_items,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "line_items,applied_credit_notes,applied_vendor_credits,company,employee", - "line_items,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "line_items,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "line_items,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "line_items,applied_credit_notes,applied_vendor_credits,company,payment_term", - "line_items,applied_credit_notes,applied_vendor_credits,contact", - "line_items,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "line_items,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "line_items,applied_credit_notes,applied_vendor_credits,contact,company", - "line_items,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "line_items,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "line_items,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "line_items,applied_credit_notes,applied_vendor_credits,contact,employee", - "line_items,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "line_items,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "line_items,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "line_items,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "line_items,applied_credit_notes,applied_vendor_credits,employee", - "line_items,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "line_items,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "line_items,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "line_items,applied_credit_notes,applied_vendor_credits,payment_term", - "line_items,applied_credit_notes,company", - "line_items,applied_credit_notes,company,accounting_period", - "line_items,applied_credit_notes,company,accounting_period,payment_term", - "line_items,applied_credit_notes,company,employee", - "line_items,applied_credit_notes,company,employee,accounting_period", - "line_items,applied_credit_notes,company,employee,accounting_period,payment_term", - "line_items,applied_credit_notes,company,employee,payment_term", - "line_items,applied_credit_notes,company,payment_term", - "line_items,applied_credit_notes,contact", - "line_items,applied_credit_notes,contact,accounting_period", - "line_items,applied_credit_notes,contact,accounting_period,payment_term", - "line_items,applied_credit_notes,contact,company", - "line_items,applied_credit_notes,contact,company,accounting_period", - "line_items,applied_credit_notes,contact,company,accounting_period,payment_term", - "line_items,applied_credit_notes,contact,company,employee", - "line_items,applied_credit_notes,contact,company,employee,accounting_period", - "line_items,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "line_items,applied_credit_notes,contact,company,employee,payment_term", - "line_items,applied_credit_notes,contact,company,payment_term", - "line_items,applied_credit_notes,contact,employee", - "line_items,applied_credit_notes,contact,employee,accounting_period", - "line_items,applied_credit_notes,contact,employee,accounting_period,payment_term", - "line_items,applied_credit_notes,contact,employee,payment_term", - "line_items,applied_credit_notes,contact,payment_term", - "line_items,applied_credit_notes,employee", - "line_items,applied_credit_notes,employee,accounting_period", - "line_items,applied_credit_notes,employee,accounting_period,payment_term", - "line_items,applied_credit_notes,employee,payment_term", - "line_items,applied_credit_notes,payment_term", - "line_items,applied_vendor_credits", - "line_items,applied_vendor_credits,accounting_period", - "line_items,applied_vendor_credits,accounting_period,payment_term", - "line_items,applied_vendor_credits,company", - "line_items,applied_vendor_credits,company,accounting_period", - "line_items,applied_vendor_credits,company,accounting_period,payment_term", - "line_items,applied_vendor_credits,company,employee", - "line_items,applied_vendor_credits,company,employee,accounting_period", - "line_items,applied_vendor_credits,company,employee,accounting_period,payment_term", - "line_items,applied_vendor_credits,company,employee,payment_term", - "line_items,applied_vendor_credits,company,payment_term", - "line_items,applied_vendor_credits,contact", - "line_items,applied_vendor_credits,contact,accounting_period", - "line_items,applied_vendor_credits,contact,accounting_period,payment_term", - "line_items,applied_vendor_credits,contact,company", - "line_items,applied_vendor_credits,contact,company,accounting_period", - "line_items,applied_vendor_credits,contact,company,accounting_period,payment_term", - "line_items,applied_vendor_credits,contact,company,employee", - "line_items,applied_vendor_credits,contact,company,employee,accounting_period", - "line_items,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "line_items,applied_vendor_credits,contact,company,employee,payment_term", - "line_items,applied_vendor_credits,contact,company,payment_term", - "line_items,applied_vendor_credits,contact,employee", - "line_items,applied_vendor_credits,contact,employee,accounting_period", - "line_items,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "line_items,applied_vendor_credits,contact,employee,payment_term", - "line_items,applied_vendor_credits,contact,payment_term", - "line_items,applied_vendor_credits,employee", - "line_items,applied_vendor_credits,employee,accounting_period", - "line_items,applied_vendor_credits,employee,accounting_period,payment_term", - "line_items,applied_vendor_credits,employee,payment_term", - "line_items,applied_vendor_credits,payment_term", - "line_items,company", - "line_items,company,accounting_period", - "line_items,company,accounting_period,payment_term", - "line_items,company,employee", - "line_items,company,employee,accounting_period", - "line_items,company,employee,accounting_period,payment_term", - "line_items,company,employee,payment_term", - "line_items,company,payment_term", - "line_items,contact", - "line_items,contact,accounting_period", - "line_items,contact,accounting_period,payment_term", - "line_items,contact,company", - "line_items,contact,company,accounting_period", - "line_items,contact,company,accounting_period,payment_term", - "line_items,contact,company,employee", - "line_items,contact,company,employee,accounting_period", - "line_items,contact,company,employee,accounting_period,payment_term", - "line_items,contact,company,employee,payment_term", - "line_items,contact,company,payment_term", - "line_items,contact,employee", - "line_items,contact,employee,accounting_period", - "line_items,contact,employee,accounting_period,payment_term", - "line_items,contact,employee,payment_term", - "line_items,contact,payment_term", - "line_items,employee", - "line_items,employee,accounting_period", - "line_items,employee,accounting_period,payment_term", - "line_items,employee,payment_term", - "line_items,payment_term", - "line_items,purchase_orders", - "line_items,purchase_orders,accounting_period", - "line_items,purchase_orders,accounting_period,payment_term", - "line_items,purchase_orders,applied_credit_notes", - "line_items,purchase_orders,applied_credit_notes,accounting_period", - "line_items,purchase_orders,applied_credit_notes,accounting_period,payment_term", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - "line_items,purchase_orders,applied_credit_notes,company", - "line_items,purchase_orders,applied_credit_notes,company,accounting_period", - "line_items,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - "line_items,purchase_orders,applied_credit_notes,company,employee", - "line_items,purchase_orders,applied_credit_notes,company,employee,accounting_period", - "line_items,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - "line_items,purchase_orders,applied_credit_notes,company,employee,payment_term", - "line_items,purchase_orders,applied_credit_notes,company,payment_term", - "line_items,purchase_orders,applied_credit_notes,contact", - "line_items,purchase_orders,applied_credit_notes,contact,accounting_period", - "line_items,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - "line_items,purchase_orders,applied_credit_notes,contact,company", - "line_items,purchase_orders,applied_credit_notes,contact,company,accounting_period", - "line_items,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - "line_items,purchase_orders,applied_credit_notes,contact,company,employee", - "line_items,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - "line_items,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "line_items,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - "line_items,purchase_orders,applied_credit_notes,contact,company,payment_term", - "line_items,purchase_orders,applied_credit_notes,contact,employee", - "line_items,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - "line_items,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - "line_items,purchase_orders,applied_credit_notes,contact,employee,payment_term", - "line_items,purchase_orders,applied_credit_notes,contact,payment_term", - "line_items,purchase_orders,applied_credit_notes,employee", - "line_items,purchase_orders,applied_credit_notes,employee,accounting_period", - "line_items,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - "line_items,purchase_orders,applied_credit_notes,employee,payment_term", - "line_items,purchase_orders,applied_credit_notes,payment_term", - "line_items,purchase_orders,applied_vendor_credits", - "line_items,purchase_orders,applied_vendor_credits,accounting_period", - "line_items,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - "line_items,purchase_orders,applied_vendor_credits,company", - "line_items,purchase_orders,applied_vendor_credits,company,accounting_period", - "line_items,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - "line_items,purchase_orders,applied_vendor_credits,company,employee", - "line_items,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - "line_items,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - "line_items,purchase_orders,applied_vendor_credits,company,employee,payment_term", - "line_items,purchase_orders,applied_vendor_credits,company,payment_term", - "line_items,purchase_orders,applied_vendor_credits,contact", - "line_items,purchase_orders,applied_vendor_credits,contact,accounting_period", - "line_items,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - "line_items,purchase_orders,applied_vendor_credits,contact,company", - "line_items,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - "line_items,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - "line_items,purchase_orders,applied_vendor_credits,contact,company,employee", - "line_items,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - "line_items,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "line_items,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - "line_items,purchase_orders,applied_vendor_credits,contact,company,payment_term", - "line_items,purchase_orders,applied_vendor_credits,contact,employee", - "line_items,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - "line_items,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "line_items,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - "line_items,purchase_orders,applied_vendor_credits,contact,payment_term", - "line_items,purchase_orders,applied_vendor_credits,employee", - "line_items,purchase_orders,applied_vendor_credits,employee,accounting_period", - "line_items,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - "line_items,purchase_orders,applied_vendor_credits,employee,payment_term", - "line_items,purchase_orders,applied_vendor_credits,payment_term", - "line_items,purchase_orders,company", - "line_items,purchase_orders,company,accounting_period", - "line_items,purchase_orders,company,accounting_period,payment_term", - "line_items,purchase_orders,company,employee", - "line_items,purchase_orders,company,employee,accounting_period", - "line_items,purchase_orders,company,employee,accounting_period,payment_term", - "line_items,purchase_orders,company,employee,payment_term", - "line_items,purchase_orders,company,payment_term", - "line_items,purchase_orders,contact", - "line_items,purchase_orders,contact,accounting_period", - "line_items,purchase_orders,contact,accounting_period,payment_term", - "line_items,purchase_orders,contact,company", - "line_items,purchase_orders,contact,company,accounting_period", - "line_items,purchase_orders,contact,company,accounting_period,payment_term", - "line_items,purchase_orders,contact,company,employee", - "line_items,purchase_orders,contact,company,employee,accounting_period", - "line_items,purchase_orders,contact,company,employee,accounting_period,payment_term", - "line_items,purchase_orders,contact,company,employee,payment_term", - "line_items,purchase_orders,contact,company,payment_term", - "line_items,purchase_orders,contact,employee", - "line_items,purchase_orders,contact,employee,accounting_period", - "line_items,purchase_orders,contact,employee,accounting_period,payment_term", - "line_items,purchase_orders,contact,employee,payment_term", - "line_items,purchase_orders,contact,payment_term", - "line_items,purchase_orders,employee", - "line_items,purchase_orders,employee,accounting_period", - "line_items,purchase_orders,employee,accounting_period,payment_term", - "line_items,purchase_orders,employee,payment_term", - "line_items,purchase_orders,payment_term", - "line_items,tracking_categories", - "line_items,tracking_categories,accounting_period", - "line_items,tracking_categories,accounting_period,payment_term", - "line_items,tracking_categories,applied_credit_notes", - "line_items,tracking_categories,applied_credit_notes,accounting_period", - "line_items,tracking_categories,applied_credit_notes,accounting_period,payment_term", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,payment_term", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,payment_term", - "line_items,tracking_categories,applied_credit_notes,company", - "line_items,tracking_categories,applied_credit_notes,company,accounting_period", - "line_items,tracking_categories,applied_credit_notes,company,accounting_period,payment_term", - "line_items,tracking_categories,applied_credit_notes,company,employee", - "line_items,tracking_categories,applied_credit_notes,company,employee,accounting_period", - "line_items,tracking_categories,applied_credit_notes,company,employee,accounting_period,payment_term", - "line_items,tracking_categories,applied_credit_notes,company,employee,payment_term", - "line_items,tracking_categories,applied_credit_notes,company,payment_term", - "line_items,tracking_categories,applied_credit_notes,contact", - "line_items,tracking_categories,applied_credit_notes,contact,accounting_period", - "line_items,tracking_categories,applied_credit_notes,contact,accounting_period,payment_term", - "line_items,tracking_categories,applied_credit_notes,contact,company", - "line_items,tracking_categories,applied_credit_notes,contact,company,accounting_period", - "line_items,tracking_categories,applied_credit_notes,contact,company,accounting_period,payment_term", - "line_items,tracking_categories,applied_credit_notes,contact,company,employee", - "line_items,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period", - "line_items,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "line_items,tracking_categories,applied_credit_notes,contact,company,employee,payment_term", - "line_items,tracking_categories,applied_credit_notes,contact,company,payment_term", - "line_items,tracking_categories,applied_credit_notes,contact,employee", - "line_items,tracking_categories,applied_credit_notes,contact,employee,accounting_period", - "line_items,tracking_categories,applied_credit_notes,contact,employee,accounting_period,payment_term", - "line_items,tracking_categories,applied_credit_notes,contact,employee,payment_term", - "line_items,tracking_categories,applied_credit_notes,contact,payment_term", - "line_items,tracking_categories,applied_credit_notes,employee", - "line_items,tracking_categories,applied_credit_notes,employee,accounting_period", - "line_items,tracking_categories,applied_credit_notes,employee,accounting_period,payment_term", - "line_items,tracking_categories,applied_credit_notes,employee,payment_term", - "line_items,tracking_categories,applied_credit_notes,payment_term", - "line_items,tracking_categories,applied_vendor_credits", - "line_items,tracking_categories,applied_vendor_credits,accounting_period", - "line_items,tracking_categories,applied_vendor_credits,accounting_period,payment_term", - "line_items,tracking_categories,applied_vendor_credits,company", - "line_items,tracking_categories,applied_vendor_credits,company,accounting_period", - "line_items,tracking_categories,applied_vendor_credits,company,accounting_period,payment_term", - "line_items,tracking_categories,applied_vendor_credits,company,employee", - "line_items,tracking_categories,applied_vendor_credits,company,employee,accounting_period", - "line_items,tracking_categories,applied_vendor_credits,company,employee,accounting_period,payment_term", - "line_items,tracking_categories,applied_vendor_credits,company,employee,payment_term", - "line_items,tracking_categories,applied_vendor_credits,company,payment_term", - "line_items,tracking_categories,applied_vendor_credits,contact", - "line_items,tracking_categories,applied_vendor_credits,contact,accounting_period", - "line_items,tracking_categories,applied_vendor_credits,contact,accounting_period,payment_term", - "line_items,tracking_categories,applied_vendor_credits,contact,company", - "line_items,tracking_categories,applied_vendor_credits,contact,company,accounting_period", - "line_items,tracking_categories,applied_vendor_credits,contact,company,accounting_period,payment_term", - "line_items,tracking_categories,applied_vendor_credits,contact,company,employee", - "line_items,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period", - "line_items,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "line_items,tracking_categories,applied_vendor_credits,contact,company,employee,payment_term", - "line_items,tracking_categories,applied_vendor_credits,contact,company,payment_term", - "line_items,tracking_categories,applied_vendor_credits,contact,employee", - "line_items,tracking_categories,applied_vendor_credits,contact,employee,accounting_period", - "line_items,tracking_categories,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "line_items,tracking_categories,applied_vendor_credits,contact,employee,payment_term", - "line_items,tracking_categories,applied_vendor_credits,contact,payment_term", - "line_items,tracking_categories,applied_vendor_credits,employee", - "line_items,tracking_categories,applied_vendor_credits,employee,accounting_period", - "line_items,tracking_categories,applied_vendor_credits,employee,accounting_period,payment_term", - "line_items,tracking_categories,applied_vendor_credits,employee,payment_term", - "line_items,tracking_categories,applied_vendor_credits,payment_term", - "line_items,tracking_categories,company", - "line_items,tracking_categories,company,accounting_period", - "line_items,tracking_categories,company,accounting_period,payment_term", - "line_items,tracking_categories,company,employee", - "line_items,tracking_categories,company,employee,accounting_period", - "line_items,tracking_categories,company,employee,accounting_period,payment_term", - "line_items,tracking_categories,company,employee,payment_term", - "line_items,tracking_categories,company,payment_term", - "line_items,tracking_categories,contact", - "line_items,tracking_categories,contact,accounting_period", - "line_items,tracking_categories,contact,accounting_period,payment_term", - "line_items,tracking_categories,contact,company", - "line_items,tracking_categories,contact,company,accounting_period", - "line_items,tracking_categories,contact,company,accounting_period,payment_term", - "line_items,tracking_categories,contact,company,employee", - "line_items,tracking_categories,contact,company,employee,accounting_period", - "line_items,tracking_categories,contact,company,employee,accounting_period,payment_term", - "line_items,tracking_categories,contact,company,employee,payment_term", - "line_items,tracking_categories,contact,company,payment_term", - "line_items,tracking_categories,contact,employee", - "line_items,tracking_categories,contact,employee,accounting_period", - "line_items,tracking_categories,contact,employee,accounting_period,payment_term", - "line_items,tracking_categories,contact,employee,payment_term", - "line_items,tracking_categories,contact,payment_term", - "line_items,tracking_categories,employee", - "line_items,tracking_categories,employee,accounting_period", - "line_items,tracking_categories,employee,accounting_period,payment_term", - "line_items,tracking_categories,employee,payment_term", - "line_items,tracking_categories,payment_term", - "line_items,tracking_categories,purchase_orders", - "line_items,tracking_categories,purchase_orders,accounting_period", - "line_items,tracking_categories,purchase_orders,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,accounting_period", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,company", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,company,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,employee", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,payment_term", - "line_items,tracking_categories,purchase_orders,applied_credit_notes,payment_term", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,company", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,payment_term", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,payment_term", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,payment_term", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,payment_term", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,payment_term", - "line_items,tracking_categories,purchase_orders,applied_vendor_credits,payment_term", - "line_items,tracking_categories,purchase_orders,company", - "line_items,tracking_categories,purchase_orders,company,accounting_period", - "line_items,tracking_categories,purchase_orders,company,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,company,employee", - "line_items,tracking_categories,purchase_orders,company,employee,accounting_period", - "line_items,tracking_categories,purchase_orders,company,employee,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,company,employee,payment_term", - "line_items,tracking_categories,purchase_orders,company,payment_term", - "line_items,tracking_categories,purchase_orders,contact", - "line_items,tracking_categories,purchase_orders,contact,accounting_period", - "line_items,tracking_categories,purchase_orders,contact,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,contact,company", - "line_items,tracking_categories,purchase_orders,contact,company,accounting_period", - "line_items,tracking_categories,purchase_orders,contact,company,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,contact,company,employee", - "line_items,tracking_categories,purchase_orders,contact,company,employee,accounting_period", - "line_items,tracking_categories,purchase_orders,contact,company,employee,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,contact,company,employee,payment_term", - "line_items,tracking_categories,purchase_orders,contact,company,payment_term", - "line_items,tracking_categories,purchase_orders,contact,employee", - "line_items,tracking_categories,purchase_orders,contact,employee,accounting_period", - "line_items,tracking_categories,purchase_orders,contact,employee,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,contact,employee,payment_term", - "line_items,tracking_categories,purchase_orders,contact,payment_term", - "line_items,tracking_categories,purchase_orders,employee", - "line_items,tracking_categories,purchase_orders,employee,accounting_period", - "line_items,tracking_categories,purchase_orders,employee,accounting_period,payment_term", - "line_items,tracking_categories,purchase_orders,employee,payment_term", - "line_items,tracking_categories,purchase_orders,payment_term", - "payment_term", - "payments", - "payments,accounting_period", - "payments,accounting_period,payment_term", - "payments,applied_credit_notes", - "payments,applied_credit_notes,accounting_period", - "payments,applied_credit_notes,accounting_period,payment_term", - "payments,applied_credit_notes,applied_vendor_credits", - "payments,applied_credit_notes,applied_vendor_credits,accounting_period", - "payments,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "payments,applied_credit_notes,applied_vendor_credits,company", - "payments,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "payments,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "payments,applied_credit_notes,applied_vendor_credits,company,employee", - "payments,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "payments,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "payments,applied_credit_notes,applied_vendor_credits,company,payment_term", - "payments,applied_credit_notes,applied_vendor_credits,contact", - "payments,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "payments,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,applied_credit_notes,applied_vendor_credits,contact,company", - "payments,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "payments,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "payments,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "payments,applied_credit_notes,applied_vendor_credits,contact,employee", - "payments,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "payments,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "payments,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "payments,applied_credit_notes,applied_vendor_credits,employee", - "payments,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "payments,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "payments,applied_credit_notes,applied_vendor_credits,payment_term", - "payments,applied_credit_notes,company", - "payments,applied_credit_notes,company,accounting_period", - "payments,applied_credit_notes,company,accounting_period,payment_term", - "payments,applied_credit_notes,company,employee", - "payments,applied_credit_notes,company,employee,accounting_period", - "payments,applied_credit_notes,company,employee,accounting_period,payment_term", - "payments,applied_credit_notes,company,employee,payment_term", - "payments,applied_credit_notes,company,payment_term", - "payments,applied_credit_notes,contact", - "payments,applied_credit_notes,contact,accounting_period", - "payments,applied_credit_notes,contact,accounting_period,payment_term", - "payments,applied_credit_notes,contact,company", - "payments,applied_credit_notes,contact,company,accounting_period", - "payments,applied_credit_notes,contact,company,accounting_period,payment_term", - "payments,applied_credit_notes,contact,company,employee", - "payments,applied_credit_notes,contact,company,employee,accounting_period", - "payments,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "payments,applied_credit_notes,contact,company,employee,payment_term", - "payments,applied_credit_notes,contact,company,payment_term", - "payments,applied_credit_notes,contact,employee", - "payments,applied_credit_notes,contact,employee,accounting_period", - "payments,applied_credit_notes,contact,employee,accounting_period,payment_term", - "payments,applied_credit_notes,contact,employee,payment_term", - "payments,applied_credit_notes,contact,payment_term", - "payments,applied_credit_notes,employee", - "payments,applied_credit_notes,employee,accounting_period", - "payments,applied_credit_notes,employee,accounting_period,payment_term", - "payments,applied_credit_notes,employee,payment_term", - "payments,applied_credit_notes,payment_term", - "payments,applied_payments", - "payments,applied_payments,accounting_period", - "payments,applied_payments,accounting_period,payment_term", - "payments,applied_payments,applied_credit_notes", - "payments,applied_payments,applied_credit_notes,accounting_period", - "payments,applied_payments,applied_credit_notes,accounting_period,payment_term", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,accounting_period", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,company", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,company,employee", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,company,payment_term", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,company", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,employee", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,employee", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "payments,applied_payments,applied_credit_notes,applied_vendor_credits,payment_term", - "payments,applied_payments,applied_credit_notes,company", - "payments,applied_payments,applied_credit_notes,company,accounting_period", - "payments,applied_payments,applied_credit_notes,company,accounting_period,payment_term", - "payments,applied_payments,applied_credit_notes,company,employee", - "payments,applied_payments,applied_credit_notes,company,employee,accounting_period", - "payments,applied_payments,applied_credit_notes,company,employee,accounting_period,payment_term", - "payments,applied_payments,applied_credit_notes,company,employee,payment_term", - "payments,applied_payments,applied_credit_notes,company,payment_term", - "payments,applied_payments,applied_credit_notes,contact", - "payments,applied_payments,applied_credit_notes,contact,accounting_period", - "payments,applied_payments,applied_credit_notes,contact,accounting_period,payment_term", - "payments,applied_payments,applied_credit_notes,contact,company", - "payments,applied_payments,applied_credit_notes,contact,company,accounting_period", - "payments,applied_payments,applied_credit_notes,contact,company,accounting_period,payment_term", - "payments,applied_payments,applied_credit_notes,contact,company,employee", - "payments,applied_payments,applied_credit_notes,contact,company,employee,accounting_period", - "payments,applied_payments,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,applied_credit_notes,contact,company,employee,payment_term", - "payments,applied_payments,applied_credit_notes,contact,company,payment_term", - "payments,applied_payments,applied_credit_notes,contact,employee", - "payments,applied_payments,applied_credit_notes,contact,employee,accounting_period", - "payments,applied_payments,applied_credit_notes,contact,employee,accounting_period,payment_term", - "payments,applied_payments,applied_credit_notes,contact,employee,payment_term", - "payments,applied_payments,applied_credit_notes,contact,payment_term", - "payments,applied_payments,applied_credit_notes,employee", - "payments,applied_payments,applied_credit_notes,employee,accounting_period", - "payments,applied_payments,applied_credit_notes,employee,accounting_period,payment_term", - "payments,applied_payments,applied_credit_notes,employee,payment_term", - "payments,applied_payments,applied_credit_notes,payment_term", - "payments,applied_payments,applied_vendor_credits", - "payments,applied_payments,applied_vendor_credits,accounting_period", - "payments,applied_payments,applied_vendor_credits,accounting_period,payment_term", - "payments,applied_payments,applied_vendor_credits,company", - "payments,applied_payments,applied_vendor_credits,company,accounting_period", - "payments,applied_payments,applied_vendor_credits,company,accounting_period,payment_term", - "payments,applied_payments,applied_vendor_credits,company,employee", - "payments,applied_payments,applied_vendor_credits,company,employee,accounting_period", - "payments,applied_payments,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,applied_payments,applied_vendor_credits,company,employee,payment_term", - "payments,applied_payments,applied_vendor_credits,company,payment_term", - "payments,applied_payments,applied_vendor_credits,contact", - "payments,applied_payments,applied_vendor_credits,contact,accounting_period", - "payments,applied_payments,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,applied_payments,applied_vendor_credits,contact,company", - "payments,applied_payments,applied_vendor_credits,contact,company,accounting_period", - "payments,applied_payments,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,applied_payments,applied_vendor_credits,contact,company,employee", - "payments,applied_payments,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,applied_payments,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,applied_vendor_credits,contact,company,employee,payment_term", - "payments,applied_payments,applied_vendor_credits,contact,company,payment_term", - "payments,applied_payments,applied_vendor_credits,contact,employee", - "payments,applied_payments,applied_vendor_credits,contact,employee,accounting_period", - "payments,applied_payments,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,applied_payments,applied_vendor_credits,contact,employee,payment_term", - "payments,applied_payments,applied_vendor_credits,contact,payment_term", - "payments,applied_payments,applied_vendor_credits,employee", - "payments,applied_payments,applied_vendor_credits,employee,accounting_period", - "payments,applied_payments,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,applied_payments,applied_vendor_credits,employee,payment_term", - "payments,applied_payments,applied_vendor_credits,payment_term", - "payments,applied_payments,company", - "payments,applied_payments,company,accounting_period", - "payments,applied_payments,company,accounting_period,payment_term", - "payments,applied_payments,company,employee", - "payments,applied_payments,company,employee,accounting_period", - "payments,applied_payments,company,employee,accounting_period,payment_term", - "payments,applied_payments,company,employee,payment_term", - "payments,applied_payments,company,payment_term", - "payments,applied_payments,contact", - "payments,applied_payments,contact,accounting_period", - "payments,applied_payments,contact,accounting_period,payment_term", - "payments,applied_payments,contact,company", - "payments,applied_payments,contact,company,accounting_period", - "payments,applied_payments,contact,company,accounting_period,payment_term", - "payments,applied_payments,contact,company,employee", - "payments,applied_payments,contact,company,employee,accounting_period", - "payments,applied_payments,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,contact,company,employee,payment_term", - "payments,applied_payments,contact,company,payment_term", - "payments,applied_payments,contact,employee", - "payments,applied_payments,contact,employee,accounting_period", - "payments,applied_payments,contact,employee,accounting_period,payment_term", - "payments,applied_payments,contact,employee,payment_term", - "payments,applied_payments,contact,payment_term", - "payments,applied_payments,employee", - "payments,applied_payments,employee,accounting_period", - "payments,applied_payments,employee,accounting_period,payment_term", - "payments,applied_payments,employee,payment_term", - "payments,applied_payments,line_items", - "payments,applied_payments,line_items,accounting_period", - "payments,applied_payments,line_items,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_credit_notes", - "payments,applied_payments,line_items,applied_credit_notes,accounting_period", - "payments,applied_payments,line_items,applied_credit_notes,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,accounting_period", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,employee", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,company", - "payments,applied_payments,line_items,applied_credit_notes,company,accounting_period", - "payments,applied_payments,line_items,applied_credit_notes,company,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,company,employee", - "payments,applied_payments,line_items,applied_credit_notes,company,employee,accounting_period", - "payments,applied_payments,line_items,applied_credit_notes,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,company,employee,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,company,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,contact", - "payments,applied_payments,line_items,applied_credit_notes,contact,accounting_period", - "payments,applied_payments,line_items,applied_credit_notes,contact,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,contact,company", - "payments,applied_payments,line_items,applied_credit_notes,contact,company,accounting_period", - "payments,applied_payments,line_items,applied_credit_notes,contact,company,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,contact,company,employee", - "payments,applied_payments,line_items,applied_credit_notes,contact,company,employee,accounting_period", - "payments,applied_payments,line_items,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,contact,company,employee,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,contact,company,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,contact,employee", - "payments,applied_payments,line_items,applied_credit_notes,contact,employee,accounting_period", - "payments,applied_payments,line_items,applied_credit_notes,contact,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,contact,employee,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,contact,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,employee", - "payments,applied_payments,line_items,applied_credit_notes,employee,accounting_period", - "payments,applied_payments,line_items,applied_credit_notes,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,employee,payment_term", - "payments,applied_payments,line_items,applied_credit_notes,payment_term", - "payments,applied_payments,line_items,applied_vendor_credits", - "payments,applied_payments,line_items,applied_vendor_credits,accounting_period", - "payments,applied_payments,line_items,applied_vendor_credits,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_vendor_credits,company", - "payments,applied_payments,line_items,applied_vendor_credits,company,accounting_period", - "payments,applied_payments,line_items,applied_vendor_credits,company,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_vendor_credits,company,employee", - "payments,applied_payments,line_items,applied_vendor_credits,company,employee,accounting_period", - "payments,applied_payments,line_items,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_vendor_credits,company,employee,payment_term", - "payments,applied_payments,line_items,applied_vendor_credits,company,payment_term", - "payments,applied_payments,line_items,applied_vendor_credits,contact", - "payments,applied_payments,line_items,applied_vendor_credits,contact,accounting_period", - "payments,applied_payments,line_items,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_vendor_credits,contact,company", - "payments,applied_payments,line_items,applied_vendor_credits,contact,company,accounting_period", - "payments,applied_payments,line_items,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_vendor_credits,contact,company,employee", - "payments,applied_payments,line_items,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,applied_payments,line_items,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_vendor_credits,contact,company,employee,payment_term", - "payments,applied_payments,line_items,applied_vendor_credits,contact,company,payment_term", - "payments,applied_payments,line_items,applied_vendor_credits,contact,employee", - "payments,applied_payments,line_items,applied_vendor_credits,contact,employee,accounting_period", - "payments,applied_payments,line_items,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_vendor_credits,contact,employee,payment_term", - "payments,applied_payments,line_items,applied_vendor_credits,contact,payment_term", - "payments,applied_payments,line_items,applied_vendor_credits,employee", - "payments,applied_payments,line_items,applied_vendor_credits,employee,accounting_period", - "payments,applied_payments,line_items,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,applied_vendor_credits,employee,payment_term", - "payments,applied_payments,line_items,applied_vendor_credits,payment_term", - "payments,applied_payments,line_items,company", - "payments,applied_payments,line_items,company,accounting_period", - "payments,applied_payments,line_items,company,accounting_period,payment_term", - "payments,applied_payments,line_items,company,employee", - "payments,applied_payments,line_items,company,employee,accounting_period", - "payments,applied_payments,line_items,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,company,employee,payment_term", - "payments,applied_payments,line_items,company,payment_term", - "payments,applied_payments,line_items,contact", - "payments,applied_payments,line_items,contact,accounting_period", - "payments,applied_payments,line_items,contact,accounting_period,payment_term", - "payments,applied_payments,line_items,contact,company", - "payments,applied_payments,line_items,contact,company,accounting_period", - "payments,applied_payments,line_items,contact,company,accounting_period,payment_term", - "payments,applied_payments,line_items,contact,company,employee", - "payments,applied_payments,line_items,contact,company,employee,accounting_period", - "payments,applied_payments,line_items,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,contact,company,employee,payment_term", - "payments,applied_payments,line_items,contact,company,payment_term", - "payments,applied_payments,line_items,contact,employee", - "payments,applied_payments,line_items,contact,employee,accounting_period", - "payments,applied_payments,line_items,contact,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,contact,employee,payment_term", - "payments,applied_payments,line_items,contact,payment_term", - "payments,applied_payments,line_items,employee", - "payments,applied_payments,line_items,employee,accounting_period", - "payments,applied_payments,line_items,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,employee,payment_term", - "payments,applied_payments,line_items,payment_term", - "payments,applied_payments,line_items,purchase_orders", - "payments,applied_payments,line_items,purchase_orders,accounting_period", - "payments,applied_payments,line_items,purchase_orders,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,accounting_period", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,company", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,company,accounting_period", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,company,employee", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,company,employee,accounting_period", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,company,employee,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,company,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,accounting_period", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,accounting_period", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,employee", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,employee,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,employee", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,employee,accounting_period", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,employee,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,accounting_period", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,company", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,company,accounting_period", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,company,employee", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,company,employee,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,company,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,accounting_period", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,employee", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,employee", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,employee,accounting_period", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,employee,payment_term", - "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,payment_term", - "payments,applied_payments,line_items,purchase_orders,company", - "payments,applied_payments,line_items,purchase_orders,company,accounting_period", - "payments,applied_payments,line_items,purchase_orders,company,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,company,employee", - "payments,applied_payments,line_items,purchase_orders,company,employee,accounting_period", - "payments,applied_payments,line_items,purchase_orders,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,company,employee,payment_term", - "payments,applied_payments,line_items,purchase_orders,company,payment_term", - "payments,applied_payments,line_items,purchase_orders,contact", - "payments,applied_payments,line_items,purchase_orders,contact,accounting_period", - "payments,applied_payments,line_items,purchase_orders,contact,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,contact,company", - "payments,applied_payments,line_items,purchase_orders,contact,company,accounting_period", - "payments,applied_payments,line_items,purchase_orders,contact,company,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,contact,company,employee", - "payments,applied_payments,line_items,purchase_orders,contact,company,employee,accounting_period", - "payments,applied_payments,line_items,purchase_orders,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,contact,company,employee,payment_term", - "payments,applied_payments,line_items,purchase_orders,contact,company,payment_term", - "payments,applied_payments,line_items,purchase_orders,contact,employee", - "payments,applied_payments,line_items,purchase_orders,contact,employee,accounting_period", - "payments,applied_payments,line_items,purchase_orders,contact,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,contact,employee,payment_term", - "payments,applied_payments,line_items,purchase_orders,contact,payment_term", - "payments,applied_payments,line_items,purchase_orders,employee", - "payments,applied_payments,line_items,purchase_orders,employee,accounting_period", - "payments,applied_payments,line_items,purchase_orders,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,purchase_orders,employee,payment_term", - "payments,applied_payments,line_items,purchase_orders,payment_term", - "payments,applied_payments,line_items,tracking_categories", - "payments,applied_payments,line_items,tracking_categories,accounting_period", - "payments,applied_payments,line_items,tracking_categories,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,accounting_period", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,company", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,company,accounting_period", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,company,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,company,employee", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,company,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,company,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,company,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,accounting_period", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,accounting_period", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,employee", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,employee", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,accounting_period", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,company", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,company,accounting_period", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,company,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,company,employee", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,company,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,company,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,company,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,accounting_period", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,accounting_period", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,employee", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,employee", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,payment_term", - "payments,applied_payments,line_items,tracking_categories,company", - "payments,applied_payments,line_items,tracking_categories,company,accounting_period", - "payments,applied_payments,line_items,tracking_categories,company,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,company,employee", - "payments,applied_payments,line_items,tracking_categories,company,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,company,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,company,payment_term", - "payments,applied_payments,line_items,tracking_categories,contact", - "payments,applied_payments,line_items,tracking_categories,contact,accounting_period", - "payments,applied_payments,line_items,tracking_categories,contact,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,contact,company", - "payments,applied_payments,line_items,tracking_categories,contact,company,accounting_period", - "payments,applied_payments,line_items,tracking_categories,contact,company,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,contact,company,employee", - "payments,applied_payments,line_items,tracking_categories,contact,company,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,contact,company,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,contact,company,payment_term", - "payments,applied_payments,line_items,tracking_categories,contact,employee", - "payments,applied_payments,line_items,tracking_categories,contact,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,contact,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,contact,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,contact,payment_term", - "payments,applied_payments,line_items,tracking_categories,employee", - "payments,applied_payments,line_items,tracking_categories,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,company", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,company,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,company,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,company,employee", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,company,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,company,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,company,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,company", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,company,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,company,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,company,employee", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,company,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,company,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,company,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,employee", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,employee", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,employee,accounting_period", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,employee,accounting_period,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,employee,payment_term", - "payments,applied_payments,line_items,tracking_categories,purchase_orders,payment_term", - "payments,applied_payments,payment_term", - "payments,applied_payments,purchase_orders", - "payments,applied_payments,purchase_orders,accounting_period", - "payments,applied_payments,purchase_orders,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes", - "payments,applied_payments,purchase_orders,applied_credit_notes,accounting_period", - "payments,applied_payments,purchase_orders,applied_credit_notes,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,company", - "payments,applied_payments,purchase_orders,applied_credit_notes,company,accounting_period", - "payments,applied_payments,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,company,employee", - "payments,applied_payments,purchase_orders,applied_credit_notes,company,employee,accounting_period", - "payments,applied_payments,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,company,employee,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,company,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,contact", - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,accounting_period", - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,company", - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,company,accounting_period", - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,company,employee", - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,company,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,employee", - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,employee,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,contact,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,employee", - "payments,applied_payments,purchase_orders,applied_credit_notes,employee,accounting_period", - "payments,applied_payments,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,employee,payment_term", - "payments,applied_payments,purchase_orders,applied_credit_notes,payment_term", - "payments,applied_payments,purchase_orders,applied_vendor_credits", - "payments,applied_payments,purchase_orders,applied_vendor_credits,accounting_period", - "payments,applied_payments,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_vendor_credits,company", - "payments,applied_payments,purchase_orders,applied_vendor_credits,company,accounting_period", - "payments,applied_payments,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_vendor_credits,company,employee", - "payments,applied_payments,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - "payments,applied_payments,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_vendor_credits,company,employee,payment_term", - "payments,applied_payments,purchase_orders,applied_vendor_credits,company,payment_term", - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact", - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,accounting_period", - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,company", - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,company,employee", - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,company,payment_term", - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,employee", - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,payment_term", - "payments,applied_payments,purchase_orders,applied_vendor_credits,employee", - "payments,applied_payments,purchase_orders,applied_vendor_credits,employee,accounting_period", - "payments,applied_payments,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,applied_vendor_credits,employee,payment_term", - "payments,applied_payments,purchase_orders,applied_vendor_credits,payment_term", - "payments,applied_payments,purchase_orders,company", - "payments,applied_payments,purchase_orders,company,accounting_period", - "payments,applied_payments,purchase_orders,company,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,company,employee", - "payments,applied_payments,purchase_orders,company,employee,accounting_period", - "payments,applied_payments,purchase_orders,company,employee,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,company,employee,payment_term", - "payments,applied_payments,purchase_orders,company,payment_term", - "payments,applied_payments,purchase_orders,contact", - "payments,applied_payments,purchase_orders,contact,accounting_period", - "payments,applied_payments,purchase_orders,contact,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,contact,company", - "payments,applied_payments,purchase_orders,contact,company,accounting_period", - "payments,applied_payments,purchase_orders,contact,company,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,contact,company,employee", - "payments,applied_payments,purchase_orders,contact,company,employee,accounting_period", - "payments,applied_payments,purchase_orders,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,contact,company,employee,payment_term", - "payments,applied_payments,purchase_orders,contact,company,payment_term", - "payments,applied_payments,purchase_orders,contact,employee", - "payments,applied_payments,purchase_orders,contact,employee,accounting_period", - "payments,applied_payments,purchase_orders,contact,employee,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,contact,employee,payment_term", - "payments,applied_payments,purchase_orders,contact,payment_term", - "payments,applied_payments,purchase_orders,employee", - "payments,applied_payments,purchase_orders,employee,accounting_period", - "payments,applied_payments,purchase_orders,employee,accounting_period,payment_term", - "payments,applied_payments,purchase_orders,employee,payment_term", - "payments,applied_payments,purchase_orders,payment_term", - "payments,applied_payments,tracking_categories", - "payments,applied_payments,tracking_categories,accounting_period", - "payments,applied_payments,tracking_categories,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes", - "payments,applied_payments,tracking_categories,applied_credit_notes,accounting_period", - "payments,applied_payments,tracking_categories,applied_credit_notes,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,company", - "payments,applied_payments,tracking_categories,applied_credit_notes,company,accounting_period", - "payments,applied_payments,tracking_categories,applied_credit_notes,company,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,company,employee", - "payments,applied_payments,tracking_categories,applied_credit_notes,company,employee,accounting_period", - "payments,applied_payments,tracking_categories,applied_credit_notes,company,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,company,employee,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,company,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,contact", - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,accounting_period", - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,company", - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,company,accounting_period", - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,company,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,company,employee", - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period", - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,company,employee,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,company,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,employee", - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,employee,accounting_period", - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,employee,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,contact,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,employee", - "payments,applied_payments,tracking_categories,applied_credit_notes,employee,accounting_period", - "payments,applied_payments,tracking_categories,applied_credit_notes,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,employee,payment_term", - "payments,applied_payments,tracking_categories,applied_credit_notes,payment_term", - "payments,applied_payments,tracking_categories,applied_vendor_credits", - "payments,applied_payments,tracking_categories,applied_vendor_credits,accounting_period", - "payments,applied_payments,tracking_categories,applied_vendor_credits,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_vendor_credits,company", - "payments,applied_payments,tracking_categories,applied_vendor_credits,company,accounting_period", - "payments,applied_payments,tracking_categories,applied_vendor_credits,company,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_vendor_credits,company,employee", - "payments,applied_payments,tracking_categories,applied_vendor_credits,company,employee,accounting_period", - "payments,applied_payments,tracking_categories,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_vendor_credits,company,employee,payment_term", - "payments,applied_payments,tracking_categories,applied_vendor_credits,company,payment_term", - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact", - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,accounting_period", - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,company", - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,company,accounting_period", - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,company,employee", - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,company,employee,payment_term", - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,company,payment_term", - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,employee", - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,employee,accounting_period", - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,employee,payment_term", - "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,payment_term", - "payments,applied_payments,tracking_categories,applied_vendor_credits,employee", - "payments,applied_payments,tracking_categories,applied_vendor_credits,employee,accounting_period", - "payments,applied_payments,tracking_categories,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,applied_vendor_credits,employee,payment_term", - "payments,applied_payments,tracking_categories,applied_vendor_credits,payment_term", - "payments,applied_payments,tracking_categories,company", - "payments,applied_payments,tracking_categories,company,accounting_period", - "payments,applied_payments,tracking_categories,company,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,company,employee", - "payments,applied_payments,tracking_categories,company,employee,accounting_period", - "payments,applied_payments,tracking_categories,company,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,company,employee,payment_term", - "payments,applied_payments,tracking_categories,company,payment_term", - "payments,applied_payments,tracking_categories,contact", - "payments,applied_payments,tracking_categories,contact,accounting_period", - "payments,applied_payments,tracking_categories,contact,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,contact,company", - "payments,applied_payments,tracking_categories,contact,company,accounting_period", - "payments,applied_payments,tracking_categories,contact,company,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,contact,company,employee", - "payments,applied_payments,tracking_categories,contact,company,employee,accounting_period", - "payments,applied_payments,tracking_categories,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,contact,company,employee,payment_term", - "payments,applied_payments,tracking_categories,contact,company,payment_term", - "payments,applied_payments,tracking_categories,contact,employee", - "payments,applied_payments,tracking_categories,contact,employee,accounting_period", - "payments,applied_payments,tracking_categories,contact,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,contact,employee,payment_term", - "payments,applied_payments,tracking_categories,contact,payment_term", - "payments,applied_payments,tracking_categories,employee", - "payments,applied_payments,tracking_categories,employee,accounting_period", - "payments,applied_payments,tracking_categories,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,employee,payment_term", - "payments,applied_payments,tracking_categories,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders", - "payments,applied_payments,tracking_categories,purchase_orders,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,employee", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,employee,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,employee", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,company", - "payments,applied_payments,tracking_categories,purchase_orders,company,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,company,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,company,employee", - "payments,applied_payments,tracking_categories,purchase_orders,company,employee,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,company,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,company,employee,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,company,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,contact", - "payments,applied_payments,tracking_categories,purchase_orders,contact,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,contact,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,contact,company", - "payments,applied_payments,tracking_categories,purchase_orders,contact,company,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,contact,company,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,contact,company,employee", - "payments,applied_payments,tracking_categories,purchase_orders,contact,company,employee,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,contact,company,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,contact,company,employee,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,contact,company,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,contact,employee", - "payments,applied_payments,tracking_categories,purchase_orders,contact,employee,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,contact,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,contact,employee,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,contact,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,employee", - "payments,applied_payments,tracking_categories,purchase_orders,employee,accounting_period", - "payments,applied_payments,tracking_categories,purchase_orders,employee,accounting_period,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,employee,payment_term", - "payments,applied_payments,tracking_categories,purchase_orders,payment_term", - "payments,applied_vendor_credits", - "payments,applied_vendor_credits,accounting_period", - "payments,applied_vendor_credits,accounting_period,payment_term", - "payments,applied_vendor_credits,company", - "payments,applied_vendor_credits,company,accounting_period", - "payments,applied_vendor_credits,company,accounting_period,payment_term", - "payments,applied_vendor_credits,company,employee", - "payments,applied_vendor_credits,company,employee,accounting_period", - "payments,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,applied_vendor_credits,company,employee,payment_term", - "payments,applied_vendor_credits,company,payment_term", - "payments,applied_vendor_credits,contact", - "payments,applied_vendor_credits,contact,accounting_period", - "payments,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,applied_vendor_credits,contact,company", - "payments,applied_vendor_credits,contact,company,accounting_period", - "payments,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,applied_vendor_credits,contact,company,employee", - "payments,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,applied_vendor_credits,contact,company,employee,payment_term", - "payments,applied_vendor_credits,contact,company,payment_term", - "payments,applied_vendor_credits,contact,employee", - "payments,applied_vendor_credits,contact,employee,accounting_period", - "payments,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,applied_vendor_credits,contact,employee,payment_term", - "payments,applied_vendor_credits,contact,payment_term", - "payments,applied_vendor_credits,employee", - "payments,applied_vendor_credits,employee,accounting_period", - "payments,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,applied_vendor_credits,employee,payment_term", - "payments,applied_vendor_credits,payment_term", - "payments,company", - "payments,company,accounting_period", - "payments,company,accounting_period,payment_term", - "payments,company,employee", - "payments,company,employee,accounting_period", - "payments,company,employee,accounting_period,payment_term", - "payments,company,employee,payment_term", - "payments,company,payment_term", - "payments,contact", - "payments,contact,accounting_period", - "payments,contact,accounting_period,payment_term", - "payments,contact,company", - "payments,contact,company,accounting_period", - "payments,contact,company,accounting_period,payment_term", - "payments,contact,company,employee", - "payments,contact,company,employee,accounting_period", - "payments,contact,company,employee,accounting_period,payment_term", - "payments,contact,company,employee,payment_term", - "payments,contact,company,payment_term", - "payments,contact,employee", - "payments,contact,employee,accounting_period", - "payments,contact,employee,accounting_period,payment_term", - "payments,contact,employee,payment_term", - "payments,contact,payment_term", - "payments,employee", - "payments,employee,accounting_period", - "payments,employee,accounting_period,payment_term", - "payments,employee,payment_term", - "payments,line_items", - "payments,line_items,accounting_period", - "payments,line_items,accounting_period,payment_term", - "payments,line_items,applied_credit_notes", - "payments,line_items,applied_credit_notes,accounting_period", - "payments,line_items,applied_credit_notes,accounting_period,payment_term", - "payments,line_items,applied_credit_notes,applied_vendor_credits", - "payments,line_items,applied_credit_notes,applied_vendor_credits,accounting_period", - "payments,line_items,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "payments,line_items,applied_credit_notes,applied_vendor_credits,company", - "payments,line_items,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "payments,line_items,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee", - "payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "payments,line_items,applied_credit_notes,applied_vendor_credits,company,payment_term", - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact", - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company", - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee", - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "payments,line_items,applied_credit_notes,applied_vendor_credits,employee", - "payments,line_items,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "payments,line_items,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,line_items,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "payments,line_items,applied_credit_notes,applied_vendor_credits,payment_term", - "payments,line_items,applied_credit_notes,company", - "payments,line_items,applied_credit_notes,company,accounting_period", - "payments,line_items,applied_credit_notes,company,accounting_period,payment_term", - "payments,line_items,applied_credit_notes,company,employee", - "payments,line_items,applied_credit_notes,company,employee,accounting_period", - "payments,line_items,applied_credit_notes,company,employee,accounting_period,payment_term", - "payments,line_items,applied_credit_notes,company,employee,payment_term", - "payments,line_items,applied_credit_notes,company,payment_term", - "payments,line_items,applied_credit_notes,contact", - "payments,line_items,applied_credit_notes,contact,accounting_period", - "payments,line_items,applied_credit_notes,contact,accounting_period,payment_term", - "payments,line_items,applied_credit_notes,contact,company", - "payments,line_items,applied_credit_notes,contact,company,accounting_period", - "payments,line_items,applied_credit_notes,contact,company,accounting_period,payment_term", - "payments,line_items,applied_credit_notes,contact,company,employee", - "payments,line_items,applied_credit_notes,contact,company,employee,accounting_period", - "payments,line_items,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "payments,line_items,applied_credit_notes,contact,company,employee,payment_term", - "payments,line_items,applied_credit_notes,contact,company,payment_term", - "payments,line_items,applied_credit_notes,contact,employee", - "payments,line_items,applied_credit_notes,contact,employee,accounting_period", - "payments,line_items,applied_credit_notes,contact,employee,accounting_period,payment_term", - "payments,line_items,applied_credit_notes,contact,employee,payment_term", - "payments,line_items,applied_credit_notes,contact,payment_term", - "payments,line_items,applied_credit_notes,employee", - "payments,line_items,applied_credit_notes,employee,accounting_period", - "payments,line_items,applied_credit_notes,employee,accounting_period,payment_term", - "payments,line_items,applied_credit_notes,employee,payment_term", - "payments,line_items,applied_credit_notes,payment_term", - "payments,line_items,applied_vendor_credits", - "payments,line_items,applied_vendor_credits,accounting_period", - "payments,line_items,applied_vendor_credits,accounting_period,payment_term", - "payments,line_items,applied_vendor_credits,company", - "payments,line_items,applied_vendor_credits,company,accounting_period", - "payments,line_items,applied_vendor_credits,company,accounting_period,payment_term", - "payments,line_items,applied_vendor_credits,company,employee", - "payments,line_items,applied_vendor_credits,company,employee,accounting_period", - "payments,line_items,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,line_items,applied_vendor_credits,company,employee,payment_term", - "payments,line_items,applied_vendor_credits,company,payment_term", - "payments,line_items,applied_vendor_credits,contact", - "payments,line_items,applied_vendor_credits,contact,accounting_period", - "payments,line_items,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,line_items,applied_vendor_credits,contact,company", - "payments,line_items,applied_vendor_credits,contact,company,accounting_period", - "payments,line_items,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,line_items,applied_vendor_credits,contact,company,employee", - "payments,line_items,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,line_items,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,line_items,applied_vendor_credits,contact,company,employee,payment_term", - "payments,line_items,applied_vendor_credits,contact,company,payment_term", - "payments,line_items,applied_vendor_credits,contact,employee", - "payments,line_items,applied_vendor_credits,contact,employee,accounting_period", - "payments,line_items,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,line_items,applied_vendor_credits,contact,employee,payment_term", - "payments,line_items,applied_vendor_credits,contact,payment_term", - "payments,line_items,applied_vendor_credits,employee", - "payments,line_items,applied_vendor_credits,employee,accounting_period", - "payments,line_items,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,line_items,applied_vendor_credits,employee,payment_term", - "payments,line_items,applied_vendor_credits,payment_term", - "payments,line_items,company", - "payments,line_items,company,accounting_period", - "payments,line_items,company,accounting_period,payment_term", - "payments,line_items,company,employee", - "payments,line_items,company,employee,accounting_period", - "payments,line_items,company,employee,accounting_period,payment_term", - "payments,line_items,company,employee,payment_term", - "payments,line_items,company,payment_term", - "payments,line_items,contact", - "payments,line_items,contact,accounting_period", - "payments,line_items,contact,accounting_period,payment_term", - "payments,line_items,contact,company", - "payments,line_items,contact,company,accounting_period", - "payments,line_items,contact,company,accounting_period,payment_term", - "payments,line_items,contact,company,employee", - "payments,line_items,contact,company,employee,accounting_period", - "payments,line_items,contact,company,employee,accounting_period,payment_term", - "payments,line_items,contact,company,employee,payment_term", - "payments,line_items,contact,company,payment_term", - "payments,line_items,contact,employee", - "payments,line_items,contact,employee,accounting_period", - "payments,line_items,contact,employee,accounting_period,payment_term", - "payments,line_items,contact,employee,payment_term", - "payments,line_items,contact,payment_term", - "payments,line_items,employee", - "payments,line_items,employee,accounting_period", - "payments,line_items,employee,accounting_period,payment_term", - "payments,line_items,employee,payment_term", - "payments,line_items,payment_term", - "payments,line_items,purchase_orders", - "payments,line_items,purchase_orders,accounting_period", - "payments,line_items,purchase_orders,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes", - "payments,line_items,purchase_orders,applied_credit_notes,accounting_period", - "payments,line_items,purchase_orders,applied_credit_notes,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,company", - "payments,line_items,purchase_orders,applied_credit_notes,company,accounting_period", - "payments,line_items,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,company,employee", - "payments,line_items,purchase_orders,applied_credit_notes,company,employee,accounting_period", - "payments,line_items,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,company,employee,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,company,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,contact", - "payments,line_items,purchase_orders,applied_credit_notes,contact,accounting_period", - "payments,line_items,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,contact,company", - "payments,line_items,purchase_orders,applied_credit_notes,contact,company,accounting_period", - "payments,line_items,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee", - "payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - "payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,contact,company,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,contact,employee", - "payments,line_items,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - "payments,line_items,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,contact,employee,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,contact,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,employee", - "payments,line_items,purchase_orders,applied_credit_notes,employee,accounting_period", - "payments,line_items,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,employee,payment_term", - "payments,line_items,purchase_orders,applied_credit_notes,payment_term", - "payments,line_items,purchase_orders,applied_vendor_credits", - "payments,line_items,purchase_orders,applied_vendor_credits,accounting_period", - "payments,line_items,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_vendor_credits,company", - "payments,line_items,purchase_orders,applied_vendor_credits,company,accounting_period", - "payments,line_items,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_vendor_credits,company,employee", - "payments,line_items,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - "payments,line_items,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_vendor_credits,company,employee,payment_term", - "payments,line_items,purchase_orders,applied_vendor_credits,company,payment_term", - "payments,line_items,purchase_orders,applied_vendor_credits,contact", - "payments,line_items,purchase_orders,applied_vendor_credits,contact,accounting_period", - "payments,line_items,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_vendor_credits,contact,company", - "payments,line_items,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - "payments,line_items,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee", - "payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - "payments,line_items,purchase_orders,applied_vendor_credits,contact,company,payment_term", - "payments,line_items,purchase_orders,applied_vendor_credits,contact,employee", - "payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - "payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - "payments,line_items,purchase_orders,applied_vendor_credits,contact,payment_term", - "payments,line_items,purchase_orders,applied_vendor_credits,employee", - "payments,line_items,purchase_orders,applied_vendor_credits,employee,accounting_period", - "payments,line_items,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,line_items,purchase_orders,applied_vendor_credits,employee,payment_term", - "payments,line_items,purchase_orders,applied_vendor_credits,payment_term", - "payments,line_items,purchase_orders,company", - "payments,line_items,purchase_orders,company,accounting_period", - "payments,line_items,purchase_orders,company,accounting_period,payment_term", - "payments,line_items,purchase_orders,company,employee", - "payments,line_items,purchase_orders,company,employee,accounting_period", - "payments,line_items,purchase_orders,company,employee,accounting_period,payment_term", - "payments,line_items,purchase_orders,company,employee,payment_term", - "payments,line_items,purchase_orders,company,payment_term", - "payments,line_items,purchase_orders,contact", - "payments,line_items,purchase_orders,contact,accounting_period", - "payments,line_items,purchase_orders,contact,accounting_period,payment_term", - "payments,line_items,purchase_orders,contact,company", - "payments,line_items,purchase_orders,contact,company,accounting_period", - "payments,line_items,purchase_orders,contact,company,accounting_period,payment_term", - "payments,line_items,purchase_orders,contact,company,employee", - "payments,line_items,purchase_orders,contact,company,employee,accounting_period", - "payments,line_items,purchase_orders,contact,company,employee,accounting_period,payment_term", - "payments,line_items,purchase_orders,contact,company,employee,payment_term", - "payments,line_items,purchase_orders,contact,company,payment_term", - "payments,line_items,purchase_orders,contact,employee", - "payments,line_items,purchase_orders,contact,employee,accounting_period", - "payments,line_items,purchase_orders,contact,employee,accounting_period,payment_term", - "payments,line_items,purchase_orders,contact,employee,payment_term", - "payments,line_items,purchase_orders,contact,payment_term", - "payments,line_items,purchase_orders,employee", - "payments,line_items,purchase_orders,employee,accounting_period", - "payments,line_items,purchase_orders,employee,accounting_period,payment_term", - "payments,line_items,purchase_orders,employee,payment_term", - "payments,line_items,purchase_orders,payment_term", - "payments,line_items,tracking_categories", - "payments,line_items,tracking_categories,accounting_period", - "payments,line_items,tracking_categories,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes", - "payments,line_items,tracking_categories,applied_credit_notes,accounting_period", - "payments,line_items,tracking_categories,applied_credit_notes,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,company", - "payments,line_items,tracking_categories,applied_credit_notes,company,accounting_period", - "payments,line_items,tracking_categories,applied_credit_notes,company,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,company,employee", - "payments,line_items,tracking_categories,applied_credit_notes,company,employee,accounting_period", - "payments,line_items,tracking_categories,applied_credit_notes,company,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,company,employee,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,company,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,contact", - "payments,line_items,tracking_categories,applied_credit_notes,contact,accounting_period", - "payments,line_items,tracking_categories,applied_credit_notes,contact,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,contact,company", - "payments,line_items,tracking_categories,applied_credit_notes,contact,company,accounting_period", - "payments,line_items,tracking_categories,applied_credit_notes,contact,company,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee", - "payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period", - "payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,contact,company,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,contact,employee", - "payments,line_items,tracking_categories,applied_credit_notes,contact,employee,accounting_period", - "payments,line_items,tracking_categories,applied_credit_notes,contact,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,contact,employee,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,contact,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,employee", - "payments,line_items,tracking_categories,applied_credit_notes,employee,accounting_period", - "payments,line_items,tracking_categories,applied_credit_notes,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,employee,payment_term", - "payments,line_items,tracking_categories,applied_credit_notes,payment_term", - "payments,line_items,tracking_categories,applied_vendor_credits", - "payments,line_items,tracking_categories,applied_vendor_credits,accounting_period", - "payments,line_items,tracking_categories,applied_vendor_credits,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_vendor_credits,company", - "payments,line_items,tracking_categories,applied_vendor_credits,company,accounting_period", - "payments,line_items,tracking_categories,applied_vendor_credits,company,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_vendor_credits,company,employee", - "payments,line_items,tracking_categories,applied_vendor_credits,company,employee,accounting_period", - "payments,line_items,tracking_categories,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_vendor_credits,company,employee,payment_term", - "payments,line_items,tracking_categories,applied_vendor_credits,company,payment_term", - "payments,line_items,tracking_categories,applied_vendor_credits,contact", - "payments,line_items,tracking_categories,applied_vendor_credits,contact,accounting_period", - "payments,line_items,tracking_categories,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_vendor_credits,contact,company", - "payments,line_items,tracking_categories,applied_vendor_credits,contact,company,accounting_period", - "payments,line_items,tracking_categories,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee", - "payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,payment_term", - "payments,line_items,tracking_categories,applied_vendor_credits,contact,company,payment_term", - "payments,line_items,tracking_categories,applied_vendor_credits,contact,employee", - "payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,accounting_period", - "payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,payment_term", - "payments,line_items,tracking_categories,applied_vendor_credits,contact,payment_term", - "payments,line_items,tracking_categories,applied_vendor_credits,employee", - "payments,line_items,tracking_categories,applied_vendor_credits,employee,accounting_period", - "payments,line_items,tracking_categories,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,applied_vendor_credits,employee,payment_term", - "payments,line_items,tracking_categories,applied_vendor_credits,payment_term", - "payments,line_items,tracking_categories,company", - "payments,line_items,tracking_categories,company,accounting_period", - "payments,line_items,tracking_categories,company,accounting_period,payment_term", - "payments,line_items,tracking_categories,company,employee", - "payments,line_items,tracking_categories,company,employee,accounting_period", - "payments,line_items,tracking_categories,company,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,company,employee,payment_term", - "payments,line_items,tracking_categories,company,payment_term", - "payments,line_items,tracking_categories,contact", - "payments,line_items,tracking_categories,contact,accounting_period", - "payments,line_items,tracking_categories,contact,accounting_period,payment_term", - "payments,line_items,tracking_categories,contact,company", - "payments,line_items,tracking_categories,contact,company,accounting_period", - "payments,line_items,tracking_categories,contact,company,accounting_period,payment_term", - "payments,line_items,tracking_categories,contact,company,employee", - "payments,line_items,tracking_categories,contact,company,employee,accounting_period", - "payments,line_items,tracking_categories,contact,company,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,contact,company,employee,payment_term", - "payments,line_items,tracking_categories,contact,company,payment_term", - "payments,line_items,tracking_categories,contact,employee", - "payments,line_items,tracking_categories,contact,employee,accounting_period", - "payments,line_items,tracking_categories,contact,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,contact,employee,payment_term", - "payments,line_items,tracking_categories,contact,payment_term", - "payments,line_items,tracking_categories,employee", - "payments,line_items,tracking_categories,employee,accounting_period", - "payments,line_items,tracking_categories,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,employee,payment_term", - "payments,line_items,tracking_categories,payment_term", - "payments,line_items,tracking_categories,purchase_orders", - "payments,line_items,tracking_categories,purchase_orders,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,payment_term", - "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,payment_term", - "payments,line_items,tracking_categories,purchase_orders,company", - "payments,line_items,tracking_categories,purchase_orders,company,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,company,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,company,employee", - "payments,line_items,tracking_categories,purchase_orders,company,employee,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,company,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,company,employee,payment_term", - "payments,line_items,tracking_categories,purchase_orders,company,payment_term", - "payments,line_items,tracking_categories,purchase_orders,contact", - "payments,line_items,tracking_categories,purchase_orders,contact,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,contact,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,contact,company", - "payments,line_items,tracking_categories,purchase_orders,contact,company,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,contact,company,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,contact,company,employee", - "payments,line_items,tracking_categories,purchase_orders,contact,company,employee,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,contact,company,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,contact,company,employee,payment_term", - "payments,line_items,tracking_categories,purchase_orders,contact,company,payment_term", - "payments,line_items,tracking_categories,purchase_orders,contact,employee", - "payments,line_items,tracking_categories,purchase_orders,contact,employee,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,contact,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,contact,employee,payment_term", - "payments,line_items,tracking_categories,purchase_orders,contact,payment_term", - "payments,line_items,tracking_categories,purchase_orders,employee", - "payments,line_items,tracking_categories,purchase_orders,employee,accounting_period", - "payments,line_items,tracking_categories,purchase_orders,employee,accounting_period,payment_term", - "payments,line_items,tracking_categories,purchase_orders,employee,payment_term", - "payments,line_items,tracking_categories,purchase_orders,payment_term", - "payments,payment_term", - "payments,purchase_orders", - "payments,purchase_orders,accounting_period", - "payments,purchase_orders,accounting_period,payment_term", - "payments,purchase_orders,applied_credit_notes", - "payments,purchase_orders,applied_credit_notes,accounting_period", - "payments,purchase_orders,applied_credit_notes,accounting_period,payment_term", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - "payments,purchase_orders,applied_credit_notes,company", - "payments,purchase_orders,applied_credit_notes,company,accounting_period", - "payments,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - "payments,purchase_orders,applied_credit_notes,company,employee", - "payments,purchase_orders,applied_credit_notes,company,employee,accounting_period", - "payments,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - "payments,purchase_orders,applied_credit_notes,company,employee,payment_term", - "payments,purchase_orders,applied_credit_notes,company,payment_term", - "payments,purchase_orders,applied_credit_notes,contact", - "payments,purchase_orders,applied_credit_notes,contact,accounting_period", - "payments,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - "payments,purchase_orders,applied_credit_notes,contact,company", - "payments,purchase_orders,applied_credit_notes,contact,company,accounting_period", - "payments,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - "payments,purchase_orders,applied_credit_notes,contact,company,employee", - "payments,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - "payments,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "payments,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - "payments,purchase_orders,applied_credit_notes,contact,company,payment_term", - "payments,purchase_orders,applied_credit_notes,contact,employee", - "payments,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - "payments,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - "payments,purchase_orders,applied_credit_notes,contact,employee,payment_term", - "payments,purchase_orders,applied_credit_notes,contact,payment_term", - "payments,purchase_orders,applied_credit_notes,employee", - "payments,purchase_orders,applied_credit_notes,employee,accounting_period", - "payments,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - "payments,purchase_orders,applied_credit_notes,employee,payment_term", - "payments,purchase_orders,applied_credit_notes,payment_term", - "payments,purchase_orders,applied_vendor_credits", - "payments,purchase_orders,applied_vendor_credits,accounting_period", - "payments,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - "payments,purchase_orders,applied_vendor_credits,company", - "payments,purchase_orders,applied_vendor_credits,company,accounting_period", - "payments,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - "payments,purchase_orders,applied_vendor_credits,company,employee", - "payments,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - "payments,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,purchase_orders,applied_vendor_credits,company,employee,payment_term", - "payments,purchase_orders,applied_vendor_credits,company,payment_term", - "payments,purchase_orders,applied_vendor_credits,contact", - "payments,purchase_orders,applied_vendor_credits,contact,accounting_period", - "payments,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,purchase_orders,applied_vendor_credits,contact,company", - "payments,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - "payments,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,purchase_orders,applied_vendor_credits,contact,company,employee", - "payments,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - "payments,purchase_orders,applied_vendor_credits,contact,company,payment_term", - "payments,purchase_orders,applied_vendor_credits,contact,employee", - "payments,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - "payments,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - "payments,purchase_orders,applied_vendor_credits,contact,payment_term", - "payments,purchase_orders,applied_vendor_credits,employee", - "payments,purchase_orders,applied_vendor_credits,employee,accounting_period", - "payments,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,purchase_orders,applied_vendor_credits,employee,payment_term", - "payments,purchase_orders,applied_vendor_credits,payment_term", - "payments,purchase_orders,company", - "payments,purchase_orders,company,accounting_period", - "payments,purchase_orders,company,accounting_period,payment_term", - "payments,purchase_orders,company,employee", - "payments,purchase_orders,company,employee,accounting_period", - "payments,purchase_orders,company,employee,accounting_period,payment_term", - "payments,purchase_orders,company,employee,payment_term", - "payments,purchase_orders,company,payment_term", - "payments,purchase_orders,contact", - "payments,purchase_orders,contact,accounting_period", - "payments,purchase_orders,contact,accounting_period,payment_term", - "payments,purchase_orders,contact,company", - "payments,purchase_orders,contact,company,accounting_period", - "payments,purchase_orders,contact,company,accounting_period,payment_term", - "payments,purchase_orders,contact,company,employee", - "payments,purchase_orders,contact,company,employee,accounting_period", - "payments,purchase_orders,contact,company,employee,accounting_period,payment_term", - "payments,purchase_orders,contact,company,employee,payment_term", - "payments,purchase_orders,contact,company,payment_term", - "payments,purchase_orders,contact,employee", - "payments,purchase_orders,contact,employee,accounting_period", - "payments,purchase_orders,contact,employee,accounting_period,payment_term", - "payments,purchase_orders,contact,employee,payment_term", - "payments,purchase_orders,contact,payment_term", - "payments,purchase_orders,employee", - "payments,purchase_orders,employee,accounting_period", - "payments,purchase_orders,employee,accounting_period,payment_term", - "payments,purchase_orders,employee,payment_term", - "payments,purchase_orders,payment_term", - "payments,tracking_categories", - "payments,tracking_categories,accounting_period", - "payments,tracking_categories,accounting_period,payment_term", - "payments,tracking_categories,applied_credit_notes", - "payments,tracking_categories,applied_credit_notes,accounting_period", - "payments,tracking_categories,applied_credit_notes,accounting_period,payment_term", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,payment_term", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,payment_term", - "payments,tracking_categories,applied_credit_notes,company", - "payments,tracking_categories,applied_credit_notes,company,accounting_period", - "payments,tracking_categories,applied_credit_notes,company,accounting_period,payment_term", - "payments,tracking_categories,applied_credit_notes,company,employee", - "payments,tracking_categories,applied_credit_notes,company,employee,accounting_period", - "payments,tracking_categories,applied_credit_notes,company,employee,accounting_period,payment_term", - "payments,tracking_categories,applied_credit_notes,company,employee,payment_term", - "payments,tracking_categories,applied_credit_notes,company,payment_term", - "payments,tracking_categories,applied_credit_notes,contact", - "payments,tracking_categories,applied_credit_notes,contact,accounting_period", - "payments,tracking_categories,applied_credit_notes,contact,accounting_period,payment_term", - "payments,tracking_categories,applied_credit_notes,contact,company", - "payments,tracking_categories,applied_credit_notes,contact,company,accounting_period", - "payments,tracking_categories,applied_credit_notes,contact,company,accounting_period,payment_term", - "payments,tracking_categories,applied_credit_notes,contact,company,employee", - "payments,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period", - "payments,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "payments,tracking_categories,applied_credit_notes,contact,company,employee,payment_term", - "payments,tracking_categories,applied_credit_notes,contact,company,payment_term", - "payments,tracking_categories,applied_credit_notes,contact,employee", - "payments,tracking_categories,applied_credit_notes,contact,employee,accounting_period", - "payments,tracking_categories,applied_credit_notes,contact,employee,accounting_period,payment_term", - "payments,tracking_categories,applied_credit_notes,contact,employee,payment_term", - "payments,tracking_categories,applied_credit_notes,contact,payment_term", - "payments,tracking_categories,applied_credit_notes,employee", - "payments,tracking_categories,applied_credit_notes,employee,accounting_period", - "payments,tracking_categories,applied_credit_notes,employee,accounting_period,payment_term", - "payments,tracking_categories,applied_credit_notes,employee,payment_term", - "payments,tracking_categories,applied_credit_notes,payment_term", - "payments,tracking_categories,applied_vendor_credits", - "payments,tracking_categories,applied_vendor_credits,accounting_period", - "payments,tracking_categories,applied_vendor_credits,accounting_period,payment_term", - "payments,tracking_categories,applied_vendor_credits,company", - "payments,tracking_categories,applied_vendor_credits,company,accounting_period", - "payments,tracking_categories,applied_vendor_credits,company,accounting_period,payment_term", - "payments,tracking_categories,applied_vendor_credits,company,employee", - "payments,tracking_categories,applied_vendor_credits,company,employee,accounting_period", - "payments,tracking_categories,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,tracking_categories,applied_vendor_credits,company,employee,payment_term", - "payments,tracking_categories,applied_vendor_credits,company,payment_term", - "payments,tracking_categories,applied_vendor_credits,contact", - "payments,tracking_categories,applied_vendor_credits,contact,accounting_period", - "payments,tracking_categories,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,tracking_categories,applied_vendor_credits,contact,company", - "payments,tracking_categories,applied_vendor_credits,contact,company,accounting_period", - "payments,tracking_categories,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,tracking_categories,applied_vendor_credits,contact,company,employee", - "payments,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,tracking_categories,applied_vendor_credits,contact,company,employee,payment_term", - "payments,tracking_categories,applied_vendor_credits,contact,company,payment_term", - "payments,tracking_categories,applied_vendor_credits,contact,employee", - "payments,tracking_categories,applied_vendor_credits,contact,employee,accounting_period", - "payments,tracking_categories,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,tracking_categories,applied_vendor_credits,contact,employee,payment_term", - "payments,tracking_categories,applied_vendor_credits,contact,payment_term", - "payments,tracking_categories,applied_vendor_credits,employee", - "payments,tracking_categories,applied_vendor_credits,employee,accounting_period", - "payments,tracking_categories,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,tracking_categories,applied_vendor_credits,employee,payment_term", - "payments,tracking_categories,applied_vendor_credits,payment_term", - "payments,tracking_categories,company", - "payments,tracking_categories,company,accounting_period", - "payments,tracking_categories,company,accounting_period,payment_term", - "payments,tracking_categories,company,employee", - "payments,tracking_categories,company,employee,accounting_period", - "payments,tracking_categories,company,employee,accounting_period,payment_term", - "payments,tracking_categories,company,employee,payment_term", - "payments,tracking_categories,company,payment_term", - "payments,tracking_categories,contact", - "payments,tracking_categories,contact,accounting_period", - "payments,tracking_categories,contact,accounting_period,payment_term", - "payments,tracking_categories,contact,company", - "payments,tracking_categories,contact,company,accounting_period", - "payments,tracking_categories,contact,company,accounting_period,payment_term", - "payments,tracking_categories,contact,company,employee", - "payments,tracking_categories,contact,company,employee,accounting_period", - "payments,tracking_categories,contact,company,employee,accounting_period,payment_term", - "payments,tracking_categories,contact,company,employee,payment_term", - "payments,tracking_categories,contact,company,payment_term", - "payments,tracking_categories,contact,employee", - "payments,tracking_categories,contact,employee,accounting_period", - "payments,tracking_categories,contact,employee,accounting_period,payment_term", - "payments,tracking_categories,contact,employee,payment_term", - "payments,tracking_categories,contact,payment_term", - "payments,tracking_categories,employee", - "payments,tracking_categories,employee,accounting_period", - "payments,tracking_categories,employee,accounting_period,payment_term", - "payments,tracking_categories,employee,payment_term", - "payments,tracking_categories,payment_term", - "payments,tracking_categories,purchase_orders", - "payments,tracking_categories,purchase_orders,accounting_period", - "payments,tracking_categories,purchase_orders,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes", - "payments,tracking_categories,purchase_orders,applied_credit_notes,accounting_period", - "payments,tracking_categories,purchase_orders,applied_credit_notes,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,company", - "payments,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period", - "payments,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee", - "payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period", - "payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,company,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact", - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period", - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company", - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period", - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee", - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee", - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,employee", - "payments,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period", - "payments,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,employee,payment_term", - "payments,tracking_categories,purchase_orders,applied_credit_notes,payment_term", - "payments,tracking_categories,purchase_orders,applied_vendor_credits", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,company", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,payment_term", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,company,payment_term", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,payment_term", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,payment_term", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,employee", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,payment_term", - "payments,tracking_categories,purchase_orders,applied_vendor_credits,payment_term", - "payments,tracking_categories,purchase_orders,company", - "payments,tracking_categories,purchase_orders,company,accounting_period", - "payments,tracking_categories,purchase_orders,company,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,company,employee", - "payments,tracking_categories,purchase_orders,company,employee,accounting_period", - "payments,tracking_categories,purchase_orders,company,employee,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,company,employee,payment_term", - "payments,tracking_categories,purchase_orders,company,payment_term", - "payments,tracking_categories,purchase_orders,contact", - "payments,tracking_categories,purchase_orders,contact,accounting_period", - "payments,tracking_categories,purchase_orders,contact,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,contact,company", - "payments,tracking_categories,purchase_orders,contact,company,accounting_period", - "payments,tracking_categories,purchase_orders,contact,company,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,contact,company,employee", - "payments,tracking_categories,purchase_orders,contact,company,employee,accounting_period", - "payments,tracking_categories,purchase_orders,contact,company,employee,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,contact,company,employee,payment_term", - "payments,tracking_categories,purchase_orders,contact,company,payment_term", - "payments,tracking_categories,purchase_orders,contact,employee", - "payments,tracking_categories,purchase_orders,contact,employee,accounting_period", - "payments,tracking_categories,purchase_orders,contact,employee,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,contact,employee,payment_term", - "payments,tracking_categories,purchase_orders,contact,payment_term", - "payments,tracking_categories,purchase_orders,employee", - "payments,tracking_categories,purchase_orders,employee,accounting_period", - "payments,tracking_categories,purchase_orders,employee,accounting_period,payment_term", - "payments,tracking_categories,purchase_orders,employee,payment_term", - "payments,tracking_categories,purchase_orders,payment_term", - "purchase_orders", - "purchase_orders,accounting_period", - "purchase_orders,accounting_period,payment_term", - "purchase_orders,applied_credit_notes", - "purchase_orders,applied_credit_notes,accounting_period", - "purchase_orders,applied_credit_notes,accounting_period,payment_term", - "purchase_orders,applied_credit_notes,applied_vendor_credits", - "purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - "purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "purchase_orders,applied_credit_notes,applied_vendor_credits,company", - "purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - "purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - "purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - "purchase_orders,applied_credit_notes,company", - "purchase_orders,applied_credit_notes,company,accounting_period", - "purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - "purchase_orders,applied_credit_notes,company,employee", - "purchase_orders,applied_credit_notes,company,employee,accounting_period", - "purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - "purchase_orders,applied_credit_notes,company,employee,payment_term", - "purchase_orders,applied_credit_notes,company,payment_term", - "purchase_orders,applied_credit_notes,contact", - "purchase_orders,applied_credit_notes,contact,accounting_period", - "purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - "purchase_orders,applied_credit_notes,contact,company", - "purchase_orders,applied_credit_notes,contact,company,accounting_period", - "purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - "purchase_orders,applied_credit_notes,contact,company,employee", - "purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - "purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - "purchase_orders,applied_credit_notes,contact,company,payment_term", - "purchase_orders,applied_credit_notes,contact,employee", - "purchase_orders,applied_credit_notes,contact,employee,accounting_period", - "purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - "purchase_orders,applied_credit_notes,contact,employee,payment_term", - "purchase_orders,applied_credit_notes,contact,payment_term", - "purchase_orders,applied_credit_notes,employee", - "purchase_orders,applied_credit_notes,employee,accounting_period", - "purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - "purchase_orders,applied_credit_notes,employee,payment_term", - "purchase_orders,applied_credit_notes,payment_term", - "purchase_orders,applied_vendor_credits", - "purchase_orders,applied_vendor_credits,accounting_period", - "purchase_orders,applied_vendor_credits,accounting_period,payment_term", - "purchase_orders,applied_vendor_credits,company", - "purchase_orders,applied_vendor_credits,company,accounting_period", - "purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - "purchase_orders,applied_vendor_credits,company,employee", - "purchase_orders,applied_vendor_credits,company,employee,accounting_period", - "purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - "purchase_orders,applied_vendor_credits,company,employee,payment_term", - "purchase_orders,applied_vendor_credits,company,payment_term", - "purchase_orders,applied_vendor_credits,contact", - "purchase_orders,applied_vendor_credits,contact,accounting_period", - "purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - "purchase_orders,applied_vendor_credits,contact,company", - "purchase_orders,applied_vendor_credits,contact,company,accounting_period", - "purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - "purchase_orders,applied_vendor_credits,contact,company,employee", - "purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - "purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - "purchase_orders,applied_vendor_credits,contact,company,payment_term", - "purchase_orders,applied_vendor_credits,contact,employee", - "purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - "purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "purchase_orders,applied_vendor_credits,contact,employee,payment_term", - "purchase_orders,applied_vendor_credits,contact,payment_term", - "purchase_orders,applied_vendor_credits,employee", - "purchase_orders,applied_vendor_credits,employee,accounting_period", - "purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - "purchase_orders,applied_vendor_credits,employee,payment_term", - "purchase_orders,applied_vendor_credits,payment_term", - "purchase_orders,company", - "purchase_orders,company,accounting_period", - "purchase_orders,company,accounting_period,payment_term", - "purchase_orders,company,employee", - "purchase_orders,company,employee,accounting_period", - "purchase_orders,company,employee,accounting_period,payment_term", - "purchase_orders,company,employee,payment_term", - "purchase_orders,company,payment_term", - "purchase_orders,contact", - "purchase_orders,contact,accounting_period", - "purchase_orders,contact,accounting_period,payment_term", - "purchase_orders,contact,company", - "purchase_orders,contact,company,accounting_period", - "purchase_orders,contact,company,accounting_period,payment_term", - "purchase_orders,contact,company,employee", - "purchase_orders,contact,company,employee,accounting_period", - "purchase_orders,contact,company,employee,accounting_period,payment_term", - "purchase_orders,contact,company,employee,payment_term", - "purchase_orders,contact,company,payment_term", - "purchase_orders,contact,employee", - "purchase_orders,contact,employee,accounting_period", - "purchase_orders,contact,employee,accounting_period,payment_term", - "purchase_orders,contact,employee,payment_term", - "purchase_orders,contact,payment_term", - "purchase_orders,employee", - "purchase_orders,employee,accounting_period", - "purchase_orders,employee,accounting_period,payment_term", - "purchase_orders,employee,payment_term", - "purchase_orders,payment_term", - "tracking_categories", - "tracking_categories,accounting_period", - "tracking_categories,accounting_period,payment_term", - "tracking_categories,applied_credit_notes", - "tracking_categories,applied_credit_notes,accounting_period", - "tracking_categories,applied_credit_notes,accounting_period,payment_term", - "tracking_categories,applied_credit_notes,applied_vendor_credits", - "tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period", - "tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "tracking_categories,applied_credit_notes,applied_vendor_credits,company", - "tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee", - "tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "tracking_categories,applied_credit_notes,applied_vendor_credits,company,payment_term", - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact", - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company", - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee", - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "tracking_categories,applied_credit_notes,applied_vendor_credits,employee", - "tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "tracking_categories,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "tracking_categories,applied_credit_notes,applied_vendor_credits,payment_term", - "tracking_categories,applied_credit_notes,company", - "tracking_categories,applied_credit_notes,company,accounting_period", - "tracking_categories,applied_credit_notes,company,accounting_period,payment_term", - "tracking_categories,applied_credit_notes,company,employee", - "tracking_categories,applied_credit_notes,company,employee,accounting_period", - "tracking_categories,applied_credit_notes,company,employee,accounting_period,payment_term", - "tracking_categories,applied_credit_notes,company,employee,payment_term", - "tracking_categories,applied_credit_notes,company,payment_term", - "tracking_categories,applied_credit_notes,contact", - "tracking_categories,applied_credit_notes,contact,accounting_period", - "tracking_categories,applied_credit_notes,contact,accounting_period,payment_term", - "tracking_categories,applied_credit_notes,contact,company", - "tracking_categories,applied_credit_notes,contact,company,accounting_period", - "tracking_categories,applied_credit_notes,contact,company,accounting_period,payment_term", - "tracking_categories,applied_credit_notes,contact,company,employee", - "tracking_categories,applied_credit_notes,contact,company,employee,accounting_period", - "tracking_categories,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "tracking_categories,applied_credit_notes,contact,company,employee,payment_term", - "tracking_categories,applied_credit_notes,contact,company,payment_term", - "tracking_categories,applied_credit_notes,contact,employee", - "tracking_categories,applied_credit_notes,contact,employee,accounting_period", - "tracking_categories,applied_credit_notes,contact,employee,accounting_period,payment_term", - "tracking_categories,applied_credit_notes,contact,employee,payment_term", - "tracking_categories,applied_credit_notes,contact,payment_term", - "tracking_categories,applied_credit_notes,employee", - "tracking_categories,applied_credit_notes,employee,accounting_period", - "tracking_categories,applied_credit_notes,employee,accounting_period,payment_term", - "tracking_categories,applied_credit_notes,employee,payment_term", - "tracking_categories,applied_credit_notes,payment_term", - "tracking_categories,applied_vendor_credits", - "tracking_categories,applied_vendor_credits,accounting_period", - "tracking_categories,applied_vendor_credits,accounting_period,payment_term", - "tracking_categories,applied_vendor_credits,company", - "tracking_categories,applied_vendor_credits,company,accounting_period", - "tracking_categories,applied_vendor_credits,company,accounting_period,payment_term", - "tracking_categories,applied_vendor_credits,company,employee", - "tracking_categories,applied_vendor_credits,company,employee,accounting_period", - "tracking_categories,applied_vendor_credits,company,employee,accounting_period,payment_term", - "tracking_categories,applied_vendor_credits,company,employee,payment_term", - "tracking_categories,applied_vendor_credits,company,payment_term", - "tracking_categories,applied_vendor_credits,contact", - "tracking_categories,applied_vendor_credits,contact,accounting_period", - "tracking_categories,applied_vendor_credits,contact,accounting_period,payment_term", - "tracking_categories,applied_vendor_credits,contact,company", - "tracking_categories,applied_vendor_credits,contact,company,accounting_period", - "tracking_categories,applied_vendor_credits,contact,company,accounting_period,payment_term", - "tracking_categories,applied_vendor_credits,contact,company,employee", - "tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period", - "tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "tracking_categories,applied_vendor_credits,contact,company,employee,payment_term", - "tracking_categories,applied_vendor_credits,contact,company,payment_term", - "tracking_categories,applied_vendor_credits,contact,employee", - "tracking_categories,applied_vendor_credits,contact,employee,accounting_period", - "tracking_categories,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "tracking_categories,applied_vendor_credits,contact,employee,payment_term", - "tracking_categories,applied_vendor_credits,contact,payment_term", - "tracking_categories,applied_vendor_credits,employee", - "tracking_categories,applied_vendor_credits,employee,accounting_period", - "tracking_categories,applied_vendor_credits,employee,accounting_period,payment_term", - "tracking_categories,applied_vendor_credits,employee,payment_term", - "tracking_categories,applied_vendor_credits,payment_term", - "tracking_categories,company", - "tracking_categories,company,accounting_period", - "tracking_categories,company,accounting_period,payment_term", - "tracking_categories,company,employee", - "tracking_categories,company,employee,accounting_period", - "tracking_categories,company,employee,accounting_period,payment_term", - "tracking_categories,company,employee,payment_term", - "tracking_categories,company,payment_term", - "tracking_categories,contact", - "tracking_categories,contact,accounting_period", - "tracking_categories,contact,accounting_period,payment_term", - "tracking_categories,contact,company", - "tracking_categories,contact,company,accounting_period", - "tracking_categories,contact,company,accounting_period,payment_term", - "tracking_categories,contact,company,employee", - "tracking_categories,contact,company,employee,accounting_period", - "tracking_categories,contact,company,employee,accounting_period,payment_term", - "tracking_categories,contact,company,employee,payment_term", - "tracking_categories,contact,company,payment_term", - "tracking_categories,contact,employee", - "tracking_categories,contact,employee,accounting_period", - "tracking_categories,contact,employee,accounting_period,payment_term", - "tracking_categories,contact,employee,payment_term", - "tracking_categories,contact,payment_term", - "tracking_categories,employee", - "tracking_categories,employee,accounting_period", - "tracking_categories,employee,accounting_period,payment_term", - "tracking_categories,employee,payment_term", - "tracking_categories,payment_term", - "tracking_categories,purchase_orders", - "tracking_categories,purchase_orders,accounting_period", - "tracking_categories,purchase_orders,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes", - "tracking_categories,purchase_orders,applied_credit_notes,accounting_period", - "tracking_categories,purchase_orders,applied_credit_notes,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,company", - "tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period", - "tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,company,employee", - "tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period", - "tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,company,employee,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,company,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,contact", - "tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period", - "tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,contact,company", - "tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period", - "tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee", - "tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period", - "tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,contact,company,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,contact,employee", - "tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period", - "tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,contact,employee,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,contact,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,employee", - "tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period", - "tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,employee,payment_term", - "tracking_categories,purchase_orders,applied_credit_notes,payment_term", - "tracking_categories,purchase_orders,applied_vendor_credits", - "tracking_categories,purchase_orders,applied_vendor_credits,accounting_period", - "tracking_categories,purchase_orders,applied_vendor_credits,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_vendor_credits,company", - "tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period", - "tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_vendor_credits,company,employee", - "tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period", - "tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_vendor_credits,company,employee,payment_term", - "tracking_categories,purchase_orders,applied_vendor_credits,company,payment_term", - "tracking_categories,purchase_orders,applied_vendor_credits,contact", - "tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period", - "tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_vendor_credits,contact,company", - "tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period", - "tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee", - "tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period", - "tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term", - "tracking_categories,purchase_orders,applied_vendor_credits,contact,company,payment_term", - "tracking_categories,purchase_orders,applied_vendor_credits,contact,employee", - "tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period", - "tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,payment_term", - "tracking_categories,purchase_orders,applied_vendor_credits,contact,payment_term", - "tracking_categories,purchase_orders,applied_vendor_credits,employee", - "tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period", - "tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term", - "tracking_categories,purchase_orders,applied_vendor_credits,employee,payment_term", - "tracking_categories,purchase_orders,applied_vendor_credits,payment_term", - "tracking_categories,purchase_orders,company", - "tracking_categories,purchase_orders,company,accounting_period", - "tracking_categories,purchase_orders,company,accounting_period,payment_term", - "tracking_categories,purchase_orders,company,employee", - "tracking_categories,purchase_orders,company,employee,accounting_period", - "tracking_categories,purchase_orders,company,employee,accounting_period,payment_term", - "tracking_categories,purchase_orders,company,employee,payment_term", - "tracking_categories,purchase_orders,company,payment_term", - "tracking_categories,purchase_orders,contact", - "tracking_categories,purchase_orders,contact,accounting_period", - "tracking_categories,purchase_orders,contact,accounting_period,payment_term", - "tracking_categories,purchase_orders,contact,company", - "tracking_categories,purchase_orders,contact,company,accounting_period", - "tracking_categories,purchase_orders,contact,company,accounting_period,payment_term", - "tracking_categories,purchase_orders,contact,company,employee", - "tracking_categories,purchase_orders,contact,company,employee,accounting_period", - "tracking_categories,purchase_orders,contact,company,employee,accounting_period,payment_term", - "tracking_categories,purchase_orders,contact,company,employee,payment_term", - "tracking_categories,purchase_orders,contact,company,payment_term", - "tracking_categories,purchase_orders,contact,employee", - "tracking_categories,purchase_orders,contact,employee,accounting_period", - "tracking_categories,purchase_orders,contact,employee,accounting_period,payment_term", - "tracking_categories,purchase_orders,contact,employee,payment_term", - "tracking_categories,purchase_orders,contact,payment_term", - "tracking_categories,purchase_orders,employee", - "tracking_categories,purchase_orders,employee,accounting_period", - "tracking_categories,purchase_orders,employee,accounting_period,payment_term", - "tracking_categories,purchase_orders,employee,payment_term", - "tracking_categories,purchase_orders,payment_term", -]); - -export declare namespace InvoicesRetrieveRequestExpand { - export type Raw = - | "accounting_period" - | "accounting_period,payment_term" - | "applied_credit_notes" - | "applied_credit_notes,accounting_period" - | "applied_credit_notes,accounting_period,payment_term" - | "applied_credit_notes,applied_vendor_credits" - | "applied_credit_notes,applied_vendor_credits,accounting_period" - | "applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "applied_credit_notes,applied_vendor_credits,company" - | "applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "applied_credit_notes,applied_vendor_credits,company,employee" - | "applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "applied_credit_notes,applied_vendor_credits,company,payment_term" - | "applied_credit_notes,applied_vendor_credits,contact" - | "applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "applied_credit_notes,applied_vendor_credits,contact,company" - | "applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "applied_credit_notes,applied_vendor_credits,contact,employee" - | "applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "applied_credit_notes,applied_vendor_credits,employee" - | "applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "applied_credit_notes,applied_vendor_credits,payment_term" - | "applied_credit_notes,company" - | "applied_credit_notes,company,accounting_period" - | "applied_credit_notes,company,accounting_period,payment_term" - | "applied_credit_notes,company,employee" - | "applied_credit_notes,company,employee,accounting_period" - | "applied_credit_notes,company,employee,accounting_period,payment_term" - | "applied_credit_notes,company,employee,payment_term" - | "applied_credit_notes,company,payment_term" - | "applied_credit_notes,contact" - | "applied_credit_notes,contact,accounting_period" - | "applied_credit_notes,contact,accounting_period,payment_term" - | "applied_credit_notes,contact,company" - | "applied_credit_notes,contact,company,accounting_period" - | "applied_credit_notes,contact,company,accounting_period,payment_term" - | "applied_credit_notes,contact,company,employee" - | "applied_credit_notes,contact,company,employee,accounting_period" - | "applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "applied_credit_notes,contact,company,employee,payment_term" - | "applied_credit_notes,contact,company,payment_term" - | "applied_credit_notes,contact,employee" - | "applied_credit_notes,contact,employee,accounting_period" - | "applied_credit_notes,contact,employee,accounting_period,payment_term" - | "applied_credit_notes,contact,employee,payment_term" - | "applied_credit_notes,contact,payment_term" - | "applied_credit_notes,employee" - | "applied_credit_notes,employee,accounting_period" - | "applied_credit_notes,employee,accounting_period,payment_term" - | "applied_credit_notes,employee,payment_term" - | "applied_credit_notes,payment_term" - | "applied_payments" - | "applied_payments,accounting_period" - | "applied_payments,accounting_period,payment_term" - | "applied_payments,applied_credit_notes" - | "applied_payments,applied_credit_notes,accounting_period" - | "applied_payments,applied_credit_notes,accounting_period,payment_term" - | "applied_payments,applied_credit_notes,applied_vendor_credits" - | "applied_payments,applied_credit_notes,applied_vendor_credits,accounting_period" - | "applied_payments,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "applied_payments,applied_credit_notes,applied_vendor_credits,company" - | "applied_payments,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "applied_payments,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "applied_payments,applied_credit_notes,applied_vendor_credits,company,employee" - | "applied_payments,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "applied_payments,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "applied_payments,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "applied_payments,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "applied_payments,applied_credit_notes,applied_vendor_credits,contact" - | "applied_payments,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "applied_payments,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "applied_payments,applied_credit_notes,applied_vendor_credits,contact,company" - | "applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "applied_payments,applied_credit_notes,applied_vendor_credits,contact,employee" - | "applied_payments,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "applied_payments,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "applied_payments,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "applied_payments,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "applied_payments,applied_credit_notes,applied_vendor_credits,employee" - | "applied_payments,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "applied_payments,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "applied_payments,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "applied_payments,applied_credit_notes,applied_vendor_credits,payment_term" - | "applied_payments,applied_credit_notes,company" - | "applied_payments,applied_credit_notes,company,accounting_period" - | "applied_payments,applied_credit_notes,company,accounting_period,payment_term" - | "applied_payments,applied_credit_notes,company,employee" - | "applied_payments,applied_credit_notes,company,employee,accounting_period" - | "applied_payments,applied_credit_notes,company,employee,accounting_period,payment_term" - | "applied_payments,applied_credit_notes,company,employee,payment_term" - | "applied_payments,applied_credit_notes,company,payment_term" - | "applied_payments,applied_credit_notes,contact" - | "applied_payments,applied_credit_notes,contact,accounting_period" - | "applied_payments,applied_credit_notes,contact,accounting_period,payment_term" - | "applied_payments,applied_credit_notes,contact,company" - | "applied_payments,applied_credit_notes,contact,company,accounting_period" - | "applied_payments,applied_credit_notes,contact,company,accounting_period,payment_term" - | "applied_payments,applied_credit_notes,contact,company,employee" - | "applied_payments,applied_credit_notes,contact,company,employee,accounting_period" - | "applied_payments,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "applied_payments,applied_credit_notes,contact,company,employee,payment_term" - | "applied_payments,applied_credit_notes,contact,company,payment_term" - | "applied_payments,applied_credit_notes,contact,employee" - | "applied_payments,applied_credit_notes,contact,employee,accounting_period" - | "applied_payments,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "applied_payments,applied_credit_notes,contact,employee,payment_term" - | "applied_payments,applied_credit_notes,contact,payment_term" - | "applied_payments,applied_credit_notes,employee" - | "applied_payments,applied_credit_notes,employee,accounting_period" - | "applied_payments,applied_credit_notes,employee,accounting_period,payment_term" - | "applied_payments,applied_credit_notes,employee,payment_term" - | "applied_payments,applied_credit_notes,payment_term" - | "applied_payments,applied_vendor_credits" - | "applied_payments,applied_vendor_credits,accounting_period" - | "applied_payments,applied_vendor_credits,accounting_period,payment_term" - | "applied_payments,applied_vendor_credits,company" - | "applied_payments,applied_vendor_credits,company,accounting_period" - | "applied_payments,applied_vendor_credits,company,accounting_period,payment_term" - | "applied_payments,applied_vendor_credits,company,employee" - | "applied_payments,applied_vendor_credits,company,employee,accounting_period" - | "applied_payments,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "applied_payments,applied_vendor_credits,company,employee,payment_term" - | "applied_payments,applied_vendor_credits,company,payment_term" - | "applied_payments,applied_vendor_credits,contact" - | "applied_payments,applied_vendor_credits,contact,accounting_period" - | "applied_payments,applied_vendor_credits,contact,accounting_period,payment_term" - | "applied_payments,applied_vendor_credits,contact,company" - | "applied_payments,applied_vendor_credits,contact,company,accounting_period" - | "applied_payments,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "applied_payments,applied_vendor_credits,contact,company,employee" - | "applied_payments,applied_vendor_credits,contact,company,employee,accounting_period" - | "applied_payments,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "applied_payments,applied_vendor_credits,contact,company,employee,payment_term" - | "applied_payments,applied_vendor_credits,contact,company,payment_term" - | "applied_payments,applied_vendor_credits,contact,employee" - | "applied_payments,applied_vendor_credits,contact,employee,accounting_period" - | "applied_payments,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "applied_payments,applied_vendor_credits,contact,employee,payment_term" - | "applied_payments,applied_vendor_credits,contact,payment_term" - | "applied_payments,applied_vendor_credits,employee" - | "applied_payments,applied_vendor_credits,employee,accounting_period" - | "applied_payments,applied_vendor_credits,employee,accounting_period,payment_term" - | "applied_payments,applied_vendor_credits,employee,payment_term" - | "applied_payments,applied_vendor_credits,payment_term" - | "applied_payments,company" - | "applied_payments,company,accounting_period" - | "applied_payments,company,accounting_period,payment_term" - | "applied_payments,company,employee" - | "applied_payments,company,employee,accounting_period" - | "applied_payments,company,employee,accounting_period,payment_term" - | "applied_payments,company,employee,payment_term" - | "applied_payments,company,payment_term" - | "applied_payments,contact" - | "applied_payments,contact,accounting_period" - | "applied_payments,contact,accounting_period,payment_term" - | "applied_payments,contact,company" - | "applied_payments,contact,company,accounting_period" - | "applied_payments,contact,company,accounting_period,payment_term" - | "applied_payments,contact,company,employee" - | "applied_payments,contact,company,employee,accounting_period" - | "applied_payments,contact,company,employee,accounting_period,payment_term" - | "applied_payments,contact,company,employee,payment_term" - | "applied_payments,contact,company,payment_term" - | "applied_payments,contact,employee" - | "applied_payments,contact,employee,accounting_period" - | "applied_payments,contact,employee,accounting_period,payment_term" - | "applied_payments,contact,employee,payment_term" - | "applied_payments,contact,payment_term" - | "applied_payments,employee" - | "applied_payments,employee,accounting_period" - | "applied_payments,employee,accounting_period,payment_term" - | "applied_payments,employee,payment_term" - | "applied_payments,line_items" - | "applied_payments,line_items,accounting_period" - | "applied_payments,line_items,accounting_period,payment_term" - | "applied_payments,line_items,applied_credit_notes" - | "applied_payments,line_items,applied_credit_notes,accounting_period" - | "applied_payments,line_items,applied_credit_notes,accounting_period,payment_term" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,accounting_period" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,employee" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "applied_payments,line_items,applied_credit_notes,applied_vendor_credits,payment_term" - | "applied_payments,line_items,applied_credit_notes,company" - | "applied_payments,line_items,applied_credit_notes,company,accounting_period" - | "applied_payments,line_items,applied_credit_notes,company,accounting_period,payment_term" - | "applied_payments,line_items,applied_credit_notes,company,employee" - | "applied_payments,line_items,applied_credit_notes,company,employee,accounting_period" - | "applied_payments,line_items,applied_credit_notes,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,applied_credit_notes,company,employee,payment_term" - | "applied_payments,line_items,applied_credit_notes,company,payment_term" - | "applied_payments,line_items,applied_credit_notes,contact" - | "applied_payments,line_items,applied_credit_notes,contact,accounting_period" - | "applied_payments,line_items,applied_credit_notes,contact,accounting_period,payment_term" - | "applied_payments,line_items,applied_credit_notes,contact,company" - | "applied_payments,line_items,applied_credit_notes,contact,company,accounting_period" - | "applied_payments,line_items,applied_credit_notes,contact,company,accounting_period,payment_term" - | "applied_payments,line_items,applied_credit_notes,contact,company,employee" - | "applied_payments,line_items,applied_credit_notes,contact,company,employee,accounting_period" - | "applied_payments,line_items,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,applied_credit_notes,contact,company,employee,payment_term" - | "applied_payments,line_items,applied_credit_notes,contact,company,payment_term" - | "applied_payments,line_items,applied_credit_notes,contact,employee" - | "applied_payments,line_items,applied_credit_notes,contact,employee,accounting_period" - | "applied_payments,line_items,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "applied_payments,line_items,applied_credit_notes,contact,employee,payment_term" - | "applied_payments,line_items,applied_credit_notes,contact,payment_term" - | "applied_payments,line_items,applied_credit_notes,employee" - | "applied_payments,line_items,applied_credit_notes,employee,accounting_period" - | "applied_payments,line_items,applied_credit_notes,employee,accounting_period,payment_term" - | "applied_payments,line_items,applied_credit_notes,employee,payment_term" - | "applied_payments,line_items,applied_credit_notes,payment_term" - | "applied_payments,line_items,applied_vendor_credits" - | "applied_payments,line_items,applied_vendor_credits,accounting_period" - | "applied_payments,line_items,applied_vendor_credits,accounting_period,payment_term" - | "applied_payments,line_items,applied_vendor_credits,company" - | "applied_payments,line_items,applied_vendor_credits,company,accounting_period" - | "applied_payments,line_items,applied_vendor_credits,company,accounting_period,payment_term" - | "applied_payments,line_items,applied_vendor_credits,company,employee" - | "applied_payments,line_items,applied_vendor_credits,company,employee,accounting_period" - | "applied_payments,line_items,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,applied_vendor_credits,company,employee,payment_term" - | "applied_payments,line_items,applied_vendor_credits,company,payment_term" - | "applied_payments,line_items,applied_vendor_credits,contact" - | "applied_payments,line_items,applied_vendor_credits,contact,accounting_period" - | "applied_payments,line_items,applied_vendor_credits,contact,accounting_period,payment_term" - | "applied_payments,line_items,applied_vendor_credits,contact,company" - | "applied_payments,line_items,applied_vendor_credits,contact,company,accounting_period" - | "applied_payments,line_items,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "applied_payments,line_items,applied_vendor_credits,contact,company,employee" - | "applied_payments,line_items,applied_vendor_credits,contact,company,employee,accounting_period" - | "applied_payments,line_items,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,applied_vendor_credits,contact,company,employee,payment_term" - | "applied_payments,line_items,applied_vendor_credits,contact,company,payment_term" - | "applied_payments,line_items,applied_vendor_credits,contact,employee" - | "applied_payments,line_items,applied_vendor_credits,contact,employee,accounting_period" - | "applied_payments,line_items,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "applied_payments,line_items,applied_vendor_credits,contact,employee,payment_term" - | "applied_payments,line_items,applied_vendor_credits,contact,payment_term" - | "applied_payments,line_items,applied_vendor_credits,employee" - | "applied_payments,line_items,applied_vendor_credits,employee,accounting_period" - | "applied_payments,line_items,applied_vendor_credits,employee,accounting_period,payment_term" - | "applied_payments,line_items,applied_vendor_credits,employee,payment_term" - | "applied_payments,line_items,applied_vendor_credits,payment_term" - | "applied_payments,line_items,company" - | "applied_payments,line_items,company,accounting_period" - | "applied_payments,line_items,company,accounting_period,payment_term" - | "applied_payments,line_items,company,employee" - | "applied_payments,line_items,company,employee,accounting_period" - | "applied_payments,line_items,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,company,employee,payment_term" - | "applied_payments,line_items,company,payment_term" - | "applied_payments,line_items,contact" - | "applied_payments,line_items,contact,accounting_period" - | "applied_payments,line_items,contact,accounting_period,payment_term" - | "applied_payments,line_items,contact,company" - | "applied_payments,line_items,contact,company,accounting_period" - | "applied_payments,line_items,contact,company,accounting_period,payment_term" - | "applied_payments,line_items,contact,company,employee" - | "applied_payments,line_items,contact,company,employee,accounting_period" - | "applied_payments,line_items,contact,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,contact,company,employee,payment_term" - | "applied_payments,line_items,contact,company,payment_term" - | "applied_payments,line_items,contact,employee" - | "applied_payments,line_items,contact,employee,accounting_period" - | "applied_payments,line_items,contact,employee,accounting_period,payment_term" - | "applied_payments,line_items,contact,employee,payment_term" - | "applied_payments,line_items,contact,payment_term" - | "applied_payments,line_items,employee" - | "applied_payments,line_items,employee,accounting_period" - | "applied_payments,line_items,employee,accounting_period,payment_term" - | "applied_payments,line_items,employee,payment_term" - | "applied_payments,line_items,payment_term" - | "applied_payments,line_items,purchase_orders" - | "applied_payments,line_items,purchase_orders,accounting_period" - | "applied_payments,line_items,purchase_orders,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,accounting_period" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,company" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,company,accounting_period" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,company,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,company,employee" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,company,employee,accounting_period" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,company,employee,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,company,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,contact" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,accounting_period" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,accounting_period" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,employee" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,employee,accounting_period" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,employee,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,contact,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,employee" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,employee,accounting_period" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,employee,payment_term" - | "applied_payments,line_items,purchase_orders,applied_credit_notes,payment_term" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,accounting_period" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,company" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,company,accounting_period" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,company,employee" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,company,employee,accounting_period" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,company,employee,payment_term" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,company,payment_term" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,accounting_period" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,accounting_period" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,payment_term" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,employee" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,accounting_period" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,payment_term" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,payment_term" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,employee" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,employee,accounting_period" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,employee,payment_term" - | "applied_payments,line_items,purchase_orders,applied_vendor_credits,payment_term" - | "applied_payments,line_items,purchase_orders,company" - | "applied_payments,line_items,purchase_orders,company,accounting_period" - | "applied_payments,line_items,purchase_orders,company,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,company,employee" - | "applied_payments,line_items,purchase_orders,company,employee,accounting_period" - | "applied_payments,line_items,purchase_orders,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,company,employee,payment_term" - | "applied_payments,line_items,purchase_orders,company,payment_term" - | "applied_payments,line_items,purchase_orders,contact" - | "applied_payments,line_items,purchase_orders,contact,accounting_period" - | "applied_payments,line_items,purchase_orders,contact,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,contact,company" - | "applied_payments,line_items,purchase_orders,contact,company,accounting_period" - | "applied_payments,line_items,purchase_orders,contact,company,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,contact,company,employee" - | "applied_payments,line_items,purchase_orders,contact,company,employee,accounting_period" - | "applied_payments,line_items,purchase_orders,contact,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,contact,company,employee,payment_term" - | "applied_payments,line_items,purchase_orders,contact,company,payment_term" - | "applied_payments,line_items,purchase_orders,contact,employee" - | "applied_payments,line_items,purchase_orders,contact,employee,accounting_period" - | "applied_payments,line_items,purchase_orders,contact,employee,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,contact,employee,payment_term" - | "applied_payments,line_items,purchase_orders,contact,payment_term" - | "applied_payments,line_items,purchase_orders,employee" - | "applied_payments,line_items,purchase_orders,employee,accounting_period" - | "applied_payments,line_items,purchase_orders,employee,accounting_period,payment_term" - | "applied_payments,line_items,purchase_orders,employee,payment_term" - | "applied_payments,line_items,purchase_orders,payment_term" - | "applied_payments,line_items,tracking_categories" - | "applied_payments,line_items,tracking_categories,accounting_period" - | "applied_payments,line_items,tracking_categories,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,accounting_period" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,company" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,company,accounting_period" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,company,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,company,employee" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,company,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,company,employee,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,company,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,contact" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,accounting_period" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,accounting_period" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,employee" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,employee,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,contact,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,employee" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,employee,payment_term" - | "applied_payments,line_items,tracking_categories,applied_credit_notes,payment_term" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,accounting_period" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,company" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,company,accounting_period" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,company,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,company,employee" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,company,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,company,employee,payment_term" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,company,payment_term" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,accounting_period" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,accounting_period" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,payment_term" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,payment_term" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,employee" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,payment_term" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,payment_term" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,employee" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,employee,payment_term" - | "applied_payments,line_items,tracking_categories,applied_vendor_credits,payment_term" - | "applied_payments,line_items,tracking_categories,company" - | "applied_payments,line_items,tracking_categories,company,accounting_period" - | "applied_payments,line_items,tracking_categories,company,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,company,employee" - | "applied_payments,line_items,tracking_categories,company,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,company,employee,payment_term" - | "applied_payments,line_items,tracking_categories,company,payment_term" - | "applied_payments,line_items,tracking_categories,contact" - | "applied_payments,line_items,tracking_categories,contact,accounting_period" - | "applied_payments,line_items,tracking_categories,contact,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,contact,company" - | "applied_payments,line_items,tracking_categories,contact,company,accounting_period" - | "applied_payments,line_items,tracking_categories,contact,company,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,contact,company,employee" - | "applied_payments,line_items,tracking_categories,contact,company,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,contact,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,contact,company,employee,payment_term" - | "applied_payments,line_items,tracking_categories,contact,company,payment_term" - | "applied_payments,line_items,tracking_categories,contact,employee" - | "applied_payments,line_items,tracking_categories,contact,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,contact,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,contact,employee,payment_term" - | "applied_payments,line_items,tracking_categories,contact,payment_term" - | "applied_payments,line_items,tracking_categories,employee" - | "applied_payments,line_items,tracking_categories,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,employee,payment_term" - | "applied_payments,line_items,tracking_categories,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders" - | "applied_payments,line_items,tracking_categories,purchase_orders,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,company" - | "applied_payments,line_items,tracking_categories,purchase_orders,company,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,company,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,company,employee" - | "applied_payments,line_items,tracking_categories,purchase_orders,company,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,company,employee,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,company,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,contact" - | "applied_payments,line_items,tracking_categories,purchase_orders,contact,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,contact,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,contact,company" - | "applied_payments,line_items,tracking_categories,purchase_orders,contact,company,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,contact,company,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,contact,company,employee" - | "applied_payments,line_items,tracking_categories,purchase_orders,contact,company,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,contact,company,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,contact,company,employee,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,contact,company,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,contact,employee" - | "applied_payments,line_items,tracking_categories,purchase_orders,contact,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,contact,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,contact,employee,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,contact,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,employee" - | "applied_payments,line_items,tracking_categories,purchase_orders,employee,accounting_period" - | "applied_payments,line_items,tracking_categories,purchase_orders,employee,accounting_period,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,employee,payment_term" - | "applied_payments,line_items,tracking_categories,purchase_orders,payment_term" - | "applied_payments,payment_term" - | "applied_payments,purchase_orders" - | "applied_payments,purchase_orders,accounting_period" - | "applied_payments,purchase_orders,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes" - | "applied_payments,purchase_orders,applied_credit_notes,accounting_period" - | "applied_payments,purchase_orders,applied_credit_notes,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,company" - | "applied_payments,purchase_orders,applied_credit_notes,company,accounting_period" - | "applied_payments,purchase_orders,applied_credit_notes,company,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,company,employee" - | "applied_payments,purchase_orders,applied_credit_notes,company,employee,accounting_period" - | "applied_payments,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,company,employee,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,company,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,contact" - | "applied_payments,purchase_orders,applied_credit_notes,contact,accounting_period" - | "applied_payments,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,contact,company" - | "applied_payments,purchase_orders,applied_credit_notes,contact,company,accounting_period" - | "applied_payments,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,contact,company,employee" - | "applied_payments,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period" - | "applied_payments,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,contact,company,employee,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,contact,company,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,contact,employee" - | "applied_payments,purchase_orders,applied_credit_notes,contact,employee,accounting_period" - | "applied_payments,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,contact,employee,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,contact,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,employee" - | "applied_payments,purchase_orders,applied_credit_notes,employee,accounting_period" - | "applied_payments,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,employee,payment_term" - | "applied_payments,purchase_orders,applied_credit_notes,payment_term" - | "applied_payments,purchase_orders,applied_vendor_credits" - | "applied_payments,purchase_orders,applied_vendor_credits,accounting_period" - | "applied_payments,purchase_orders,applied_vendor_credits,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_vendor_credits,company" - | "applied_payments,purchase_orders,applied_vendor_credits,company,accounting_period" - | "applied_payments,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_vendor_credits,company,employee" - | "applied_payments,purchase_orders,applied_vendor_credits,company,employee,accounting_period" - | "applied_payments,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_vendor_credits,company,employee,payment_term" - | "applied_payments,purchase_orders,applied_vendor_credits,company,payment_term" - | "applied_payments,purchase_orders,applied_vendor_credits,contact" - | "applied_payments,purchase_orders,applied_vendor_credits,contact,accounting_period" - | "applied_payments,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_vendor_credits,contact,company" - | "applied_payments,purchase_orders,applied_vendor_credits,contact,company,accounting_period" - | "applied_payments,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_vendor_credits,contact,company,employee" - | "applied_payments,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period" - | "applied_payments,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term" - | "applied_payments,purchase_orders,applied_vendor_credits,contact,company,payment_term" - | "applied_payments,purchase_orders,applied_vendor_credits,contact,employee" - | "applied_payments,purchase_orders,applied_vendor_credits,contact,employee,accounting_period" - | "applied_payments,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_vendor_credits,contact,employee,payment_term" - | "applied_payments,purchase_orders,applied_vendor_credits,contact,payment_term" - | "applied_payments,purchase_orders,applied_vendor_credits,employee" - | "applied_payments,purchase_orders,applied_vendor_credits,employee,accounting_period" - | "applied_payments,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term" - | "applied_payments,purchase_orders,applied_vendor_credits,employee,payment_term" - | "applied_payments,purchase_orders,applied_vendor_credits,payment_term" - | "applied_payments,purchase_orders,company" - | "applied_payments,purchase_orders,company,accounting_period" - | "applied_payments,purchase_orders,company,accounting_period,payment_term" - | "applied_payments,purchase_orders,company,employee" - | "applied_payments,purchase_orders,company,employee,accounting_period" - | "applied_payments,purchase_orders,company,employee,accounting_period,payment_term" - | "applied_payments,purchase_orders,company,employee,payment_term" - | "applied_payments,purchase_orders,company,payment_term" - | "applied_payments,purchase_orders,contact" - | "applied_payments,purchase_orders,contact,accounting_period" - | "applied_payments,purchase_orders,contact,accounting_period,payment_term" - | "applied_payments,purchase_orders,contact,company" - | "applied_payments,purchase_orders,contact,company,accounting_period" - | "applied_payments,purchase_orders,contact,company,accounting_period,payment_term" - | "applied_payments,purchase_orders,contact,company,employee" - | "applied_payments,purchase_orders,contact,company,employee,accounting_period" - | "applied_payments,purchase_orders,contact,company,employee,accounting_period,payment_term" - | "applied_payments,purchase_orders,contact,company,employee,payment_term" - | "applied_payments,purchase_orders,contact,company,payment_term" - | "applied_payments,purchase_orders,contact,employee" - | "applied_payments,purchase_orders,contact,employee,accounting_period" - | "applied_payments,purchase_orders,contact,employee,accounting_period,payment_term" - | "applied_payments,purchase_orders,contact,employee,payment_term" - | "applied_payments,purchase_orders,contact,payment_term" - | "applied_payments,purchase_orders,employee" - | "applied_payments,purchase_orders,employee,accounting_period" - | "applied_payments,purchase_orders,employee,accounting_period,payment_term" - | "applied_payments,purchase_orders,employee,payment_term" - | "applied_payments,purchase_orders,payment_term" - | "applied_payments,tracking_categories" - | "applied_payments,tracking_categories,accounting_period" - | "applied_payments,tracking_categories,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes" - | "applied_payments,tracking_categories,applied_credit_notes,accounting_period" - | "applied_payments,tracking_categories,applied_credit_notes,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,company" - | "applied_payments,tracking_categories,applied_credit_notes,company,accounting_period" - | "applied_payments,tracking_categories,applied_credit_notes,company,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,company,employee" - | "applied_payments,tracking_categories,applied_credit_notes,company,employee,accounting_period" - | "applied_payments,tracking_categories,applied_credit_notes,company,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,company,employee,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,company,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,contact" - | "applied_payments,tracking_categories,applied_credit_notes,contact,accounting_period" - | "applied_payments,tracking_categories,applied_credit_notes,contact,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,contact,company" - | "applied_payments,tracking_categories,applied_credit_notes,contact,company,accounting_period" - | "applied_payments,tracking_categories,applied_credit_notes,contact,company,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,contact,company,employee" - | "applied_payments,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period" - | "applied_payments,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,contact,company,employee,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,contact,company,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,contact,employee" - | "applied_payments,tracking_categories,applied_credit_notes,contact,employee,accounting_period" - | "applied_payments,tracking_categories,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,contact,employee,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,contact,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,employee" - | "applied_payments,tracking_categories,applied_credit_notes,employee,accounting_period" - | "applied_payments,tracking_categories,applied_credit_notes,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,employee,payment_term" - | "applied_payments,tracking_categories,applied_credit_notes,payment_term" - | "applied_payments,tracking_categories,applied_vendor_credits" - | "applied_payments,tracking_categories,applied_vendor_credits,accounting_period" - | "applied_payments,tracking_categories,applied_vendor_credits,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_vendor_credits,company" - | "applied_payments,tracking_categories,applied_vendor_credits,company,accounting_period" - | "applied_payments,tracking_categories,applied_vendor_credits,company,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_vendor_credits,company,employee" - | "applied_payments,tracking_categories,applied_vendor_credits,company,employee,accounting_period" - | "applied_payments,tracking_categories,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_vendor_credits,company,employee,payment_term" - | "applied_payments,tracking_categories,applied_vendor_credits,company,payment_term" - | "applied_payments,tracking_categories,applied_vendor_credits,contact" - | "applied_payments,tracking_categories,applied_vendor_credits,contact,accounting_period" - | "applied_payments,tracking_categories,applied_vendor_credits,contact,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_vendor_credits,contact,company" - | "applied_payments,tracking_categories,applied_vendor_credits,contact,company,accounting_period" - | "applied_payments,tracking_categories,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_vendor_credits,contact,company,employee" - | "applied_payments,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period" - | "applied_payments,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_vendor_credits,contact,company,employee,payment_term" - | "applied_payments,tracking_categories,applied_vendor_credits,contact,company,payment_term" - | "applied_payments,tracking_categories,applied_vendor_credits,contact,employee" - | "applied_payments,tracking_categories,applied_vendor_credits,contact,employee,accounting_period" - | "applied_payments,tracking_categories,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_vendor_credits,contact,employee,payment_term" - | "applied_payments,tracking_categories,applied_vendor_credits,contact,payment_term" - | "applied_payments,tracking_categories,applied_vendor_credits,employee" - | "applied_payments,tracking_categories,applied_vendor_credits,employee,accounting_period" - | "applied_payments,tracking_categories,applied_vendor_credits,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,applied_vendor_credits,employee,payment_term" - | "applied_payments,tracking_categories,applied_vendor_credits,payment_term" - | "applied_payments,tracking_categories,company" - | "applied_payments,tracking_categories,company,accounting_period" - | "applied_payments,tracking_categories,company,accounting_period,payment_term" - | "applied_payments,tracking_categories,company,employee" - | "applied_payments,tracking_categories,company,employee,accounting_period" - | "applied_payments,tracking_categories,company,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,company,employee,payment_term" - | "applied_payments,tracking_categories,company,payment_term" - | "applied_payments,tracking_categories,contact" - | "applied_payments,tracking_categories,contact,accounting_period" - | "applied_payments,tracking_categories,contact,accounting_period,payment_term" - | "applied_payments,tracking_categories,contact,company" - | "applied_payments,tracking_categories,contact,company,accounting_period" - | "applied_payments,tracking_categories,contact,company,accounting_period,payment_term" - | "applied_payments,tracking_categories,contact,company,employee" - | "applied_payments,tracking_categories,contact,company,employee,accounting_period" - | "applied_payments,tracking_categories,contact,company,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,contact,company,employee,payment_term" - | "applied_payments,tracking_categories,contact,company,payment_term" - | "applied_payments,tracking_categories,contact,employee" - | "applied_payments,tracking_categories,contact,employee,accounting_period" - | "applied_payments,tracking_categories,contact,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,contact,employee,payment_term" - | "applied_payments,tracking_categories,contact,payment_term" - | "applied_payments,tracking_categories,employee" - | "applied_payments,tracking_categories,employee,accounting_period" - | "applied_payments,tracking_categories,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,employee,payment_term" - | "applied_payments,tracking_categories,payment_term" - | "applied_payments,tracking_categories,purchase_orders" - | "applied_payments,tracking_categories,purchase_orders,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,employee" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,employee,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_credit_notes,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,employee" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,payment_term" - | "applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,payment_term" - | "applied_payments,tracking_categories,purchase_orders,company" - | "applied_payments,tracking_categories,purchase_orders,company,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,company,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,company,employee" - | "applied_payments,tracking_categories,purchase_orders,company,employee,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,company,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,company,employee,payment_term" - | "applied_payments,tracking_categories,purchase_orders,company,payment_term" - | "applied_payments,tracking_categories,purchase_orders,contact" - | "applied_payments,tracking_categories,purchase_orders,contact,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,contact,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,contact,company" - | "applied_payments,tracking_categories,purchase_orders,contact,company,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,contact,company,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,contact,company,employee" - | "applied_payments,tracking_categories,purchase_orders,contact,company,employee,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,contact,company,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,contact,company,employee,payment_term" - | "applied_payments,tracking_categories,purchase_orders,contact,company,payment_term" - | "applied_payments,tracking_categories,purchase_orders,contact,employee" - | "applied_payments,tracking_categories,purchase_orders,contact,employee,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,contact,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,contact,employee,payment_term" - | "applied_payments,tracking_categories,purchase_orders,contact,payment_term" - | "applied_payments,tracking_categories,purchase_orders,employee" - | "applied_payments,tracking_categories,purchase_orders,employee,accounting_period" - | "applied_payments,tracking_categories,purchase_orders,employee,accounting_period,payment_term" - | "applied_payments,tracking_categories,purchase_orders,employee,payment_term" - | "applied_payments,tracking_categories,purchase_orders,payment_term" - | "applied_vendor_credits" - | "applied_vendor_credits,accounting_period" - | "applied_vendor_credits,accounting_period,payment_term" - | "applied_vendor_credits,company" - | "applied_vendor_credits,company,accounting_period" - | "applied_vendor_credits,company,accounting_period,payment_term" - | "applied_vendor_credits,company,employee" - | "applied_vendor_credits,company,employee,accounting_period" - | "applied_vendor_credits,company,employee,accounting_period,payment_term" - | "applied_vendor_credits,company,employee,payment_term" - | "applied_vendor_credits,company,payment_term" - | "applied_vendor_credits,contact" - | "applied_vendor_credits,contact,accounting_period" - | "applied_vendor_credits,contact,accounting_period,payment_term" - | "applied_vendor_credits,contact,company" - | "applied_vendor_credits,contact,company,accounting_period" - | "applied_vendor_credits,contact,company,accounting_period,payment_term" - | "applied_vendor_credits,contact,company,employee" - | "applied_vendor_credits,contact,company,employee,accounting_period" - | "applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "applied_vendor_credits,contact,company,employee,payment_term" - | "applied_vendor_credits,contact,company,payment_term" - | "applied_vendor_credits,contact,employee" - | "applied_vendor_credits,contact,employee,accounting_period" - | "applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "applied_vendor_credits,contact,employee,payment_term" - | "applied_vendor_credits,contact,payment_term" - | "applied_vendor_credits,employee" - | "applied_vendor_credits,employee,accounting_period" - | "applied_vendor_credits,employee,accounting_period,payment_term" - | "applied_vendor_credits,employee,payment_term" - | "applied_vendor_credits,payment_term" - | "company" - | "company,accounting_period" - | "company,accounting_period,payment_term" - | "company,employee" - | "company,employee,accounting_period" - | "company,employee,accounting_period,payment_term" - | "company,employee,payment_term" - | "company,payment_term" - | "contact" - | "contact,accounting_period" - | "contact,accounting_period,payment_term" - | "contact,company" - | "contact,company,accounting_period" - | "contact,company,accounting_period,payment_term" - | "contact,company,employee" - | "contact,company,employee,accounting_period" - | "contact,company,employee,accounting_period,payment_term" - | "contact,company,employee,payment_term" - | "contact,company,payment_term" - | "contact,employee" - | "contact,employee,accounting_period" - | "contact,employee,accounting_period,payment_term" - | "contact,employee,payment_term" - | "contact,payment_term" - | "employee" - | "employee,accounting_period" - | "employee,accounting_period,payment_term" - | "employee,payment_term" - | "line_items" - | "line_items,accounting_period" - | "line_items,accounting_period,payment_term" - | "line_items,applied_credit_notes" - | "line_items,applied_credit_notes,accounting_period" - | "line_items,applied_credit_notes,accounting_period,payment_term" - | "line_items,applied_credit_notes,applied_vendor_credits" - | "line_items,applied_credit_notes,applied_vendor_credits,accounting_period" - | "line_items,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "line_items,applied_credit_notes,applied_vendor_credits,company" - | "line_items,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "line_items,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "line_items,applied_credit_notes,applied_vendor_credits,company,employee" - | "line_items,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "line_items,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "line_items,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "line_items,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "line_items,applied_credit_notes,applied_vendor_credits,contact" - | "line_items,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "line_items,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "line_items,applied_credit_notes,applied_vendor_credits,contact,company" - | "line_items,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "line_items,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "line_items,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "line_items,applied_credit_notes,applied_vendor_credits,contact,employee" - | "line_items,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "line_items,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "line_items,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "line_items,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "line_items,applied_credit_notes,applied_vendor_credits,employee" - | "line_items,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "line_items,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "line_items,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "line_items,applied_credit_notes,applied_vendor_credits,payment_term" - | "line_items,applied_credit_notes,company" - | "line_items,applied_credit_notes,company,accounting_period" - | "line_items,applied_credit_notes,company,accounting_period,payment_term" - | "line_items,applied_credit_notes,company,employee" - | "line_items,applied_credit_notes,company,employee,accounting_period" - | "line_items,applied_credit_notes,company,employee,accounting_period,payment_term" - | "line_items,applied_credit_notes,company,employee,payment_term" - | "line_items,applied_credit_notes,company,payment_term" - | "line_items,applied_credit_notes,contact" - | "line_items,applied_credit_notes,contact,accounting_period" - | "line_items,applied_credit_notes,contact,accounting_period,payment_term" - | "line_items,applied_credit_notes,contact,company" - | "line_items,applied_credit_notes,contact,company,accounting_period" - | "line_items,applied_credit_notes,contact,company,accounting_period,payment_term" - | "line_items,applied_credit_notes,contact,company,employee" - | "line_items,applied_credit_notes,contact,company,employee,accounting_period" - | "line_items,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "line_items,applied_credit_notes,contact,company,employee,payment_term" - | "line_items,applied_credit_notes,contact,company,payment_term" - | "line_items,applied_credit_notes,contact,employee" - | "line_items,applied_credit_notes,contact,employee,accounting_period" - | "line_items,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "line_items,applied_credit_notes,contact,employee,payment_term" - | "line_items,applied_credit_notes,contact,payment_term" - | "line_items,applied_credit_notes,employee" - | "line_items,applied_credit_notes,employee,accounting_period" - | "line_items,applied_credit_notes,employee,accounting_period,payment_term" - | "line_items,applied_credit_notes,employee,payment_term" - | "line_items,applied_credit_notes,payment_term" - | "line_items,applied_vendor_credits" - | "line_items,applied_vendor_credits,accounting_period" - | "line_items,applied_vendor_credits,accounting_period,payment_term" - | "line_items,applied_vendor_credits,company" - | "line_items,applied_vendor_credits,company,accounting_period" - | "line_items,applied_vendor_credits,company,accounting_period,payment_term" - | "line_items,applied_vendor_credits,company,employee" - | "line_items,applied_vendor_credits,company,employee,accounting_period" - | "line_items,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "line_items,applied_vendor_credits,company,employee,payment_term" - | "line_items,applied_vendor_credits,company,payment_term" - | "line_items,applied_vendor_credits,contact" - | "line_items,applied_vendor_credits,contact,accounting_period" - | "line_items,applied_vendor_credits,contact,accounting_period,payment_term" - | "line_items,applied_vendor_credits,contact,company" - | "line_items,applied_vendor_credits,contact,company,accounting_period" - | "line_items,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "line_items,applied_vendor_credits,contact,company,employee" - | "line_items,applied_vendor_credits,contact,company,employee,accounting_period" - | "line_items,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "line_items,applied_vendor_credits,contact,company,employee,payment_term" - | "line_items,applied_vendor_credits,contact,company,payment_term" - | "line_items,applied_vendor_credits,contact,employee" - | "line_items,applied_vendor_credits,contact,employee,accounting_period" - | "line_items,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "line_items,applied_vendor_credits,contact,employee,payment_term" - | "line_items,applied_vendor_credits,contact,payment_term" - | "line_items,applied_vendor_credits,employee" - | "line_items,applied_vendor_credits,employee,accounting_period" - | "line_items,applied_vendor_credits,employee,accounting_period,payment_term" - | "line_items,applied_vendor_credits,employee,payment_term" - | "line_items,applied_vendor_credits,payment_term" - | "line_items,company" - | "line_items,company,accounting_period" - | "line_items,company,accounting_period,payment_term" - | "line_items,company,employee" - | "line_items,company,employee,accounting_period" - | "line_items,company,employee,accounting_period,payment_term" - | "line_items,company,employee,payment_term" - | "line_items,company,payment_term" - | "line_items,contact" - | "line_items,contact,accounting_period" - | "line_items,contact,accounting_period,payment_term" - | "line_items,contact,company" - | "line_items,contact,company,accounting_period" - | "line_items,contact,company,accounting_period,payment_term" - | "line_items,contact,company,employee" - | "line_items,contact,company,employee,accounting_period" - | "line_items,contact,company,employee,accounting_period,payment_term" - | "line_items,contact,company,employee,payment_term" - | "line_items,contact,company,payment_term" - | "line_items,contact,employee" - | "line_items,contact,employee,accounting_period" - | "line_items,contact,employee,accounting_period,payment_term" - | "line_items,contact,employee,payment_term" - | "line_items,contact,payment_term" - | "line_items,employee" - | "line_items,employee,accounting_period" - | "line_items,employee,accounting_period,payment_term" - | "line_items,employee,payment_term" - | "line_items,payment_term" - | "line_items,purchase_orders" - | "line_items,purchase_orders,accounting_period" - | "line_items,purchase_orders,accounting_period,payment_term" - | "line_items,purchase_orders,applied_credit_notes" - | "line_items,purchase_orders,applied_credit_notes,accounting_period" - | "line_items,purchase_orders,applied_credit_notes,accounting_period,payment_term" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term" - | "line_items,purchase_orders,applied_credit_notes,company" - | "line_items,purchase_orders,applied_credit_notes,company,accounting_period" - | "line_items,purchase_orders,applied_credit_notes,company,accounting_period,payment_term" - | "line_items,purchase_orders,applied_credit_notes,company,employee" - | "line_items,purchase_orders,applied_credit_notes,company,employee,accounting_period" - | "line_items,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term" - | "line_items,purchase_orders,applied_credit_notes,company,employee,payment_term" - | "line_items,purchase_orders,applied_credit_notes,company,payment_term" - | "line_items,purchase_orders,applied_credit_notes,contact" - | "line_items,purchase_orders,applied_credit_notes,contact,accounting_period" - | "line_items,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term" - | "line_items,purchase_orders,applied_credit_notes,contact,company" - | "line_items,purchase_orders,applied_credit_notes,contact,company,accounting_period" - | "line_items,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term" - | "line_items,purchase_orders,applied_credit_notes,contact,company,employee" - | "line_items,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period" - | "line_items,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "line_items,purchase_orders,applied_credit_notes,contact,company,employee,payment_term" - | "line_items,purchase_orders,applied_credit_notes,contact,company,payment_term" - | "line_items,purchase_orders,applied_credit_notes,contact,employee" - | "line_items,purchase_orders,applied_credit_notes,contact,employee,accounting_period" - | "line_items,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "line_items,purchase_orders,applied_credit_notes,contact,employee,payment_term" - | "line_items,purchase_orders,applied_credit_notes,contact,payment_term" - | "line_items,purchase_orders,applied_credit_notes,employee" - | "line_items,purchase_orders,applied_credit_notes,employee,accounting_period" - | "line_items,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term" - | "line_items,purchase_orders,applied_credit_notes,employee,payment_term" - | "line_items,purchase_orders,applied_credit_notes,payment_term" - | "line_items,purchase_orders,applied_vendor_credits" - | "line_items,purchase_orders,applied_vendor_credits,accounting_period" - | "line_items,purchase_orders,applied_vendor_credits,accounting_period,payment_term" - | "line_items,purchase_orders,applied_vendor_credits,company" - | "line_items,purchase_orders,applied_vendor_credits,company,accounting_period" - | "line_items,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term" - | "line_items,purchase_orders,applied_vendor_credits,company,employee" - | "line_items,purchase_orders,applied_vendor_credits,company,employee,accounting_period" - | "line_items,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "line_items,purchase_orders,applied_vendor_credits,company,employee,payment_term" - | "line_items,purchase_orders,applied_vendor_credits,company,payment_term" - | "line_items,purchase_orders,applied_vendor_credits,contact" - | "line_items,purchase_orders,applied_vendor_credits,contact,accounting_period" - | "line_items,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term" - | "line_items,purchase_orders,applied_vendor_credits,contact,company" - | "line_items,purchase_orders,applied_vendor_credits,contact,company,accounting_period" - | "line_items,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "line_items,purchase_orders,applied_vendor_credits,contact,company,employee" - | "line_items,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period" - | "line_items,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "line_items,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term" - | "line_items,purchase_orders,applied_vendor_credits,contact,company,payment_term" - | "line_items,purchase_orders,applied_vendor_credits,contact,employee" - | "line_items,purchase_orders,applied_vendor_credits,contact,employee,accounting_period" - | "line_items,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "line_items,purchase_orders,applied_vendor_credits,contact,employee,payment_term" - | "line_items,purchase_orders,applied_vendor_credits,contact,payment_term" - | "line_items,purchase_orders,applied_vendor_credits,employee" - | "line_items,purchase_orders,applied_vendor_credits,employee,accounting_period" - | "line_items,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term" - | "line_items,purchase_orders,applied_vendor_credits,employee,payment_term" - | "line_items,purchase_orders,applied_vendor_credits,payment_term" - | "line_items,purchase_orders,company" - | "line_items,purchase_orders,company,accounting_period" - | "line_items,purchase_orders,company,accounting_period,payment_term" - | "line_items,purchase_orders,company,employee" - | "line_items,purchase_orders,company,employee,accounting_period" - | "line_items,purchase_orders,company,employee,accounting_period,payment_term" - | "line_items,purchase_orders,company,employee,payment_term" - | "line_items,purchase_orders,company,payment_term" - | "line_items,purchase_orders,contact" - | "line_items,purchase_orders,contact,accounting_period" - | "line_items,purchase_orders,contact,accounting_period,payment_term" - | "line_items,purchase_orders,contact,company" - | "line_items,purchase_orders,contact,company,accounting_period" - | "line_items,purchase_orders,contact,company,accounting_period,payment_term" - | "line_items,purchase_orders,contact,company,employee" - | "line_items,purchase_orders,contact,company,employee,accounting_period" - | "line_items,purchase_orders,contact,company,employee,accounting_period,payment_term" - | "line_items,purchase_orders,contact,company,employee,payment_term" - | "line_items,purchase_orders,contact,company,payment_term" - | "line_items,purchase_orders,contact,employee" - | "line_items,purchase_orders,contact,employee,accounting_period" - | "line_items,purchase_orders,contact,employee,accounting_period,payment_term" - | "line_items,purchase_orders,contact,employee,payment_term" - | "line_items,purchase_orders,contact,payment_term" - | "line_items,purchase_orders,employee" - | "line_items,purchase_orders,employee,accounting_period" - | "line_items,purchase_orders,employee,accounting_period,payment_term" - | "line_items,purchase_orders,employee,payment_term" - | "line_items,purchase_orders,payment_term" - | "line_items,tracking_categories" - | "line_items,tracking_categories,accounting_period" - | "line_items,tracking_categories,accounting_period,payment_term" - | "line_items,tracking_categories,applied_credit_notes" - | "line_items,tracking_categories,applied_credit_notes,accounting_period" - | "line_items,tracking_categories,applied_credit_notes,accounting_period,payment_term" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,payment_term" - | "line_items,tracking_categories,applied_credit_notes,company" - | "line_items,tracking_categories,applied_credit_notes,company,accounting_period" - | "line_items,tracking_categories,applied_credit_notes,company,accounting_period,payment_term" - | "line_items,tracking_categories,applied_credit_notes,company,employee" - | "line_items,tracking_categories,applied_credit_notes,company,employee,accounting_period" - | "line_items,tracking_categories,applied_credit_notes,company,employee,accounting_period,payment_term" - | "line_items,tracking_categories,applied_credit_notes,company,employee,payment_term" - | "line_items,tracking_categories,applied_credit_notes,company,payment_term" - | "line_items,tracking_categories,applied_credit_notes,contact" - | "line_items,tracking_categories,applied_credit_notes,contact,accounting_period" - | "line_items,tracking_categories,applied_credit_notes,contact,accounting_period,payment_term" - | "line_items,tracking_categories,applied_credit_notes,contact,company" - | "line_items,tracking_categories,applied_credit_notes,contact,company,accounting_period" - | "line_items,tracking_categories,applied_credit_notes,contact,company,accounting_period,payment_term" - | "line_items,tracking_categories,applied_credit_notes,contact,company,employee" - | "line_items,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period" - | "line_items,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "line_items,tracking_categories,applied_credit_notes,contact,company,employee,payment_term" - | "line_items,tracking_categories,applied_credit_notes,contact,company,payment_term" - | "line_items,tracking_categories,applied_credit_notes,contact,employee" - | "line_items,tracking_categories,applied_credit_notes,contact,employee,accounting_period" - | "line_items,tracking_categories,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "line_items,tracking_categories,applied_credit_notes,contact,employee,payment_term" - | "line_items,tracking_categories,applied_credit_notes,contact,payment_term" - | "line_items,tracking_categories,applied_credit_notes,employee" - | "line_items,tracking_categories,applied_credit_notes,employee,accounting_period" - | "line_items,tracking_categories,applied_credit_notes,employee,accounting_period,payment_term" - | "line_items,tracking_categories,applied_credit_notes,employee,payment_term" - | "line_items,tracking_categories,applied_credit_notes,payment_term" - | "line_items,tracking_categories,applied_vendor_credits" - | "line_items,tracking_categories,applied_vendor_credits,accounting_period" - | "line_items,tracking_categories,applied_vendor_credits,accounting_period,payment_term" - | "line_items,tracking_categories,applied_vendor_credits,company" - | "line_items,tracking_categories,applied_vendor_credits,company,accounting_period" - | "line_items,tracking_categories,applied_vendor_credits,company,accounting_period,payment_term" - | "line_items,tracking_categories,applied_vendor_credits,company,employee" - | "line_items,tracking_categories,applied_vendor_credits,company,employee,accounting_period" - | "line_items,tracking_categories,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "line_items,tracking_categories,applied_vendor_credits,company,employee,payment_term" - | "line_items,tracking_categories,applied_vendor_credits,company,payment_term" - | "line_items,tracking_categories,applied_vendor_credits,contact" - | "line_items,tracking_categories,applied_vendor_credits,contact,accounting_period" - | "line_items,tracking_categories,applied_vendor_credits,contact,accounting_period,payment_term" - | "line_items,tracking_categories,applied_vendor_credits,contact,company" - | "line_items,tracking_categories,applied_vendor_credits,contact,company,accounting_period" - | "line_items,tracking_categories,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "line_items,tracking_categories,applied_vendor_credits,contact,company,employee" - | "line_items,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period" - | "line_items,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "line_items,tracking_categories,applied_vendor_credits,contact,company,employee,payment_term" - | "line_items,tracking_categories,applied_vendor_credits,contact,company,payment_term" - | "line_items,tracking_categories,applied_vendor_credits,contact,employee" - | "line_items,tracking_categories,applied_vendor_credits,contact,employee,accounting_period" - | "line_items,tracking_categories,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "line_items,tracking_categories,applied_vendor_credits,contact,employee,payment_term" - | "line_items,tracking_categories,applied_vendor_credits,contact,payment_term" - | "line_items,tracking_categories,applied_vendor_credits,employee" - | "line_items,tracking_categories,applied_vendor_credits,employee,accounting_period" - | "line_items,tracking_categories,applied_vendor_credits,employee,accounting_period,payment_term" - | "line_items,tracking_categories,applied_vendor_credits,employee,payment_term" - | "line_items,tracking_categories,applied_vendor_credits,payment_term" - | "line_items,tracking_categories,company" - | "line_items,tracking_categories,company,accounting_period" - | "line_items,tracking_categories,company,accounting_period,payment_term" - | "line_items,tracking_categories,company,employee" - | "line_items,tracking_categories,company,employee,accounting_period" - | "line_items,tracking_categories,company,employee,accounting_period,payment_term" - | "line_items,tracking_categories,company,employee,payment_term" - | "line_items,tracking_categories,company,payment_term" - | "line_items,tracking_categories,contact" - | "line_items,tracking_categories,contact,accounting_period" - | "line_items,tracking_categories,contact,accounting_period,payment_term" - | "line_items,tracking_categories,contact,company" - | "line_items,tracking_categories,contact,company,accounting_period" - | "line_items,tracking_categories,contact,company,accounting_period,payment_term" - | "line_items,tracking_categories,contact,company,employee" - | "line_items,tracking_categories,contact,company,employee,accounting_period" - | "line_items,tracking_categories,contact,company,employee,accounting_period,payment_term" - | "line_items,tracking_categories,contact,company,employee,payment_term" - | "line_items,tracking_categories,contact,company,payment_term" - | "line_items,tracking_categories,contact,employee" - | "line_items,tracking_categories,contact,employee,accounting_period" - | "line_items,tracking_categories,contact,employee,accounting_period,payment_term" - | "line_items,tracking_categories,contact,employee,payment_term" - | "line_items,tracking_categories,contact,payment_term" - | "line_items,tracking_categories,employee" - | "line_items,tracking_categories,employee,accounting_period" - | "line_items,tracking_categories,employee,accounting_period,payment_term" - | "line_items,tracking_categories,employee,payment_term" - | "line_items,tracking_categories,payment_term" - | "line_items,tracking_categories,purchase_orders" - | "line_items,tracking_categories,purchase_orders,accounting_period" - | "line_items,tracking_categories,purchase_orders,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,accounting_period" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,company" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,company,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,employee" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_credit_notes,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,company" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,payment_term" - | "line_items,tracking_categories,purchase_orders,applied_vendor_credits,payment_term" - | "line_items,tracking_categories,purchase_orders,company" - | "line_items,tracking_categories,purchase_orders,company,accounting_period" - | "line_items,tracking_categories,purchase_orders,company,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,company,employee" - | "line_items,tracking_categories,purchase_orders,company,employee,accounting_period" - | "line_items,tracking_categories,purchase_orders,company,employee,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,company,employee,payment_term" - | "line_items,tracking_categories,purchase_orders,company,payment_term" - | "line_items,tracking_categories,purchase_orders,contact" - | "line_items,tracking_categories,purchase_orders,contact,accounting_period" - | "line_items,tracking_categories,purchase_orders,contact,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,contact,company" - | "line_items,tracking_categories,purchase_orders,contact,company,accounting_period" - | "line_items,tracking_categories,purchase_orders,contact,company,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,contact,company,employee" - | "line_items,tracking_categories,purchase_orders,contact,company,employee,accounting_period" - | "line_items,tracking_categories,purchase_orders,contact,company,employee,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,contact,company,employee,payment_term" - | "line_items,tracking_categories,purchase_orders,contact,company,payment_term" - | "line_items,tracking_categories,purchase_orders,contact,employee" - | "line_items,tracking_categories,purchase_orders,contact,employee,accounting_period" - | "line_items,tracking_categories,purchase_orders,contact,employee,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,contact,employee,payment_term" - | "line_items,tracking_categories,purchase_orders,contact,payment_term" - | "line_items,tracking_categories,purchase_orders,employee" - | "line_items,tracking_categories,purchase_orders,employee,accounting_period" - | "line_items,tracking_categories,purchase_orders,employee,accounting_period,payment_term" - | "line_items,tracking_categories,purchase_orders,employee,payment_term" - | "line_items,tracking_categories,purchase_orders,payment_term" - | "payment_term" - | "payments" - | "payments,accounting_period" - | "payments,accounting_period,payment_term" - | "payments,applied_credit_notes" - | "payments,applied_credit_notes,accounting_period" - | "payments,applied_credit_notes,accounting_period,payment_term" - | "payments,applied_credit_notes,applied_vendor_credits" - | "payments,applied_credit_notes,applied_vendor_credits,accounting_period" - | "payments,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "payments,applied_credit_notes,applied_vendor_credits,company" - | "payments,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "payments,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,applied_credit_notes,applied_vendor_credits,company,employee" - | "payments,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "payments,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "payments,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "payments,applied_credit_notes,applied_vendor_credits,contact" - | "payments,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "payments,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,applied_credit_notes,applied_vendor_credits,contact,company" - | "payments,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "payments,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "payments,applied_credit_notes,applied_vendor_credits,contact,employee" - | "payments,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "payments,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "payments,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "payments,applied_credit_notes,applied_vendor_credits,employee" - | "payments,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "payments,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "payments,applied_credit_notes,applied_vendor_credits,payment_term" - | "payments,applied_credit_notes,company" - | "payments,applied_credit_notes,company,accounting_period" - | "payments,applied_credit_notes,company,accounting_period,payment_term" - | "payments,applied_credit_notes,company,employee" - | "payments,applied_credit_notes,company,employee,accounting_period" - | "payments,applied_credit_notes,company,employee,accounting_period,payment_term" - | "payments,applied_credit_notes,company,employee,payment_term" - | "payments,applied_credit_notes,company,payment_term" - | "payments,applied_credit_notes,contact" - | "payments,applied_credit_notes,contact,accounting_period" - | "payments,applied_credit_notes,contact,accounting_period,payment_term" - | "payments,applied_credit_notes,contact,company" - | "payments,applied_credit_notes,contact,company,accounting_period" - | "payments,applied_credit_notes,contact,company,accounting_period,payment_term" - | "payments,applied_credit_notes,contact,company,employee" - | "payments,applied_credit_notes,contact,company,employee,accounting_period" - | "payments,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "payments,applied_credit_notes,contact,company,employee,payment_term" - | "payments,applied_credit_notes,contact,company,payment_term" - | "payments,applied_credit_notes,contact,employee" - | "payments,applied_credit_notes,contact,employee,accounting_period" - | "payments,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "payments,applied_credit_notes,contact,employee,payment_term" - | "payments,applied_credit_notes,contact,payment_term" - | "payments,applied_credit_notes,employee" - | "payments,applied_credit_notes,employee,accounting_period" - | "payments,applied_credit_notes,employee,accounting_period,payment_term" - | "payments,applied_credit_notes,employee,payment_term" - | "payments,applied_credit_notes,payment_term" - | "payments,applied_payments" - | "payments,applied_payments,accounting_period" - | "payments,applied_payments,accounting_period,payment_term" - | "payments,applied_payments,applied_credit_notes" - | "payments,applied_payments,applied_credit_notes,accounting_period" - | "payments,applied_payments,applied_credit_notes,accounting_period,payment_term" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,accounting_period" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,company" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,company,employee" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,company" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,employee" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,employee" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "payments,applied_payments,applied_credit_notes,applied_vendor_credits,payment_term" - | "payments,applied_payments,applied_credit_notes,company" - | "payments,applied_payments,applied_credit_notes,company,accounting_period" - | "payments,applied_payments,applied_credit_notes,company,accounting_period,payment_term" - | "payments,applied_payments,applied_credit_notes,company,employee" - | "payments,applied_payments,applied_credit_notes,company,employee,accounting_period" - | "payments,applied_payments,applied_credit_notes,company,employee,accounting_period,payment_term" - | "payments,applied_payments,applied_credit_notes,company,employee,payment_term" - | "payments,applied_payments,applied_credit_notes,company,payment_term" - | "payments,applied_payments,applied_credit_notes,contact" - | "payments,applied_payments,applied_credit_notes,contact,accounting_period" - | "payments,applied_payments,applied_credit_notes,contact,accounting_period,payment_term" - | "payments,applied_payments,applied_credit_notes,contact,company" - | "payments,applied_payments,applied_credit_notes,contact,company,accounting_period" - | "payments,applied_payments,applied_credit_notes,contact,company,accounting_period,payment_term" - | "payments,applied_payments,applied_credit_notes,contact,company,employee" - | "payments,applied_payments,applied_credit_notes,contact,company,employee,accounting_period" - | "payments,applied_payments,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,applied_credit_notes,contact,company,employee,payment_term" - | "payments,applied_payments,applied_credit_notes,contact,company,payment_term" - | "payments,applied_payments,applied_credit_notes,contact,employee" - | "payments,applied_payments,applied_credit_notes,contact,employee,accounting_period" - | "payments,applied_payments,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,applied_credit_notes,contact,employee,payment_term" - | "payments,applied_payments,applied_credit_notes,contact,payment_term" - | "payments,applied_payments,applied_credit_notes,employee" - | "payments,applied_payments,applied_credit_notes,employee,accounting_period" - | "payments,applied_payments,applied_credit_notes,employee,accounting_period,payment_term" - | "payments,applied_payments,applied_credit_notes,employee,payment_term" - | "payments,applied_payments,applied_credit_notes,payment_term" - | "payments,applied_payments,applied_vendor_credits" - | "payments,applied_payments,applied_vendor_credits,accounting_period" - | "payments,applied_payments,applied_vendor_credits,accounting_period,payment_term" - | "payments,applied_payments,applied_vendor_credits,company" - | "payments,applied_payments,applied_vendor_credits,company,accounting_period" - | "payments,applied_payments,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,applied_payments,applied_vendor_credits,company,employee" - | "payments,applied_payments,applied_vendor_credits,company,employee,accounting_period" - | "payments,applied_payments,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,applied_payments,applied_vendor_credits,company,employee,payment_term" - | "payments,applied_payments,applied_vendor_credits,company,payment_term" - | "payments,applied_payments,applied_vendor_credits,contact" - | "payments,applied_payments,applied_vendor_credits,contact,accounting_period" - | "payments,applied_payments,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,applied_payments,applied_vendor_credits,contact,company" - | "payments,applied_payments,applied_vendor_credits,contact,company,accounting_period" - | "payments,applied_payments,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,applied_payments,applied_vendor_credits,contact,company,employee" - | "payments,applied_payments,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,applied_payments,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,applied_payments,applied_vendor_credits,contact,company,payment_term" - | "payments,applied_payments,applied_vendor_credits,contact,employee" - | "payments,applied_payments,applied_vendor_credits,contact,employee,accounting_period" - | "payments,applied_payments,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,applied_vendor_credits,contact,employee,payment_term" - | "payments,applied_payments,applied_vendor_credits,contact,payment_term" - | "payments,applied_payments,applied_vendor_credits,employee" - | "payments,applied_payments,applied_vendor_credits,employee,accounting_period" - | "payments,applied_payments,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,applied_payments,applied_vendor_credits,employee,payment_term" - | "payments,applied_payments,applied_vendor_credits,payment_term" - | "payments,applied_payments,company" - | "payments,applied_payments,company,accounting_period" - | "payments,applied_payments,company,accounting_period,payment_term" - | "payments,applied_payments,company,employee" - | "payments,applied_payments,company,employee,accounting_period" - | "payments,applied_payments,company,employee,accounting_period,payment_term" - | "payments,applied_payments,company,employee,payment_term" - | "payments,applied_payments,company,payment_term" - | "payments,applied_payments,contact" - | "payments,applied_payments,contact,accounting_period" - | "payments,applied_payments,contact,accounting_period,payment_term" - | "payments,applied_payments,contact,company" - | "payments,applied_payments,contact,company,accounting_period" - | "payments,applied_payments,contact,company,accounting_period,payment_term" - | "payments,applied_payments,contact,company,employee" - | "payments,applied_payments,contact,company,employee,accounting_period" - | "payments,applied_payments,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,contact,company,employee,payment_term" - | "payments,applied_payments,contact,company,payment_term" - | "payments,applied_payments,contact,employee" - | "payments,applied_payments,contact,employee,accounting_period" - | "payments,applied_payments,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,contact,employee,payment_term" - | "payments,applied_payments,contact,payment_term" - | "payments,applied_payments,employee" - | "payments,applied_payments,employee,accounting_period" - | "payments,applied_payments,employee,accounting_period,payment_term" - | "payments,applied_payments,employee,payment_term" - | "payments,applied_payments,line_items" - | "payments,applied_payments,line_items,accounting_period" - | "payments,applied_payments,line_items,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes" - | "payments,applied_payments,line_items,applied_credit_notes,accounting_period" - | "payments,applied_payments,line_items,applied_credit_notes,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,accounting_period" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,employee" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,applied_vendor_credits,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,company" - | "payments,applied_payments,line_items,applied_credit_notes,company,accounting_period" - | "payments,applied_payments,line_items,applied_credit_notes,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,company,employee" - | "payments,applied_payments,line_items,applied_credit_notes,company,employee,accounting_period" - | "payments,applied_payments,line_items,applied_credit_notes,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,company,employee,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,company,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,contact" - | "payments,applied_payments,line_items,applied_credit_notes,contact,accounting_period" - | "payments,applied_payments,line_items,applied_credit_notes,contact,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,contact,company" - | "payments,applied_payments,line_items,applied_credit_notes,contact,company,accounting_period" - | "payments,applied_payments,line_items,applied_credit_notes,contact,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,contact,company,employee" - | "payments,applied_payments,line_items,applied_credit_notes,contact,company,employee,accounting_period" - | "payments,applied_payments,line_items,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,contact,company,employee,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,contact,company,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,contact,employee" - | "payments,applied_payments,line_items,applied_credit_notes,contact,employee,accounting_period" - | "payments,applied_payments,line_items,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,contact,employee,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,contact,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,employee" - | "payments,applied_payments,line_items,applied_credit_notes,employee,accounting_period" - | "payments,applied_payments,line_items,applied_credit_notes,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,employee,payment_term" - | "payments,applied_payments,line_items,applied_credit_notes,payment_term" - | "payments,applied_payments,line_items,applied_vendor_credits" - | "payments,applied_payments,line_items,applied_vendor_credits,accounting_period" - | "payments,applied_payments,line_items,applied_vendor_credits,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_vendor_credits,company" - | "payments,applied_payments,line_items,applied_vendor_credits,company,accounting_period" - | "payments,applied_payments,line_items,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_vendor_credits,company,employee" - | "payments,applied_payments,line_items,applied_vendor_credits,company,employee,accounting_period" - | "payments,applied_payments,line_items,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_vendor_credits,company,employee,payment_term" - | "payments,applied_payments,line_items,applied_vendor_credits,company,payment_term" - | "payments,applied_payments,line_items,applied_vendor_credits,contact" - | "payments,applied_payments,line_items,applied_vendor_credits,contact,accounting_period" - | "payments,applied_payments,line_items,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_vendor_credits,contact,company" - | "payments,applied_payments,line_items,applied_vendor_credits,contact,company,accounting_period" - | "payments,applied_payments,line_items,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_vendor_credits,contact,company,employee" - | "payments,applied_payments,line_items,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,applied_payments,line_items,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,applied_payments,line_items,applied_vendor_credits,contact,company,payment_term" - | "payments,applied_payments,line_items,applied_vendor_credits,contact,employee" - | "payments,applied_payments,line_items,applied_vendor_credits,contact,employee,accounting_period" - | "payments,applied_payments,line_items,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_vendor_credits,contact,employee,payment_term" - | "payments,applied_payments,line_items,applied_vendor_credits,contact,payment_term" - | "payments,applied_payments,line_items,applied_vendor_credits,employee" - | "payments,applied_payments,line_items,applied_vendor_credits,employee,accounting_period" - | "payments,applied_payments,line_items,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,applied_vendor_credits,employee,payment_term" - | "payments,applied_payments,line_items,applied_vendor_credits,payment_term" - | "payments,applied_payments,line_items,company" - | "payments,applied_payments,line_items,company,accounting_period" - | "payments,applied_payments,line_items,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,company,employee" - | "payments,applied_payments,line_items,company,employee,accounting_period" - | "payments,applied_payments,line_items,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,company,employee,payment_term" - | "payments,applied_payments,line_items,company,payment_term" - | "payments,applied_payments,line_items,contact" - | "payments,applied_payments,line_items,contact,accounting_period" - | "payments,applied_payments,line_items,contact,accounting_period,payment_term" - | "payments,applied_payments,line_items,contact,company" - | "payments,applied_payments,line_items,contact,company,accounting_period" - | "payments,applied_payments,line_items,contact,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,contact,company,employee" - | "payments,applied_payments,line_items,contact,company,employee,accounting_period" - | "payments,applied_payments,line_items,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,contact,company,employee,payment_term" - | "payments,applied_payments,line_items,contact,company,payment_term" - | "payments,applied_payments,line_items,contact,employee" - | "payments,applied_payments,line_items,contact,employee,accounting_period" - | "payments,applied_payments,line_items,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,contact,employee,payment_term" - | "payments,applied_payments,line_items,contact,payment_term" - | "payments,applied_payments,line_items,employee" - | "payments,applied_payments,line_items,employee,accounting_period" - | "payments,applied_payments,line_items,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,employee,payment_term" - | "payments,applied_payments,line_items,payment_term" - | "payments,applied_payments,line_items,purchase_orders" - | "payments,applied_payments,line_items,purchase_orders,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,company" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,company,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,company,employee" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,company,employee,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,company,employee,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,company,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,company,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,employee" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,employee,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,employee,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,contact,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,employee" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,employee,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,employee,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_credit_notes,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,company" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,company,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,company,employee" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,company,employee,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,company,employee,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,company,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,company,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,employee" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,contact,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,employee" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,employee,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,employee,payment_term" - | "payments,applied_payments,line_items,purchase_orders,applied_vendor_credits,payment_term" - | "payments,applied_payments,line_items,purchase_orders,company" - | "payments,applied_payments,line_items,purchase_orders,company,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,company,employee" - | "payments,applied_payments,line_items,purchase_orders,company,employee,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,company,employee,payment_term" - | "payments,applied_payments,line_items,purchase_orders,company,payment_term" - | "payments,applied_payments,line_items,purchase_orders,contact" - | "payments,applied_payments,line_items,purchase_orders,contact,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,contact,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,contact,company" - | "payments,applied_payments,line_items,purchase_orders,contact,company,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,contact,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,contact,company,employee" - | "payments,applied_payments,line_items,purchase_orders,contact,company,employee,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,contact,company,employee,payment_term" - | "payments,applied_payments,line_items,purchase_orders,contact,company,payment_term" - | "payments,applied_payments,line_items,purchase_orders,contact,employee" - | "payments,applied_payments,line_items,purchase_orders,contact,employee,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,contact,employee,payment_term" - | "payments,applied_payments,line_items,purchase_orders,contact,payment_term" - | "payments,applied_payments,line_items,purchase_orders,employee" - | "payments,applied_payments,line_items,purchase_orders,employee,accounting_period" - | "payments,applied_payments,line_items,purchase_orders,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,purchase_orders,employee,payment_term" - | "payments,applied_payments,line_items,purchase_orders,payment_term" - | "payments,applied_payments,line_items,tracking_categories" - | "payments,applied_payments,line_items,tracking_categories,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,company" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,company,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,company,employee" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,company,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,company,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,company,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,company,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,employee" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,contact,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,employee" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_credit_notes,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,company" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,company,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,company,employee" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,company,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,company,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,company,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,company,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,employee" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,contact,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,employee" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,applied_vendor_credits,payment_term" - | "payments,applied_payments,line_items,tracking_categories,company" - | "payments,applied_payments,line_items,tracking_categories,company,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,company,employee" - | "payments,applied_payments,line_items,tracking_categories,company,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,company,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,company,payment_term" - | "payments,applied_payments,line_items,tracking_categories,contact" - | "payments,applied_payments,line_items,tracking_categories,contact,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,contact,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,contact,company" - | "payments,applied_payments,line_items,tracking_categories,contact,company,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,contact,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,contact,company,employee" - | "payments,applied_payments,line_items,tracking_categories,contact,company,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,contact,company,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,contact,company,payment_term" - | "payments,applied_payments,line_items,tracking_categories,contact,employee" - | "payments,applied_payments,line_items,tracking_categories,contact,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,contact,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,contact,payment_term" - | "payments,applied_payments,line_items,tracking_categories,employee" - | "payments,applied_payments,line_items,tracking_categories,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,company" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,company,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,company,employee" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,company,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,company,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,company,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,company" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,company,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,company,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,company,employee" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,company,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,company,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,company,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,employee" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,contact,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,employee" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,employee,accounting_period" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,employee,accounting_period,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,employee,payment_term" - | "payments,applied_payments,line_items,tracking_categories,purchase_orders,payment_term" - | "payments,applied_payments,payment_term" - | "payments,applied_payments,purchase_orders" - | "payments,applied_payments,purchase_orders,accounting_period" - | "payments,applied_payments,purchase_orders,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes" - | "payments,applied_payments,purchase_orders,applied_credit_notes,accounting_period" - | "payments,applied_payments,purchase_orders,applied_credit_notes,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,company" - | "payments,applied_payments,purchase_orders,applied_credit_notes,company,accounting_period" - | "payments,applied_payments,purchase_orders,applied_credit_notes,company,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,company,employee" - | "payments,applied_payments,purchase_orders,applied_credit_notes,company,employee,accounting_period" - | "payments,applied_payments,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,company,employee,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,company,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,contact" - | "payments,applied_payments,purchase_orders,applied_credit_notes,contact,accounting_period" - | "payments,applied_payments,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,contact,company" - | "payments,applied_payments,purchase_orders,applied_credit_notes,contact,company,accounting_period" - | "payments,applied_payments,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,contact,company,employee" - | "payments,applied_payments,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period" - | "payments,applied_payments,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,contact,company,employee,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,contact,company,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,contact,employee" - | "payments,applied_payments,purchase_orders,applied_credit_notes,contact,employee,accounting_period" - | "payments,applied_payments,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,contact,employee,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,contact,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,employee" - | "payments,applied_payments,purchase_orders,applied_credit_notes,employee,accounting_period" - | "payments,applied_payments,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,employee,payment_term" - | "payments,applied_payments,purchase_orders,applied_credit_notes,payment_term" - | "payments,applied_payments,purchase_orders,applied_vendor_credits" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,accounting_period" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,company" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,company,accounting_period" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,company,employee" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,company,employee,accounting_period" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,company,employee,payment_term" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,company,payment_term" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,contact" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,accounting_period" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,company" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,company,accounting_period" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,company,employee" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,company,payment_term" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,employee" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,employee,accounting_period" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,employee,payment_term" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,contact,payment_term" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,employee" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,employee,accounting_period" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,employee,payment_term" - | "payments,applied_payments,purchase_orders,applied_vendor_credits,payment_term" - | "payments,applied_payments,purchase_orders,company" - | "payments,applied_payments,purchase_orders,company,accounting_period" - | "payments,applied_payments,purchase_orders,company,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,company,employee" - | "payments,applied_payments,purchase_orders,company,employee,accounting_period" - | "payments,applied_payments,purchase_orders,company,employee,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,company,employee,payment_term" - | "payments,applied_payments,purchase_orders,company,payment_term" - | "payments,applied_payments,purchase_orders,contact" - | "payments,applied_payments,purchase_orders,contact,accounting_period" - | "payments,applied_payments,purchase_orders,contact,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,contact,company" - | "payments,applied_payments,purchase_orders,contact,company,accounting_period" - | "payments,applied_payments,purchase_orders,contact,company,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,contact,company,employee" - | "payments,applied_payments,purchase_orders,contact,company,employee,accounting_period" - | "payments,applied_payments,purchase_orders,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,contact,company,employee,payment_term" - | "payments,applied_payments,purchase_orders,contact,company,payment_term" - | "payments,applied_payments,purchase_orders,contact,employee" - | "payments,applied_payments,purchase_orders,contact,employee,accounting_period" - | "payments,applied_payments,purchase_orders,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,contact,employee,payment_term" - | "payments,applied_payments,purchase_orders,contact,payment_term" - | "payments,applied_payments,purchase_orders,employee" - | "payments,applied_payments,purchase_orders,employee,accounting_period" - | "payments,applied_payments,purchase_orders,employee,accounting_period,payment_term" - | "payments,applied_payments,purchase_orders,employee,payment_term" - | "payments,applied_payments,purchase_orders,payment_term" - | "payments,applied_payments,tracking_categories" - | "payments,applied_payments,tracking_categories,accounting_period" - | "payments,applied_payments,tracking_categories,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes" - | "payments,applied_payments,tracking_categories,applied_credit_notes,accounting_period" - | "payments,applied_payments,tracking_categories,applied_credit_notes,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,applied_vendor_credits,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,company" - | "payments,applied_payments,tracking_categories,applied_credit_notes,company,accounting_period" - | "payments,applied_payments,tracking_categories,applied_credit_notes,company,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,company,employee" - | "payments,applied_payments,tracking_categories,applied_credit_notes,company,employee,accounting_period" - | "payments,applied_payments,tracking_categories,applied_credit_notes,company,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,company,employee,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,company,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,contact" - | "payments,applied_payments,tracking_categories,applied_credit_notes,contact,accounting_period" - | "payments,applied_payments,tracking_categories,applied_credit_notes,contact,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,contact,company" - | "payments,applied_payments,tracking_categories,applied_credit_notes,contact,company,accounting_period" - | "payments,applied_payments,tracking_categories,applied_credit_notes,contact,company,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,contact,company,employee" - | "payments,applied_payments,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period" - | "payments,applied_payments,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,contact,company,employee,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,contact,company,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,contact,employee" - | "payments,applied_payments,tracking_categories,applied_credit_notes,contact,employee,accounting_period" - | "payments,applied_payments,tracking_categories,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,contact,employee,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,contact,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,employee" - | "payments,applied_payments,tracking_categories,applied_credit_notes,employee,accounting_period" - | "payments,applied_payments,tracking_categories,applied_credit_notes,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,employee,payment_term" - | "payments,applied_payments,tracking_categories,applied_credit_notes,payment_term" - | "payments,applied_payments,tracking_categories,applied_vendor_credits" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,accounting_period" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,company" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,company,accounting_period" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,company,employee" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,company,employee,accounting_period" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,company,employee,payment_term" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,company,payment_term" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,contact" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,accounting_period" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,company" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,company,accounting_period" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,company,employee" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,company,payment_term" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,employee" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,employee,accounting_period" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,employee,payment_term" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,contact,payment_term" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,employee" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,employee,accounting_period" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,employee,payment_term" - | "payments,applied_payments,tracking_categories,applied_vendor_credits,payment_term" - | "payments,applied_payments,tracking_categories,company" - | "payments,applied_payments,tracking_categories,company,accounting_period" - | "payments,applied_payments,tracking_categories,company,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,company,employee" - | "payments,applied_payments,tracking_categories,company,employee,accounting_period" - | "payments,applied_payments,tracking_categories,company,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,company,employee,payment_term" - | "payments,applied_payments,tracking_categories,company,payment_term" - | "payments,applied_payments,tracking_categories,contact" - | "payments,applied_payments,tracking_categories,contact,accounting_period" - | "payments,applied_payments,tracking_categories,contact,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,contact,company" - | "payments,applied_payments,tracking_categories,contact,company,accounting_period" - | "payments,applied_payments,tracking_categories,contact,company,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,contact,company,employee" - | "payments,applied_payments,tracking_categories,contact,company,employee,accounting_period" - | "payments,applied_payments,tracking_categories,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,contact,company,employee,payment_term" - | "payments,applied_payments,tracking_categories,contact,company,payment_term" - | "payments,applied_payments,tracking_categories,contact,employee" - | "payments,applied_payments,tracking_categories,contact,employee,accounting_period" - | "payments,applied_payments,tracking_categories,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,contact,employee,payment_term" - | "payments,applied_payments,tracking_categories,contact,payment_term" - | "payments,applied_payments,tracking_categories,employee" - | "payments,applied_payments,tracking_categories,employee,accounting_period" - | "payments,applied_payments,tracking_categories,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,employee,payment_term" - | "payments,applied_payments,tracking_categories,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders" - | "payments,applied_payments,tracking_categories,purchase_orders,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,company,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,contact,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,employee" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,employee,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_credit_notes,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,company,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,employee" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,applied_vendor_credits,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,company" - | "payments,applied_payments,tracking_categories,purchase_orders,company,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,company,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,company,employee" - | "payments,applied_payments,tracking_categories,purchase_orders,company,employee,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,company,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,company,employee,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,company,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,contact" - | "payments,applied_payments,tracking_categories,purchase_orders,contact,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,contact,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,contact,company" - | "payments,applied_payments,tracking_categories,purchase_orders,contact,company,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,contact,company,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,contact,company,employee" - | "payments,applied_payments,tracking_categories,purchase_orders,contact,company,employee,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,contact,company,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,contact,company,employee,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,contact,company,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,contact,employee" - | "payments,applied_payments,tracking_categories,purchase_orders,contact,employee,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,contact,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,contact,employee,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,contact,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,employee" - | "payments,applied_payments,tracking_categories,purchase_orders,employee,accounting_period" - | "payments,applied_payments,tracking_categories,purchase_orders,employee,accounting_period,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,employee,payment_term" - | "payments,applied_payments,tracking_categories,purchase_orders,payment_term" - | "payments,applied_vendor_credits" - | "payments,applied_vendor_credits,accounting_period" - | "payments,applied_vendor_credits,accounting_period,payment_term" - | "payments,applied_vendor_credits,company" - | "payments,applied_vendor_credits,company,accounting_period" - | "payments,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,applied_vendor_credits,company,employee" - | "payments,applied_vendor_credits,company,employee,accounting_period" - | "payments,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,applied_vendor_credits,company,employee,payment_term" - | "payments,applied_vendor_credits,company,payment_term" - | "payments,applied_vendor_credits,contact" - | "payments,applied_vendor_credits,contact,accounting_period" - | "payments,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,applied_vendor_credits,contact,company" - | "payments,applied_vendor_credits,contact,company,accounting_period" - | "payments,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,applied_vendor_credits,contact,company,employee" - | "payments,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,applied_vendor_credits,contact,company,payment_term" - | "payments,applied_vendor_credits,contact,employee" - | "payments,applied_vendor_credits,contact,employee,accounting_period" - | "payments,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,applied_vendor_credits,contact,employee,payment_term" - | "payments,applied_vendor_credits,contact,payment_term" - | "payments,applied_vendor_credits,employee" - | "payments,applied_vendor_credits,employee,accounting_period" - | "payments,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,applied_vendor_credits,employee,payment_term" - | "payments,applied_vendor_credits,payment_term" - | "payments,company" - | "payments,company,accounting_period" - | "payments,company,accounting_period,payment_term" - | "payments,company,employee" - | "payments,company,employee,accounting_period" - | "payments,company,employee,accounting_period,payment_term" - | "payments,company,employee,payment_term" - | "payments,company,payment_term" - | "payments,contact" - | "payments,contact,accounting_period" - | "payments,contact,accounting_period,payment_term" - | "payments,contact,company" - | "payments,contact,company,accounting_period" - | "payments,contact,company,accounting_period,payment_term" - | "payments,contact,company,employee" - | "payments,contact,company,employee,accounting_period" - | "payments,contact,company,employee,accounting_period,payment_term" - | "payments,contact,company,employee,payment_term" - | "payments,contact,company,payment_term" - | "payments,contact,employee" - | "payments,contact,employee,accounting_period" - | "payments,contact,employee,accounting_period,payment_term" - | "payments,contact,employee,payment_term" - | "payments,contact,payment_term" - | "payments,employee" - | "payments,employee,accounting_period" - | "payments,employee,accounting_period,payment_term" - | "payments,employee,payment_term" - | "payments,line_items" - | "payments,line_items,accounting_period" - | "payments,line_items,accounting_period,payment_term" - | "payments,line_items,applied_credit_notes" - | "payments,line_items,applied_credit_notes,accounting_period" - | "payments,line_items,applied_credit_notes,accounting_period,payment_term" - | "payments,line_items,applied_credit_notes,applied_vendor_credits" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,accounting_period" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,company" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,contact" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,employee" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "payments,line_items,applied_credit_notes,applied_vendor_credits,payment_term" - | "payments,line_items,applied_credit_notes,company" - | "payments,line_items,applied_credit_notes,company,accounting_period" - | "payments,line_items,applied_credit_notes,company,accounting_period,payment_term" - | "payments,line_items,applied_credit_notes,company,employee" - | "payments,line_items,applied_credit_notes,company,employee,accounting_period" - | "payments,line_items,applied_credit_notes,company,employee,accounting_period,payment_term" - | "payments,line_items,applied_credit_notes,company,employee,payment_term" - | "payments,line_items,applied_credit_notes,company,payment_term" - | "payments,line_items,applied_credit_notes,contact" - | "payments,line_items,applied_credit_notes,contact,accounting_period" - | "payments,line_items,applied_credit_notes,contact,accounting_period,payment_term" - | "payments,line_items,applied_credit_notes,contact,company" - | "payments,line_items,applied_credit_notes,contact,company,accounting_period" - | "payments,line_items,applied_credit_notes,contact,company,accounting_period,payment_term" - | "payments,line_items,applied_credit_notes,contact,company,employee" - | "payments,line_items,applied_credit_notes,contact,company,employee,accounting_period" - | "payments,line_items,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "payments,line_items,applied_credit_notes,contact,company,employee,payment_term" - | "payments,line_items,applied_credit_notes,contact,company,payment_term" - | "payments,line_items,applied_credit_notes,contact,employee" - | "payments,line_items,applied_credit_notes,contact,employee,accounting_period" - | "payments,line_items,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "payments,line_items,applied_credit_notes,contact,employee,payment_term" - | "payments,line_items,applied_credit_notes,contact,payment_term" - | "payments,line_items,applied_credit_notes,employee" - | "payments,line_items,applied_credit_notes,employee,accounting_period" - | "payments,line_items,applied_credit_notes,employee,accounting_period,payment_term" - | "payments,line_items,applied_credit_notes,employee,payment_term" - | "payments,line_items,applied_credit_notes,payment_term" - | "payments,line_items,applied_vendor_credits" - | "payments,line_items,applied_vendor_credits,accounting_period" - | "payments,line_items,applied_vendor_credits,accounting_period,payment_term" - | "payments,line_items,applied_vendor_credits,company" - | "payments,line_items,applied_vendor_credits,company,accounting_period" - | "payments,line_items,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,line_items,applied_vendor_credits,company,employee" - | "payments,line_items,applied_vendor_credits,company,employee,accounting_period" - | "payments,line_items,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,line_items,applied_vendor_credits,company,employee,payment_term" - | "payments,line_items,applied_vendor_credits,company,payment_term" - | "payments,line_items,applied_vendor_credits,contact" - | "payments,line_items,applied_vendor_credits,contact,accounting_period" - | "payments,line_items,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,line_items,applied_vendor_credits,contact,company" - | "payments,line_items,applied_vendor_credits,contact,company,accounting_period" - | "payments,line_items,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,line_items,applied_vendor_credits,contact,company,employee" - | "payments,line_items,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,line_items,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,line_items,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,line_items,applied_vendor_credits,contact,company,payment_term" - | "payments,line_items,applied_vendor_credits,contact,employee" - | "payments,line_items,applied_vendor_credits,contact,employee,accounting_period" - | "payments,line_items,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,line_items,applied_vendor_credits,contact,employee,payment_term" - | "payments,line_items,applied_vendor_credits,contact,payment_term" - | "payments,line_items,applied_vendor_credits,employee" - | "payments,line_items,applied_vendor_credits,employee,accounting_period" - | "payments,line_items,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,line_items,applied_vendor_credits,employee,payment_term" - | "payments,line_items,applied_vendor_credits,payment_term" - | "payments,line_items,company" - | "payments,line_items,company,accounting_period" - | "payments,line_items,company,accounting_period,payment_term" - | "payments,line_items,company,employee" - | "payments,line_items,company,employee,accounting_period" - | "payments,line_items,company,employee,accounting_period,payment_term" - | "payments,line_items,company,employee,payment_term" - | "payments,line_items,company,payment_term" - | "payments,line_items,contact" - | "payments,line_items,contact,accounting_period" - | "payments,line_items,contact,accounting_period,payment_term" - | "payments,line_items,contact,company" - | "payments,line_items,contact,company,accounting_period" - | "payments,line_items,contact,company,accounting_period,payment_term" - | "payments,line_items,contact,company,employee" - | "payments,line_items,contact,company,employee,accounting_period" - | "payments,line_items,contact,company,employee,accounting_period,payment_term" - | "payments,line_items,contact,company,employee,payment_term" - | "payments,line_items,contact,company,payment_term" - | "payments,line_items,contact,employee" - | "payments,line_items,contact,employee,accounting_period" - | "payments,line_items,contact,employee,accounting_period,payment_term" - | "payments,line_items,contact,employee,payment_term" - | "payments,line_items,contact,payment_term" - | "payments,line_items,employee" - | "payments,line_items,employee,accounting_period" - | "payments,line_items,employee,accounting_period,payment_term" - | "payments,line_items,employee,payment_term" - | "payments,line_items,payment_term" - | "payments,line_items,purchase_orders" - | "payments,line_items,purchase_orders,accounting_period" - | "payments,line_items,purchase_orders,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes" - | "payments,line_items,purchase_orders,applied_credit_notes,accounting_period" - | "payments,line_items,purchase_orders,applied_credit_notes,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,company" - | "payments,line_items,purchase_orders,applied_credit_notes,company,accounting_period" - | "payments,line_items,purchase_orders,applied_credit_notes,company,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,company,employee" - | "payments,line_items,purchase_orders,applied_credit_notes,company,employee,accounting_period" - | "payments,line_items,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,company,employee,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,company,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,contact" - | "payments,line_items,purchase_orders,applied_credit_notes,contact,accounting_period" - | "payments,line_items,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,contact,company" - | "payments,line_items,purchase_orders,applied_credit_notes,contact,company,accounting_period" - | "payments,line_items,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee" - | "payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period" - | "payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,contact,company,employee,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,contact,company,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,contact,employee" - | "payments,line_items,purchase_orders,applied_credit_notes,contact,employee,accounting_period" - | "payments,line_items,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,contact,employee,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,contact,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,employee" - | "payments,line_items,purchase_orders,applied_credit_notes,employee,accounting_period" - | "payments,line_items,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,employee,payment_term" - | "payments,line_items,purchase_orders,applied_credit_notes,payment_term" - | "payments,line_items,purchase_orders,applied_vendor_credits" - | "payments,line_items,purchase_orders,applied_vendor_credits,accounting_period" - | "payments,line_items,purchase_orders,applied_vendor_credits,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_vendor_credits,company" - | "payments,line_items,purchase_orders,applied_vendor_credits,company,accounting_period" - | "payments,line_items,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_vendor_credits,company,employee" - | "payments,line_items,purchase_orders,applied_vendor_credits,company,employee,accounting_period" - | "payments,line_items,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_vendor_credits,company,employee,payment_term" - | "payments,line_items,purchase_orders,applied_vendor_credits,company,payment_term" - | "payments,line_items,purchase_orders,applied_vendor_credits,contact" - | "payments,line_items,purchase_orders,applied_vendor_credits,contact,accounting_period" - | "payments,line_items,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_vendor_credits,contact,company" - | "payments,line_items,purchase_orders,applied_vendor_credits,contact,company,accounting_period" - | "payments,line_items,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee" - | "payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,line_items,purchase_orders,applied_vendor_credits,contact,company,payment_term" - | "payments,line_items,purchase_orders,applied_vendor_credits,contact,employee" - | "payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,accounting_period" - | "payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_vendor_credits,contact,employee,payment_term" - | "payments,line_items,purchase_orders,applied_vendor_credits,contact,payment_term" - | "payments,line_items,purchase_orders,applied_vendor_credits,employee" - | "payments,line_items,purchase_orders,applied_vendor_credits,employee,accounting_period" - | "payments,line_items,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,line_items,purchase_orders,applied_vendor_credits,employee,payment_term" - | "payments,line_items,purchase_orders,applied_vendor_credits,payment_term" - | "payments,line_items,purchase_orders,company" - | "payments,line_items,purchase_orders,company,accounting_period" - | "payments,line_items,purchase_orders,company,accounting_period,payment_term" - | "payments,line_items,purchase_orders,company,employee" - | "payments,line_items,purchase_orders,company,employee,accounting_period" - | "payments,line_items,purchase_orders,company,employee,accounting_period,payment_term" - | "payments,line_items,purchase_orders,company,employee,payment_term" - | "payments,line_items,purchase_orders,company,payment_term" - | "payments,line_items,purchase_orders,contact" - | "payments,line_items,purchase_orders,contact,accounting_period" - | "payments,line_items,purchase_orders,contact,accounting_period,payment_term" - | "payments,line_items,purchase_orders,contact,company" - | "payments,line_items,purchase_orders,contact,company,accounting_period" - | "payments,line_items,purchase_orders,contact,company,accounting_period,payment_term" - | "payments,line_items,purchase_orders,contact,company,employee" - | "payments,line_items,purchase_orders,contact,company,employee,accounting_period" - | "payments,line_items,purchase_orders,contact,company,employee,accounting_period,payment_term" - | "payments,line_items,purchase_orders,contact,company,employee,payment_term" - | "payments,line_items,purchase_orders,contact,company,payment_term" - | "payments,line_items,purchase_orders,contact,employee" - | "payments,line_items,purchase_orders,contact,employee,accounting_period" - | "payments,line_items,purchase_orders,contact,employee,accounting_period,payment_term" - | "payments,line_items,purchase_orders,contact,employee,payment_term" - | "payments,line_items,purchase_orders,contact,payment_term" - | "payments,line_items,purchase_orders,employee" - | "payments,line_items,purchase_orders,employee,accounting_period" - | "payments,line_items,purchase_orders,employee,accounting_period,payment_term" - | "payments,line_items,purchase_orders,employee,payment_term" - | "payments,line_items,purchase_orders,payment_term" - | "payments,line_items,tracking_categories" - | "payments,line_items,tracking_categories,accounting_period" - | "payments,line_items,tracking_categories,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes" - | "payments,line_items,tracking_categories,applied_credit_notes,accounting_period" - | "payments,line_items,tracking_categories,applied_credit_notes,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,applied_vendor_credits,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,company" - | "payments,line_items,tracking_categories,applied_credit_notes,company,accounting_period" - | "payments,line_items,tracking_categories,applied_credit_notes,company,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,company,employee" - | "payments,line_items,tracking_categories,applied_credit_notes,company,employee,accounting_period" - | "payments,line_items,tracking_categories,applied_credit_notes,company,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,company,employee,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,company,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,contact" - | "payments,line_items,tracking_categories,applied_credit_notes,contact,accounting_period" - | "payments,line_items,tracking_categories,applied_credit_notes,contact,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,contact,company" - | "payments,line_items,tracking_categories,applied_credit_notes,contact,company,accounting_period" - | "payments,line_items,tracking_categories,applied_credit_notes,contact,company,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee" - | "payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period" - | "payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,contact,company,employee,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,contact,company,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,contact,employee" - | "payments,line_items,tracking_categories,applied_credit_notes,contact,employee,accounting_period" - | "payments,line_items,tracking_categories,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,contact,employee,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,contact,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,employee" - | "payments,line_items,tracking_categories,applied_credit_notes,employee,accounting_period" - | "payments,line_items,tracking_categories,applied_credit_notes,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,employee,payment_term" - | "payments,line_items,tracking_categories,applied_credit_notes,payment_term" - | "payments,line_items,tracking_categories,applied_vendor_credits" - | "payments,line_items,tracking_categories,applied_vendor_credits,accounting_period" - | "payments,line_items,tracking_categories,applied_vendor_credits,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_vendor_credits,company" - | "payments,line_items,tracking_categories,applied_vendor_credits,company,accounting_period" - | "payments,line_items,tracking_categories,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_vendor_credits,company,employee" - | "payments,line_items,tracking_categories,applied_vendor_credits,company,employee,accounting_period" - | "payments,line_items,tracking_categories,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_vendor_credits,company,employee,payment_term" - | "payments,line_items,tracking_categories,applied_vendor_credits,company,payment_term" - | "payments,line_items,tracking_categories,applied_vendor_credits,contact" - | "payments,line_items,tracking_categories,applied_vendor_credits,contact,accounting_period" - | "payments,line_items,tracking_categories,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_vendor_credits,contact,company" - | "payments,line_items,tracking_categories,applied_vendor_credits,contact,company,accounting_period" - | "payments,line_items,tracking_categories,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee" - | "payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,line_items,tracking_categories,applied_vendor_credits,contact,company,payment_term" - | "payments,line_items,tracking_categories,applied_vendor_credits,contact,employee" - | "payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,accounting_period" - | "payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_vendor_credits,contact,employee,payment_term" - | "payments,line_items,tracking_categories,applied_vendor_credits,contact,payment_term" - | "payments,line_items,tracking_categories,applied_vendor_credits,employee" - | "payments,line_items,tracking_categories,applied_vendor_credits,employee,accounting_period" - | "payments,line_items,tracking_categories,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,applied_vendor_credits,employee,payment_term" - | "payments,line_items,tracking_categories,applied_vendor_credits,payment_term" - | "payments,line_items,tracking_categories,company" - | "payments,line_items,tracking_categories,company,accounting_period" - | "payments,line_items,tracking_categories,company,accounting_period,payment_term" - | "payments,line_items,tracking_categories,company,employee" - | "payments,line_items,tracking_categories,company,employee,accounting_period" - | "payments,line_items,tracking_categories,company,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,company,employee,payment_term" - | "payments,line_items,tracking_categories,company,payment_term" - | "payments,line_items,tracking_categories,contact" - | "payments,line_items,tracking_categories,contact,accounting_period" - | "payments,line_items,tracking_categories,contact,accounting_period,payment_term" - | "payments,line_items,tracking_categories,contact,company" - | "payments,line_items,tracking_categories,contact,company,accounting_period" - | "payments,line_items,tracking_categories,contact,company,accounting_period,payment_term" - | "payments,line_items,tracking_categories,contact,company,employee" - | "payments,line_items,tracking_categories,contact,company,employee,accounting_period" - | "payments,line_items,tracking_categories,contact,company,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,contact,company,employee,payment_term" - | "payments,line_items,tracking_categories,contact,company,payment_term" - | "payments,line_items,tracking_categories,contact,employee" - | "payments,line_items,tracking_categories,contact,employee,accounting_period" - | "payments,line_items,tracking_categories,contact,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,contact,employee,payment_term" - | "payments,line_items,tracking_categories,contact,payment_term" - | "payments,line_items,tracking_categories,employee" - | "payments,line_items,tracking_categories,employee,accounting_period" - | "payments,line_items,tracking_categories,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,employee,payment_term" - | "payments,line_items,tracking_categories,payment_term" - | "payments,line_items,tracking_categories,purchase_orders" - | "payments,line_items,tracking_categories,purchase_orders,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,employee,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,company,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,company,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,contact,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,employee,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_credit_notes,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,company,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,contact,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,employee,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,applied_vendor_credits,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,company" - | "payments,line_items,tracking_categories,purchase_orders,company,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,company,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,company,employee" - | "payments,line_items,tracking_categories,purchase_orders,company,employee,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,company,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,company,employee,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,company,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,contact" - | "payments,line_items,tracking_categories,purchase_orders,contact,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,contact,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,contact,company" - | "payments,line_items,tracking_categories,purchase_orders,contact,company,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,contact,company,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,contact,company,employee" - | "payments,line_items,tracking_categories,purchase_orders,contact,company,employee,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,contact,company,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,contact,company,employee,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,contact,company,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,contact,employee" - | "payments,line_items,tracking_categories,purchase_orders,contact,employee,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,contact,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,contact,employee,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,contact,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,employee" - | "payments,line_items,tracking_categories,purchase_orders,employee,accounting_period" - | "payments,line_items,tracking_categories,purchase_orders,employee,accounting_period,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,employee,payment_term" - | "payments,line_items,tracking_categories,purchase_orders,payment_term" - | "payments,payment_term" - | "payments,purchase_orders" - | "payments,purchase_orders,accounting_period" - | "payments,purchase_orders,accounting_period,payment_term" - | "payments,purchase_orders,applied_credit_notes" - | "payments,purchase_orders,applied_credit_notes,accounting_period" - | "payments,purchase_orders,applied_credit_notes,accounting_period,payment_term" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "payments,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term" - | "payments,purchase_orders,applied_credit_notes,company" - | "payments,purchase_orders,applied_credit_notes,company,accounting_period" - | "payments,purchase_orders,applied_credit_notes,company,accounting_period,payment_term" - | "payments,purchase_orders,applied_credit_notes,company,employee" - | "payments,purchase_orders,applied_credit_notes,company,employee,accounting_period" - | "payments,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term" - | "payments,purchase_orders,applied_credit_notes,company,employee,payment_term" - | "payments,purchase_orders,applied_credit_notes,company,payment_term" - | "payments,purchase_orders,applied_credit_notes,contact" - | "payments,purchase_orders,applied_credit_notes,contact,accounting_period" - | "payments,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term" - | "payments,purchase_orders,applied_credit_notes,contact,company" - | "payments,purchase_orders,applied_credit_notes,contact,company,accounting_period" - | "payments,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term" - | "payments,purchase_orders,applied_credit_notes,contact,company,employee" - | "payments,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period" - | "payments,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "payments,purchase_orders,applied_credit_notes,contact,company,employee,payment_term" - | "payments,purchase_orders,applied_credit_notes,contact,company,payment_term" - | "payments,purchase_orders,applied_credit_notes,contact,employee" - | "payments,purchase_orders,applied_credit_notes,contact,employee,accounting_period" - | "payments,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "payments,purchase_orders,applied_credit_notes,contact,employee,payment_term" - | "payments,purchase_orders,applied_credit_notes,contact,payment_term" - | "payments,purchase_orders,applied_credit_notes,employee" - | "payments,purchase_orders,applied_credit_notes,employee,accounting_period" - | "payments,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term" - | "payments,purchase_orders,applied_credit_notes,employee,payment_term" - | "payments,purchase_orders,applied_credit_notes,payment_term" - | "payments,purchase_orders,applied_vendor_credits" - | "payments,purchase_orders,applied_vendor_credits,accounting_period" - | "payments,purchase_orders,applied_vendor_credits,accounting_period,payment_term" - | "payments,purchase_orders,applied_vendor_credits,company" - | "payments,purchase_orders,applied_vendor_credits,company,accounting_period" - | "payments,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,purchase_orders,applied_vendor_credits,company,employee" - | "payments,purchase_orders,applied_vendor_credits,company,employee,accounting_period" - | "payments,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,purchase_orders,applied_vendor_credits,company,employee,payment_term" - | "payments,purchase_orders,applied_vendor_credits,company,payment_term" - | "payments,purchase_orders,applied_vendor_credits,contact" - | "payments,purchase_orders,applied_vendor_credits,contact,accounting_period" - | "payments,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,purchase_orders,applied_vendor_credits,contact,company" - | "payments,purchase_orders,applied_vendor_credits,contact,company,accounting_period" - | "payments,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,purchase_orders,applied_vendor_credits,contact,company,employee" - | "payments,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,purchase_orders,applied_vendor_credits,contact,company,payment_term" - | "payments,purchase_orders,applied_vendor_credits,contact,employee" - | "payments,purchase_orders,applied_vendor_credits,contact,employee,accounting_period" - | "payments,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,purchase_orders,applied_vendor_credits,contact,employee,payment_term" - | "payments,purchase_orders,applied_vendor_credits,contact,payment_term" - | "payments,purchase_orders,applied_vendor_credits,employee" - | "payments,purchase_orders,applied_vendor_credits,employee,accounting_period" - | "payments,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,purchase_orders,applied_vendor_credits,employee,payment_term" - | "payments,purchase_orders,applied_vendor_credits,payment_term" - | "payments,purchase_orders,company" - | "payments,purchase_orders,company,accounting_period" - | "payments,purchase_orders,company,accounting_period,payment_term" - | "payments,purchase_orders,company,employee" - | "payments,purchase_orders,company,employee,accounting_period" - | "payments,purchase_orders,company,employee,accounting_period,payment_term" - | "payments,purchase_orders,company,employee,payment_term" - | "payments,purchase_orders,company,payment_term" - | "payments,purchase_orders,contact" - | "payments,purchase_orders,contact,accounting_period" - | "payments,purchase_orders,contact,accounting_period,payment_term" - | "payments,purchase_orders,contact,company" - | "payments,purchase_orders,contact,company,accounting_period" - | "payments,purchase_orders,contact,company,accounting_period,payment_term" - | "payments,purchase_orders,contact,company,employee" - | "payments,purchase_orders,contact,company,employee,accounting_period" - | "payments,purchase_orders,contact,company,employee,accounting_period,payment_term" - | "payments,purchase_orders,contact,company,employee,payment_term" - | "payments,purchase_orders,contact,company,payment_term" - | "payments,purchase_orders,contact,employee" - | "payments,purchase_orders,contact,employee,accounting_period" - | "payments,purchase_orders,contact,employee,accounting_period,payment_term" - | "payments,purchase_orders,contact,employee,payment_term" - | "payments,purchase_orders,contact,payment_term" - | "payments,purchase_orders,employee" - | "payments,purchase_orders,employee,accounting_period" - | "payments,purchase_orders,employee,accounting_period,payment_term" - | "payments,purchase_orders,employee,payment_term" - | "payments,purchase_orders,payment_term" - | "payments,tracking_categories" - | "payments,tracking_categories,accounting_period" - | "payments,tracking_categories,accounting_period,payment_term" - | "payments,tracking_categories,applied_credit_notes" - | "payments,tracking_categories,applied_credit_notes,accounting_period" - | "payments,tracking_categories,applied_credit_notes,accounting_period,payment_term" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "payments,tracking_categories,applied_credit_notes,applied_vendor_credits,payment_term" - | "payments,tracking_categories,applied_credit_notes,company" - | "payments,tracking_categories,applied_credit_notes,company,accounting_period" - | "payments,tracking_categories,applied_credit_notes,company,accounting_period,payment_term" - | "payments,tracking_categories,applied_credit_notes,company,employee" - | "payments,tracking_categories,applied_credit_notes,company,employee,accounting_period" - | "payments,tracking_categories,applied_credit_notes,company,employee,accounting_period,payment_term" - | "payments,tracking_categories,applied_credit_notes,company,employee,payment_term" - | "payments,tracking_categories,applied_credit_notes,company,payment_term" - | "payments,tracking_categories,applied_credit_notes,contact" - | "payments,tracking_categories,applied_credit_notes,contact,accounting_period" - | "payments,tracking_categories,applied_credit_notes,contact,accounting_period,payment_term" - | "payments,tracking_categories,applied_credit_notes,contact,company" - | "payments,tracking_categories,applied_credit_notes,contact,company,accounting_period" - | "payments,tracking_categories,applied_credit_notes,contact,company,accounting_period,payment_term" - | "payments,tracking_categories,applied_credit_notes,contact,company,employee" - | "payments,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period" - | "payments,tracking_categories,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "payments,tracking_categories,applied_credit_notes,contact,company,employee,payment_term" - | "payments,tracking_categories,applied_credit_notes,contact,company,payment_term" - | "payments,tracking_categories,applied_credit_notes,contact,employee" - | "payments,tracking_categories,applied_credit_notes,contact,employee,accounting_period" - | "payments,tracking_categories,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "payments,tracking_categories,applied_credit_notes,contact,employee,payment_term" - | "payments,tracking_categories,applied_credit_notes,contact,payment_term" - | "payments,tracking_categories,applied_credit_notes,employee" - | "payments,tracking_categories,applied_credit_notes,employee,accounting_period" - | "payments,tracking_categories,applied_credit_notes,employee,accounting_period,payment_term" - | "payments,tracking_categories,applied_credit_notes,employee,payment_term" - | "payments,tracking_categories,applied_credit_notes,payment_term" - | "payments,tracking_categories,applied_vendor_credits" - | "payments,tracking_categories,applied_vendor_credits,accounting_period" - | "payments,tracking_categories,applied_vendor_credits,accounting_period,payment_term" - | "payments,tracking_categories,applied_vendor_credits,company" - | "payments,tracking_categories,applied_vendor_credits,company,accounting_period" - | "payments,tracking_categories,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,tracking_categories,applied_vendor_credits,company,employee" - | "payments,tracking_categories,applied_vendor_credits,company,employee,accounting_period" - | "payments,tracking_categories,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,tracking_categories,applied_vendor_credits,company,employee,payment_term" - | "payments,tracking_categories,applied_vendor_credits,company,payment_term" - | "payments,tracking_categories,applied_vendor_credits,contact" - | "payments,tracking_categories,applied_vendor_credits,contact,accounting_period" - | "payments,tracking_categories,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,tracking_categories,applied_vendor_credits,contact,company" - | "payments,tracking_categories,applied_vendor_credits,contact,company,accounting_period" - | "payments,tracking_categories,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,tracking_categories,applied_vendor_credits,contact,company,employee" - | "payments,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,tracking_categories,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,tracking_categories,applied_vendor_credits,contact,company,payment_term" - | "payments,tracking_categories,applied_vendor_credits,contact,employee" - | "payments,tracking_categories,applied_vendor_credits,contact,employee,accounting_period" - | "payments,tracking_categories,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,tracking_categories,applied_vendor_credits,contact,employee,payment_term" - | "payments,tracking_categories,applied_vendor_credits,contact,payment_term" - | "payments,tracking_categories,applied_vendor_credits,employee" - | "payments,tracking_categories,applied_vendor_credits,employee,accounting_period" - | "payments,tracking_categories,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,tracking_categories,applied_vendor_credits,employee,payment_term" - | "payments,tracking_categories,applied_vendor_credits,payment_term" - | "payments,tracking_categories,company" - | "payments,tracking_categories,company,accounting_period" - | "payments,tracking_categories,company,accounting_period,payment_term" - | "payments,tracking_categories,company,employee" - | "payments,tracking_categories,company,employee,accounting_period" - | "payments,tracking_categories,company,employee,accounting_period,payment_term" - | "payments,tracking_categories,company,employee,payment_term" - | "payments,tracking_categories,company,payment_term" - | "payments,tracking_categories,contact" - | "payments,tracking_categories,contact,accounting_period" - | "payments,tracking_categories,contact,accounting_period,payment_term" - | "payments,tracking_categories,contact,company" - | "payments,tracking_categories,contact,company,accounting_period" - | "payments,tracking_categories,contact,company,accounting_period,payment_term" - | "payments,tracking_categories,contact,company,employee" - | "payments,tracking_categories,contact,company,employee,accounting_period" - | "payments,tracking_categories,contact,company,employee,accounting_period,payment_term" - | "payments,tracking_categories,contact,company,employee,payment_term" - | "payments,tracking_categories,contact,company,payment_term" - | "payments,tracking_categories,contact,employee" - | "payments,tracking_categories,contact,employee,accounting_period" - | "payments,tracking_categories,contact,employee,accounting_period,payment_term" - | "payments,tracking_categories,contact,employee,payment_term" - | "payments,tracking_categories,contact,payment_term" - | "payments,tracking_categories,employee" - | "payments,tracking_categories,employee,accounting_period" - | "payments,tracking_categories,employee,accounting_period,payment_term" - | "payments,tracking_categories,employee,payment_term" - | "payments,tracking_categories,payment_term" - | "payments,tracking_categories,purchase_orders" - | "payments,tracking_categories,purchase_orders,accounting_period" - | "payments,tracking_categories,purchase_orders,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,accounting_period" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,company" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,company,employee,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,company,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,contact" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,company,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,employee,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,contact,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,employee" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,employee,payment_term" - | "payments,tracking_categories,purchase_orders,applied_credit_notes,payment_term" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,company" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,company,employee,payment_term" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,company,payment_term" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,company,payment_term" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,payment_term" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,contact,payment_term" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,employee" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,employee,payment_term" - | "payments,tracking_categories,purchase_orders,applied_vendor_credits,payment_term" - | "payments,tracking_categories,purchase_orders,company" - | "payments,tracking_categories,purchase_orders,company,accounting_period" - | "payments,tracking_categories,purchase_orders,company,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,company,employee" - | "payments,tracking_categories,purchase_orders,company,employee,accounting_period" - | "payments,tracking_categories,purchase_orders,company,employee,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,company,employee,payment_term" - | "payments,tracking_categories,purchase_orders,company,payment_term" - | "payments,tracking_categories,purchase_orders,contact" - | "payments,tracking_categories,purchase_orders,contact,accounting_period" - | "payments,tracking_categories,purchase_orders,contact,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,contact,company" - | "payments,tracking_categories,purchase_orders,contact,company,accounting_period" - | "payments,tracking_categories,purchase_orders,contact,company,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,contact,company,employee" - | "payments,tracking_categories,purchase_orders,contact,company,employee,accounting_period" - | "payments,tracking_categories,purchase_orders,contact,company,employee,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,contact,company,employee,payment_term" - | "payments,tracking_categories,purchase_orders,contact,company,payment_term" - | "payments,tracking_categories,purchase_orders,contact,employee" - | "payments,tracking_categories,purchase_orders,contact,employee,accounting_period" - | "payments,tracking_categories,purchase_orders,contact,employee,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,contact,employee,payment_term" - | "payments,tracking_categories,purchase_orders,contact,payment_term" - | "payments,tracking_categories,purchase_orders,employee" - | "payments,tracking_categories,purchase_orders,employee,accounting_period" - | "payments,tracking_categories,purchase_orders,employee,accounting_period,payment_term" - | "payments,tracking_categories,purchase_orders,employee,payment_term" - | "payments,tracking_categories,purchase_orders,payment_term" - | "purchase_orders" - | "purchase_orders,accounting_period" - | "purchase_orders,accounting_period,payment_term" - | "purchase_orders,applied_credit_notes" - | "purchase_orders,applied_credit_notes,accounting_period" - | "purchase_orders,applied_credit_notes,accounting_period,payment_term" - | "purchase_orders,applied_credit_notes,applied_vendor_credits" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,company" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,contact" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,employee" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term" - | "purchase_orders,applied_credit_notes,company" - | "purchase_orders,applied_credit_notes,company,accounting_period" - | "purchase_orders,applied_credit_notes,company,accounting_period,payment_term" - | "purchase_orders,applied_credit_notes,company,employee" - | "purchase_orders,applied_credit_notes,company,employee,accounting_period" - | "purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term" - | "purchase_orders,applied_credit_notes,company,employee,payment_term" - | "purchase_orders,applied_credit_notes,company,payment_term" - | "purchase_orders,applied_credit_notes,contact" - | "purchase_orders,applied_credit_notes,contact,accounting_period" - | "purchase_orders,applied_credit_notes,contact,accounting_period,payment_term" - | "purchase_orders,applied_credit_notes,contact,company" - | "purchase_orders,applied_credit_notes,contact,company,accounting_period" - | "purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term" - | "purchase_orders,applied_credit_notes,contact,company,employee" - | "purchase_orders,applied_credit_notes,contact,company,employee,accounting_period" - | "purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "purchase_orders,applied_credit_notes,contact,company,employee,payment_term" - | "purchase_orders,applied_credit_notes,contact,company,payment_term" - | "purchase_orders,applied_credit_notes,contact,employee" - | "purchase_orders,applied_credit_notes,contact,employee,accounting_period" - | "purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "purchase_orders,applied_credit_notes,contact,employee,payment_term" - | "purchase_orders,applied_credit_notes,contact,payment_term" - | "purchase_orders,applied_credit_notes,employee" - | "purchase_orders,applied_credit_notes,employee,accounting_period" - | "purchase_orders,applied_credit_notes,employee,accounting_period,payment_term" - | "purchase_orders,applied_credit_notes,employee,payment_term" - | "purchase_orders,applied_credit_notes,payment_term" - | "purchase_orders,applied_vendor_credits" - | "purchase_orders,applied_vendor_credits,accounting_period" - | "purchase_orders,applied_vendor_credits,accounting_period,payment_term" - | "purchase_orders,applied_vendor_credits,company" - | "purchase_orders,applied_vendor_credits,company,accounting_period" - | "purchase_orders,applied_vendor_credits,company,accounting_period,payment_term" - | "purchase_orders,applied_vendor_credits,company,employee" - | "purchase_orders,applied_vendor_credits,company,employee,accounting_period" - | "purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "purchase_orders,applied_vendor_credits,company,employee,payment_term" - | "purchase_orders,applied_vendor_credits,company,payment_term" - | "purchase_orders,applied_vendor_credits,contact" - | "purchase_orders,applied_vendor_credits,contact,accounting_period" - | "purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term" - | "purchase_orders,applied_vendor_credits,contact,company" - | "purchase_orders,applied_vendor_credits,contact,company,accounting_period" - | "purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "purchase_orders,applied_vendor_credits,contact,company,employee" - | "purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period" - | "purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "purchase_orders,applied_vendor_credits,contact,company,employee,payment_term" - | "purchase_orders,applied_vendor_credits,contact,company,payment_term" - | "purchase_orders,applied_vendor_credits,contact,employee" - | "purchase_orders,applied_vendor_credits,contact,employee,accounting_period" - | "purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "purchase_orders,applied_vendor_credits,contact,employee,payment_term" - | "purchase_orders,applied_vendor_credits,contact,payment_term" - | "purchase_orders,applied_vendor_credits,employee" - | "purchase_orders,applied_vendor_credits,employee,accounting_period" - | "purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term" - | "purchase_orders,applied_vendor_credits,employee,payment_term" - | "purchase_orders,applied_vendor_credits,payment_term" - | "purchase_orders,company" - | "purchase_orders,company,accounting_period" - | "purchase_orders,company,accounting_period,payment_term" - | "purchase_orders,company,employee" - | "purchase_orders,company,employee,accounting_period" - | "purchase_orders,company,employee,accounting_period,payment_term" - | "purchase_orders,company,employee,payment_term" - | "purchase_orders,company,payment_term" - | "purchase_orders,contact" - | "purchase_orders,contact,accounting_period" - | "purchase_orders,contact,accounting_period,payment_term" - | "purchase_orders,contact,company" - | "purchase_orders,contact,company,accounting_period" - | "purchase_orders,contact,company,accounting_period,payment_term" - | "purchase_orders,contact,company,employee" - | "purchase_orders,contact,company,employee,accounting_period" - | "purchase_orders,contact,company,employee,accounting_period,payment_term" - | "purchase_orders,contact,company,employee,payment_term" - | "purchase_orders,contact,company,payment_term" - | "purchase_orders,contact,employee" - | "purchase_orders,contact,employee,accounting_period" - | "purchase_orders,contact,employee,accounting_period,payment_term" - | "purchase_orders,contact,employee,payment_term" - | "purchase_orders,contact,payment_term" - | "purchase_orders,employee" - | "purchase_orders,employee,accounting_period" - | "purchase_orders,employee,accounting_period,payment_term" - | "purchase_orders,employee,payment_term" - | "purchase_orders,payment_term" - | "tracking_categories" - | "tracking_categories,accounting_period" - | "tracking_categories,accounting_period,payment_term" - | "tracking_categories,applied_credit_notes" - | "tracking_categories,applied_credit_notes,accounting_period" - | "tracking_categories,applied_credit_notes,accounting_period,payment_term" - | "tracking_categories,applied_credit_notes,applied_vendor_credits" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,company" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,contact" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,employee" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "tracking_categories,applied_credit_notes,applied_vendor_credits,payment_term" - | "tracking_categories,applied_credit_notes,company" - | "tracking_categories,applied_credit_notes,company,accounting_period" - | "tracking_categories,applied_credit_notes,company,accounting_period,payment_term" - | "tracking_categories,applied_credit_notes,company,employee" - | "tracking_categories,applied_credit_notes,company,employee,accounting_period" - | "tracking_categories,applied_credit_notes,company,employee,accounting_period,payment_term" - | "tracking_categories,applied_credit_notes,company,employee,payment_term" - | "tracking_categories,applied_credit_notes,company,payment_term" - | "tracking_categories,applied_credit_notes,contact" - | "tracking_categories,applied_credit_notes,contact,accounting_period" - | "tracking_categories,applied_credit_notes,contact,accounting_period,payment_term" - | "tracking_categories,applied_credit_notes,contact,company" - | "tracking_categories,applied_credit_notes,contact,company,accounting_period" - | "tracking_categories,applied_credit_notes,contact,company,accounting_period,payment_term" - | "tracking_categories,applied_credit_notes,contact,company,employee" - | "tracking_categories,applied_credit_notes,contact,company,employee,accounting_period" - | "tracking_categories,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "tracking_categories,applied_credit_notes,contact,company,employee,payment_term" - | "tracking_categories,applied_credit_notes,contact,company,payment_term" - | "tracking_categories,applied_credit_notes,contact,employee" - | "tracking_categories,applied_credit_notes,contact,employee,accounting_period" - | "tracking_categories,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "tracking_categories,applied_credit_notes,contact,employee,payment_term" - | "tracking_categories,applied_credit_notes,contact,payment_term" - | "tracking_categories,applied_credit_notes,employee" - | "tracking_categories,applied_credit_notes,employee,accounting_period" - | "tracking_categories,applied_credit_notes,employee,accounting_period,payment_term" - | "tracking_categories,applied_credit_notes,employee,payment_term" - | "tracking_categories,applied_credit_notes,payment_term" - | "tracking_categories,applied_vendor_credits" - | "tracking_categories,applied_vendor_credits,accounting_period" - | "tracking_categories,applied_vendor_credits,accounting_period,payment_term" - | "tracking_categories,applied_vendor_credits,company" - | "tracking_categories,applied_vendor_credits,company,accounting_period" - | "tracking_categories,applied_vendor_credits,company,accounting_period,payment_term" - | "tracking_categories,applied_vendor_credits,company,employee" - | "tracking_categories,applied_vendor_credits,company,employee,accounting_period" - | "tracking_categories,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "tracking_categories,applied_vendor_credits,company,employee,payment_term" - | "tracking_categories,applied_vendor_credits,company,payment_term" - | "tracking_categories,applied_vendor_credits,contact" - | "tracking_categories,applied_vendor_credits,contact,accounting_period" - | "tracking_categories,applied_vendor_credits,contact,accounting_period,payment_term" - | "tracking_categories,applied_vendor_credits,contact,company" - | "tracking_categories,applied_vendor_credits,contact,company,accounting_period" - | "tracking_categories,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "tracking_categories,applied_vendor_credits,contact,company,employee" - | "tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period" - | "tracking_categories,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "tracking_categories,applied_vendor_credits,contact,company,employee,payment_term" - | "tracking_categories,applied_vendor_credits,contact,company,payment_term" - | "tracking_categories,applied_vendor_credits,contact,employee" - | "tracking_categories,applied_vendor_credits,contact,employee,accounting_period" - | "tracking_categories,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "tracking_categories,applied_vendor_credits,contact,employee,payment_term" - | "tracking_categories,applied_vendor_credits,contact,payment_term" - | "tracking_categories,applied_vendor_credits,employee" - | "tracking_categories,applied_vendor_credits,employee,accounting_period" - | "tracking_categories,applied_vendor_credits,employee,accounting_period,payment_term" - | "tracking_categories,applied_vendor_credits,employee,payment_term" - | "tracking_categories,applied_vendor_credits,payment_term" - | "tracking_categories,company" - | "tracking_categories,company,accounting_period" - | "tracking_categories,company,accounting_period,payment_term" - | "tracking_categories,company,employee" - | "tracking_categories,company,employee,accounting_period" - | "tracking_categories,company,employee,accounting_period,payment_term" - | "tracking_categories,company,employee,payment_term" - | "tracking_categories,company,payment_term" - | "tracking_categories,contact" - | "tracking_categories,contact,accounting_period" - | "tracking_categories,contact,accounting_period,payment_term" - | "tracking_categories,contact,company" - | "tracking_categories,contact,company,accounting_period" - | "tracking_categories,contact,company,accounting_period,payment_term" - | "tracking_categories,contact,company,employee" - | "tracking_categories,contact,company,employee,accounting_period" - | "tracking_categories,contact,company,employee,accounting_period,payment_term" - | "tracking_categories,contact,company,employee,payment_term" - | "tracking_categories,contact,company,payment_term" - | "tracking_categories,contact,employee" - | "tracking_categories,contact,employee,accounting_period" - | "tracking_categories,contact,employee,accounting_period,payment_term" - | "tracking_categories,contact,employee,payment_term" - | "tracking_categories,contact,payment_term" - | "tracking_categories,employee" - | "tracking_categories,employee,accounting_period" - | "tracking_categories,employee,accounting_period,payment_term" - | "tracking_categories,employee,payment_term" - | "tracking_categories,payment_term" - | "tracking_categories,purchase_orders" - | "tracking_categories,purchase_orders,accounting_period" - | "tracking_categories,purchase_orders,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes" - | "tracking_categories,purchase_orders,applied_credit_notes,accounting_period" - | "tracking_categories,purchase_orders,applied_credit_notes,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,employee,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,company,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,employee,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,company,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,employee,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,contact,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,employee,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,applied_vendor_credits,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,company" - | "tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period" - | "tracking_categories,purchase_orders,applied_credit_notes,company,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,company,employee" - | "tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period" - | "tracking_categories,purchase_orders,applied_credit_notes,company,employee,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,company,employee,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,company,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,contact" - | "tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period" - | "tracking_categories,purchase_orders,applied_credit_notes,contact,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,contact,company" - | "tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period" - | "tracking_categories,purchase_orders,applied_credit_notes,contact,company,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee" - | "tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period" - | "tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,contact,company,employee,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,contact,company,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,contact,employee" - | "tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period" - | "tracking_categories,purchase_orders,applied_credit_notes,contact,employee,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,contact,employee,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,contact,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,employee" - | "tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period" - | "tracking_categories,purchase_orders,applied_credit_notes,employee,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,employee,payment_term" - | "tracking_categories,purchase_orders,applied_credit_notes,payment_term" - | "tracking_categories,purchase_orders,applied_vendor_credits" - | "tracking_categories,purchase_orders,applied_vendor_credits,accounting_period" - | "tracking_categories,purchase_orders,applied_vendor_credits,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_vendor_credits,company" - | "tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period" - | "tracking_categories,purchase_orders,applied_vendor_credits,company,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_vendor_credits,company,employee" - | "tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period" - | "tracking_categories,purchase_orders,applied_vendor_credits,company,employee,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_vendor_credits,company,employee,payment_term" - | "tracking_categories,purchase_orders,applied_vendor_credits,company,payment_term" - | "tracking_categories,purchase_orders,applied_vendor_credits,contact" - | "tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period" - | "tracking_categories,purchase_orders,applied_vendor_credits,contact,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_vendor_credits,contact,company" - | "tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period" - | "tracking_categories,purchase_orders,applied_vendor_credits,contact,company,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee" - | "tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period" - | "tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_vendor_credits,contact,company,employee,payment_term" - | "tracking_categories,purchase_orders,applied_vendor_credits,contact,company,payment_term" - | "tracking_categories,purchase_orders,applied_vendor_credits,contact,employee" - | "tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period" - | "tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_vendor_credits,contact,employee,payment_term" - | "tracking_categories,purchase_orders,applied_vendor_credits,contact,payment_term" - | "tracking_categories,purchase_orders,applied_vendor_credits,employee" - | "tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period" - | "tracking_categories,purchase_orders,applied_vendor_credits,employee,accounting_period,payment_term" - | "tracking_categories,purchase_orders,applied_vendor_credits,employee,payment_term" - | "tracking_categories,purchase_orders,applied_vendor_credits,payment_term" - | "tracking_categories,purchase_orders,company" - | "tracking_categories,purchase_orders,company,accounting_period" - | "tracking_categories,purchase_orders,company,accounting_period,payment_term" - | "tracking_categories,purchase_orders,company,employee" - | "tracking_categories,purchase_orders,company,employee,accounting_period" - | "tracking_categories,purchase_orders,company,employee,accounting_period,payment_term" - | "tracking_categories,purchase_orders,company,employee,payment_term" - | "tracking_categories,purchase_orders,company,payment_term" - | "tracking_categories,purchase_orders,contact" - | "tracking_categories,purchase_orders,contact,accounting_period" - | "tracking_categories,purchase_orders,contact,accounting_period,payment_term" - | "tracking_categories,purchase_orders,contact,company" - | "tracking_categories,purchase_orders,contact,company,accounting_period" - | "tracking_categories,purchase_orders,contact,company,accounting_period,payment_term" - | "tracking_categories,purchase_orders,contact,company,employee" - | "tracking_categories,purchase_orders,contact,company,employee,accounting_period" - | "tracking_categories,purchase_orders,contact,company,employee,accounting_period,payment_term" - | "tracking_categories,purchase_orders,contact,company,employee,payment_term" - | "tracking_categories,purchase_orders,contact,company,payment_term" - | "tracking_categories,purchase_orders,contact,employee" - | "tracking_categories,purchase_orders,contact,employee,accounting_period" - | "tracking_categories,purchase_orders,contact,employee,accounting_period,payment_term" - | "tracking_categories,purchase_orders,contact,employee,payment_term" - | "tracking_categories,purchase_orders,contact,payment_term" - | "tracking_categories,purchase_orders,employee" - | "tracking_categories,purchase_orders,employee,accounting_period" - | "tracking_categories,purchase_orders,employee,accounting_period,payment_term" - | "tracking_categories,purchase_orders,employee,payment_term" - | "tracking_categories,purchase_orders,payment_term"; -} diff --git a/src/serialization/resources/accounting/resources/invoices/types/index.ts b/src/serialization/resources/accounting/resources/invoices/types/index.ts deleted file mode 100644 index 6066a0bb6..000000000 --- a/src/serialization/resources/accounting/resources/invoices/types/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -export * from "./InvoicesListRequestExpand"; -export * from "./InvoicesListRequestStatus"; -export * from "./InvoicesListRequestType"; -export * from "./InvoicesRetrieveRequestExpand"; diff --git a/src/serialization/resources/accounting/resources/issues/index.ts b/src/serialization/resources/accounting/resources/issues/index.ts deleted file mode 100644 index eea524d65..000000000 --- a/src/serialization/resources/accounting/resources/issues/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./types"; diff --git a/src/serialization/resources/accounting/resources/issues/types/IssuesListRequestStatus.ts b/src/serialization/resources/accounting/resources/issues/types/IssuesListRequestStatus.ts deleted file mode 100644 index 39cf4dfa4..000000000 --- a/src/serialization/resources/accounting/resources/issues/types/IssuesListRequestStatus.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; - -export const IssuesListRequestStatus: core.serialization.Schema< - serializers.accounting.IssuesListRequestStatus.Raw, - Merge.accounting.IssuesListRequestStatus -> = core.serialization.enum_(["ONGOING", "RESOLVED"]); - -export declare namespace IssuesListRequestStatus { - export type Raw = "ONGOING" | "RESOLVED"; -} diff --git a/src/serialization/resources/accounting/resources/issues/types/index.ts b/src/serialization/resources/accounting/resources/issues/types/index.ts deleted file mode 100644 index 554cdf48c..000000000 --- a/src/serialization/resources/accounting/resources/issues/types/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./IssuesListRequestStatus"; diff --git a/src/serialization/resources/accounting/resources/items/client/index.ts b/src/serialization/resources/accounting/resources/items/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/serialization/resources/accounting/resources/items/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/serialization/resources/accounting/resources/items/client/requests/ItemEndpointRequest.ts b/src/serialization/resources/accounting/resources/items/client/requests/ItemEndpointRequest.ts deleted file mode 100644 index 29dac0adf..000000000 --- a/src/serialization/resources/accounting/resources/items/client/requests/ItemEndpointRequest.ts +++ /dev/null @@ -1,19 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../../api/index"; -import * as core from "../../../../../../../core"; -import type * as serializers from "../../../../../../index"; -import { ItemRequestRequest } from "../../../../types/ItemRequestRequest"; - -export const ItemEndpointRequest: core.serialization.Schema< - serializers.accounting.ItemEndpointRequest.Raw, - Omit -> = core.serialization.object({ - model: ItemRequestRequest, -}); - -export declare namespace ItemEndpointRequest { - export interface Raw { - model: ItemRequestRequest.Raw; - } -} diff --git a/src/serialization/resources/accounting/resources/items/client/requests/PatchedItemEndpointRequest.ts b/src/serialization/resources/accounting/resources/items/client/requests/PatchedItemEndpointRequest.ts deleted file mode 100644 index 41a890189..000000000 --- a/src/serialization/resources/accounting/resources/items/client/requests/PatchedItemEndpointRequest.ts +++ /dev/null @@ -1,19 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../../api/index"; -import * as core from "../../../../../../../core"; -import type * as serializers from "../../../../../../index"; -import { PatchedItemRequestRequest } from "../../../../types/PatchedItemRequestRequest"; - -export const PatchedItemEndpointRequest: core.serialization.Schema< - serializers.accounting.PatchedItemEndpointRequest.Raw, - Omit -> = core.serialization.object({ - model: PatchedItemRequestRequest, -}); - -export declare namespace PatchedItemEndpointRequest { - export interface Raw { - model: PatchedItemRequestRequest.Raw; - } -} diff --git a/src/serialization/resources/accounting/resources/items/client/requests/index.ts b/src/serialization/resources/accounting/resources/items/client/requests/index.ts deleted file mode 100644 index f19cc85ed..000000000 --- a/src/serialization/resources/accounting/resources/items/client/requests/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export { ItemEndpointRequest } from "./ItemEndpointRequest"; -export { PatchedItemEndpointRequest } from "./PatchedItemEndpointRequest"; diff --git a/src/serialization/resources/accounting/resources/items/index.ts b/src/serialization/resources/accounting/resources/items/index.ts deleted file mode 100644 index d2ec2302c..000000000 --- a/src/serialization/resources/accounting/resources/items/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./client"; -export * from "./types"; diff --git a/src/serialization/resources/accounting/resources/items/types/ItemsListRequestExpand.ts b/src/serialization/resources/accounting/resources/items/types/ItemsListRequestExpand.ts deleted file mode 100644 index c108408b5..000000000 --- a/src/serialization/resources/accounting/resources/items/types/ItemsListRequestExpand.ts +++ /dev/null @@ -1,77 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; - -export const ItemsListRequestExpand: core.serialization.Schema< - serializers.accounting.ItemsListRequestExpand.Raw, - Merge.accounting.ItemsListRequestExpand -> = core.serialization.enum_([ - "company", - "company,purchase_tax_rate", - "company,sales_tax_rate", - "company,sales_tax_rate,purchase_tax_rate", - "purchase_account", - "purchase_account,company", - "purchase_account,company,purchase_tax_rate", - "purchase_account,company,sales_tax_rate", - "purchase_account,company,sales_tax_rate,purchase_tax_rate", - "purchase_account,purchase_tax_rate", - "purchase_account,sales_account", - "purchase_account,sales_account,company", - "purchase_account,sales_account,company,purchase_tax_rate", - "purchase_account,sales_account,company,sales_tax_rate", - "purchase_account,sales_account,company,sales_tax_rate,purchase_tax_rate", - "purchase_account,sales_account,purchase_tax_rate", - "purchase_account,sales_account,sales_tax_rate", - "purchase_account,sales_account,sales_tax_rate,purchase_tax_rate", - "purchase_account,sales_tax_rate", - "purchase_account,sales_tax_rate,purchase_tax_rate", - "purchase_tax_rate", - "sales_account", - "sales_account,company", - "sales_account,company,purchase_tax_rate", - "sales_account,company,sales_tax_rate", - "sales_account,company,sales_tax_rate,purchase_tax_rate", - "sales_account,purchase_tax_rate", - "sales_account,sales_tax_rate", - "sales_account,sales_tax_rate,purchase_tax_rate", - "sales_tax_rate", - "sales_tax_rate,purchase_tax_rate", -]); - -export declare namespace ItemsListRequestExpand { - export type Raw = - | "company" - | "company,purchase_tax_rate" - | "company,sales_tax_rate" - | "company,sales_tax_rate,purchase_tax_rate" - | "purchase_account" - | "purchase_account,company" - | "purchase_account,company,purchase_tax_rate" - | "purchase_account,company,sales_tax_rate" - | "purchase_account,company,sales_tax_rate,purchase_tax_rate" - | "purchase_account,purchase_tax_rate" - | "purchase_account,sales_account" - | "purchase_account,sales_account,company" - | "purchase_account,sales_account,company,purchase_tax_rate" - | "purchase_account,sales_account,company,sales_tax_rate" - | "purchase_account,sales_account,company,sales_tax_rate,purchase_tax_rate" - | "purchase_account,sales_account,purchase_tax_rate" - | "purchase_account,sales_account,sales_tax_rate" - | "purchase_account,sales_account,sales_tax_rate,purchase_tax_rate" - | "purchase_account,sales_tax_rate" - | "purchase_account,sales_tax_rate,purchase_tax_rate" - | "purchase_tax_rate" - | "sales_account" - | "sales_account,company" - | "sales_account,company,purchase_tax_rate" - | "sales_account,company,sales_tax_rate" - | "sales_account,company,sales_tax_rate,purchase_tax_rate" - | "sales_account,purchase_tax_rate" - | "sales_account,sales_tax_rate" - | "sales_account,sales_tax_rate,purchase_tax_rate" - | "sales_tax_rate" - | "sales_tax_rate,purchase_tax_rate"; -} diff --git a/src/serialization/resources/accounting/resources/items/types/ItemsRetrieveRequestExpand.ts b/src/serialization/resources/accounting/resources/items/types/ItemsRetrieveRequestExpand.ts deleted file mode 100644 index 101698456..000000000 --- a/src/serialization/resources/accounting/resources/items/types/ItemsRetrieveRequestExpand.ts +++ /dev/null @@ -1,77 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; - -export const ItemsRetrieveRequestExpand: core.serialization.Schema< - serializers.accounting.ItemsRetrieveRequestExpand.Raw, - Merge.accounting.ItemsRetrieveRequestExpand -> = core.serialization.enum_([ - "company", - "company,purchase_tax_rate", - "company,sales_tax_rate", - "company,sales_tax_rate,purchase_tax_rate", - "purchase_account", - "purchase_account,company", - "purchase_account,company,purchase_tax_rate", - "purchase_account,company,sales_tax_rate", - "purchase_account,company,sales_tax_rate,purchase_tax_rate", - "purchase_account,purchase_tax_rate", - "purchase_account,sales_account", - "purchase_account,sales_account,company", - "purchase_account,sales_account,company,purchase_tax_rate", - "purchase_account,sales_account,company,sales_tax_rate", - "purchase_account,sales_account,company,sales_tax_rate,purchase_tax_rate", - "purchase_account,sales_account,purchase_tax_rate", - "purchase_account,sales_account,sales_tax_rate", - "purchase_account,sales_account,sales_tax_rate,purchase_tax_rate", - "purchase_account,sales_tax_rate", - "purchase_account,sales_tax_rate,purchase_tax_rate", - "purchase_tax_rate", - "sales_account", - "sales_account,company", - "sales_account,company,purchase_tax_rate", - "sales_account,company,sales_tax_rate", - "sales_account,company,sales_tax_rate,purchase_tax_rate", - "sales_account,purchase_tax_rate", - "sales_account,sales_tax_rate", - "sales_account,sales_tax_rate,purchase_tax_rate", - "sales_tax_rate", - "sales_tax_rate,purchase_tax_rate", -]); - -export declare namespace ItemsRetrieveRequestExpand { - export type Raw = - | "company" - | "company,purchase_tax_rate" - | "company,sales_tax_rate" - | "company,sales_tax_rate,purchase_tax_rate" - | "purchase_account" - | "purchase_account,company" - | "purchase_account,company,purchase_tax_rate" - | "purchase_account,company,sales_tax_rate" - | "purchase_account,company,sales_tax_rate,purchase_tax_rate" - | "purchase_account,purchase_tax_rate" - | "purchase_account,sales_account" - | "purchase_account,sales_account,company" - | "purchase_account,sales_account,company,purchase_tax_rate" - | "purchase_account,sales_account,company,sales_tax_rate" - | "purchase_account,sales_account,company,sales_tax_rate,purchase_tax_rate" - | "purchase_account,sales_account,purchase_tax_rate" - | "purchase_account,sales_account,sales_tax_rate" - | "purchase_account,sales_account,sales_tax_rate,purchase_tax_rate" - | "purchase_account,sales_tax_rate" - | "purchase_account,sales_tax_rate,purchase_tax_rate" - | "purchase_tax_rate" - | "sales_account" - | "sales_account,company" - | "sales_account,company,purchase_tax_rate" - | "sales_account,company,sales_tax_rate" - | "sales_account,company,sales_tax_rate,purchase_tax_rate" - | "sales_account,purchase_tax_rate" - | "sales_account,sales_tax_rate" - | "sales_account,sales_tax_rate,purchase_tax_rate" - | "sales_tax_rate" - | "sales_tax_rate,purchase_tax_rate"; -} diff --git a/src/serialization/resources/accounting/resources/items/types/index.ts b/src/serialization/resources/accounting/resources/items/types/index.ts deleted file mode 100644 index 2d4c475ae..000000000 --- a/src/serialization/resources/accounting/resources/items/types/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./ItemsListRequestExpand"; -export * from "./ItemsRetrieveRequestExpand"; diff --git a/src/serialization/resources/accounting/resources/journalEntries/client/index.ts b/src/serialization/resources/accounting/resources/journalEntries/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/serialization/resources/accounting/resources/journalEntries/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/serialization/resources/accounting/resources/journalEntries/client/requests/JournalEntryEndpointRequest.ts b/src/serialization/resources/accounting/resources/journalEntries/client/requests/JournalEntryEndpointRequest.ts deleted file mode 100644 index b58476923..000000000 --- a/src/serialization/resources/accounting/resources/journalEntries/client/requests/JournalEntryEndpointRequest.ts +++ /dev/null @@ -1,19 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../../api/index"; -import * as core from "../../../../../../../core"; -import type * as serializers from "../../../../../../index"; -import { JournalEntryRequest } from "../../../../types/JournalEntryRequest"; - -export const JournalEntryEndpointRequest: core.serialization.Schema< - serializers.accounting.JournalEntryEndpointRequest.Raw, - Omit -> = core.serialization.object({ - model: JournalEntryRequest, -}); - -export declare namespace JournalEntryEndpointRequest { - export interface Raw { - model: JournalEntryRequest.Raw; - } -} diff --git a/src/serialization/resources/accounting/resources/journalEntries/client/requests/index.ts b/src/serialization/resources/accounting/resources/journalEntries/client/requests/index.ts deleted file mode 100644 index cf2069c3e..000000000 --- a/src/serialization/resources/accounting/resources/journalEntries/client/requests/index.ts +++ /dev/null @@ -1 +0,0 @@ -export { JournalEntryEndpointRequest } from "./JournalEntryEndpointRequest"; diff --git a/src/serialization/resources/accounting/resources/journalEntries/index.ts b/src/serialization/resources/accounting/resources/journalEntries/index.ts deleted file mode 100644 index d2ec2302c..000000000 --- a/src/serialization/resources/accounting/resources/journalEntries/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./client"; -export * from "./types"; diff --git a/src/serialization/resources/accounting/resources/journalEntries/types/JournalEntriesListRequestExpand.ts b/src/serialization/resources/accounting/resources/journalEntries/types/JournalEntriesListRequestExpand.ts deleted file mode 100644 index 9053bf7ef..000000000 --- a/src/serialization/resources/accounting/resources/journalEntries/types/JournalEntriesListRequestExpand.ts +++ /dev/null @@ -1,141 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; - -export const JournalEntriesListRequestExpand: core.serialization.Schema< - serializers.accounting.JournalEntriesListRequestExpand.Raw, - Merge.accounting.JournalEntriesListRequestExpand -> = core.serialization.enum_([ - "accounting_period", - "applied_payments", - "applied_payments,accounting_period", - "applied_payments,company", - "applied_payments,company,accounting_period", - "applied_payments,tracking_categories", - "applied_payments,tracking_categories,accounting_period", - "applied_payments,tracking_categories,company", - "applied_payments,tracking_categories,company,accounting_period", - "company", - "company,accounting_period", - "lines", - "lines,accounting_period", - "lines,applied_payments", - "lines,applied_payments,accounting_period", - "lines,applied_payments,company", - "lines,applied_payments,company,accounting_period", - "lines,applied_payments,tracking_categories", - "lines,applied_payments,tracking_categories,accounting_period", - "lines,applied_payments,tracking_categories,company", - "lines,applied_payments,tracking_categories,company,accounting_period", - "lines,company", - "lines,company,accounting_period", - "lines,payments", - "lines,payments,accounting_period", - "lines,payments,applied_payments", - "lines,payments,applied_payments,accounting_period", - "lines,payments,applied_payments,company", - "lines,payments,applied_payments,company,accounting_period", - "lines,payments,applied_payments,tracking_categories", - "lines,payments,applied_payments,tracking_categories,accounting_period", - "lines,payments,applied_payments,tracking_categories,company", - "lines,payments,applied_payments,tracking_categories,company,accounting_period", - "lines,payments,company", - "lines,payments,company,accounting_period", - "lines,payments,tracking_categories", - "lines,payments,tracking_categories,accounting_period", - "lines,payments,tracking_categories,company", - "lines,payments,tracking_categories,company,accounting_period", - "lines,tracking_categories", - "lines,tracking_categories,accounting_period", - "lines,tracking_categories,company", - "lines,tracking_categories,company,accounting_period", - "payments", - "payments,accounting_period", - "payments,applied_payments", - "payments,applied_payments,accounting_period", - "payments,applied_payments,company", - "payments,applied_payments,company,accounting_period", - "payments,applied_payments,tracking_categories", - "payments,applied_payments,tracking_categories,accounting_period", - "payments,applied_payments,tracking_categories,company", - "payments,applied_payments,tracking_categories,company,accounting_period", - "payments,company", - "payments,company,accounting_period", - "payments,tracking_categories", - "payments,tracking_categories,accounting_period", - "payments,tracking_categories,company", - "payments,tracking_categories,company,accounting_period", - "tracking_categories", - "tracking_categories,accounting_period", - "tracking_categories,company", - "tracking_categories,company,accounting_period", -]); - -export declare namespace JournalEntriesListRequestExpand { - export type Raw = - | "accounting_period" - | "applied_payments" - | "applied_payments,accounting_period" - | "applied_payments,company" - | "applied_payments,company,accounting_period" - | "applied_payments,tracking_categories" - | "applied_payments,tracking_categories,accounting_period" - | "applied_payments,tracking_categories,company" - | "applied_payments,tracking_categories,company,accounting_period" - | "company" - | "company,accounting_period" - | "lines" - | "lines,accounting_period" - | "lines,applied_payments" - | "lines,applied_payments,accounting_period" - | "lines,applied_payments,company" - | "lines,applied_payments,company,accounting_period" - | "lines,applied_payments,tracking_categories" - | "lines,applied_payments,tracking_categories,accounting_period" - | "lines,applied_payments,tracking_categories,company" - | "lines,applied_payments,tracking_categories,company,accounting_period" - | "lines,company" - | "lines,company,accounting_period" - | "lines,payments" - | "lines,payments,accounting_period" - | "lines,payments,applied_payments" - | "lines,payments,applied_payments,accounting_period" - | "lines,payments,applied_payments,company" - | "lines,payments,applied_payments,company,accounting_period" - | "lines,payments,applied_payments,tracking_categories" - | "lines,payments,applied_payments,tracking_categories,accounting_period" - | "lines,payments,applied_payments,tracking_categories,company" - | "lines,payments,applied_payments,tracking_categories,company,accounting_period" - | "lines,payments,company" - | "lines,payments,company,accounting_period" - | "lines,payments,tracking_categories" - | "lines,payments,tracking_categories,accounting_period" - | "lines,payments,tracking_categories,company" - | "lines,payments,tracking_categories,company,accounting_period" - | "lines,tracking_categories" - | "lines,tracking_categories,accounting_period" - | "lines,tracking_categories,company" - | "lines,tracking_categories,company,accounting_period" - | "payments" - | "payments,accounting_period" - | "payments,applied_payments" - | "payments,applied_payments,accounting_period" - | "payments,applied_payments,company" - | "payments,applied_payments,company,accounting_period" - | "payments,applied_payments,tracking_categories" - | "payments,applied_payments,tracking_categories,accounting_period" - | "payments,applied_payments,tracking_categories,company" - | "payments,applied_payments,tracking_categories,company,accounting_period" - | "payments,company" - | "payments,company,accounting_period" - | "payments,tracking_categories" - | "payments,tracking_categories,accounting_period" - | "payments,tracking_categories,company" - | "payments,tracking_categories,company,accounting_period" - | "tracking_categories" - | "tracking_categories,accounting_period" - | "tracking_categories,company" - | "tracking_categories,company,accounting_period"; -} diff --git a/src/serialization/resources/accounting/resources/journalEntries/types/JournalEntriesRetrieveRequestExpand.ts b/src/serialization/resources/accounting/resources/journalEntries/types/JournalEntriesRetrieveRequestExpand.ts deleted file mode 100644 index 68aaf880d..000000000 --- a/src/serialization/resources/accounting/resources/journalEntries/types/JournalEntriesRetrieveRequestExpand.ts +++ /dev/null @@ -1,141 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; - -export const JournalEntriesRetrieveRequestExpand: core.serialization.Schema< - serializers.accounting.JournalEntriesRetrieveRequestExpand.Raw, - Merge.accounting.JournalEntriesRetrieveRequestExpand -> = core.serialization.enum_([ - "accounting_period", - "applied_payments", - "applied_payments,accounting_period", - "applied_payments,company", - "applied_payments,company,accounting_period", - "applied_payments,tracking_categories", - "applied_payments,tracking_categories,accounting_period", - "applied_payments,tracking_categories,company", - "applied_payments,tracking_categories,company,accounting_period", - "company", - "company,accounting_period", - "lines", - "lines,accounting_period", - "lines,applied_payments", - "lines,applied_payments,accounting_period", - "lines,applied_payments,company", - "lines,applied_payments,company,accounting_period", - "lines,applied_payments,tracking_categories", - "lines,applied_payments,tracking_categories,accounting_period", - "lines,applied_payments,tracking_categories,company", - "lines,applied_payments,tracking_categories,company,accounting_period", - "lines,company", - "lines,company,accounting_period", - "lines,payments", - "lines,payments,accounting_period", - "lines,payments,applied_payments", - "lines,payments,applied_payments,accounting_period", - "lines,payments,applied_payments,company", - "lines,payments,applied_payments,company,accounting_period", - "lines,payments,applied_payments,tracking_categories", - "lines,payments,applied_payments,tracking_categories,accounting_period", - "lines,payments,applied_payments,tracking_categories,company", - "lines,payments,applied_payments,tracking_categories,company,accounting_period", - "lines,payments,company", - "lines,payments,company,accounting_period", - "lines,payments,tracking_categories", - "lines,payments,tracking_categories,accounting_period", - "lines,payments,tracking_categories,company", - "lines,payments,tracking_categories,company,accounting_period", - "lines,tracking_categories", - "lines,tracking_categories,accounting_period", - "lines,tracking_categories,company", - "lines,tracking_categories,company,accounting_period", - "payments", - "payments,accounting_period", - "payments,applied_payments", - "payments,applied_payments,accounting_period", - "payments,applied_payments,company", - "payments,applied_payments,company,accounting_period", - "payments,applied_payments,tracking_categories", - "payments,applied_payments,tracking_categories,accounting_period", - "payments,applied_payments,tracking_categories,company", - "payments,applied_payments,tracking_categories,company,accounting_period", - "payments,company", - "payments,company,accounting_period", - "payments,tracking_categories", - "payments,tracking_categories,accounting_period", - "payments,tracking_categories,company", - "payments,tracking_categories,company,accounting_period", - "tracking_categories", - "tracking_categories,accounting_period", - "tracking_categories,company", - "tracking_categories,company,accounting_period", -]); - -export declare namespace JournalEntriesRetrieveRequestExpand { - export type Raw = - | "accounting_period" - | "applied_payments" - | "applied_payments,accounting_period" - | "applied_payments,company" - | "applied_payments,company,accounting_period" - | "applied_payments,tracking_categories" - | "applied_payments,tracking_categories,accounting_period" - | "applied_payments,tracking_categories,company" - | "applied_payments,tracking_categories,company,accounting_period" - | "company" - | "company,accounting_period" - | "lines" - | "lines,accounting_period" - | "lines,applied_payments" - | "lines,applied_payments,accounting_period" - | "lines,applied_payments,company" - | "lines,applied_payments,company,accounting_period" - | "lines,applied_payments,tracking_categories" - | "lines,applied_payments,tracking_categories,accounting_period" - | "lines,applied_payments,tracking_categories,company" - | "lines,applied_payments,tracking_categories,company,accounting_period" - | "lines,company" - | "lines,company,accounting_period" - | "lines,payments" - | "lines,payments,accounting_period" - | "lines,payments,applied_payments" - | "lines,payments,applied_payments,accounting_period" - | "lines,payments,applied_payments,company" - | "lines,payments,applied_payments,company,accounting_period" - | "lines,payments,applied_payments,tracking_categories" - | "lines,payments,applied_payments,tracking_categories,accounting_period" - | "lines,payments,applied_payments,tracking_categories,company" - | "lines,payments,applied_payments,tracking_categories,company,accounting_period" - | "lines,payments,company" - | "lines,payments,company,accounting_period" - | "lines,payments,tracking_categories" - | "lines,payments,tracking_categories,accounting_period" - | "lines,payments,tracking_categories,company" - | "lines,payments,tracking_categories,company,accounting_period" - | "lines,tracking_categories" - | "lines,tracking_categories,accounting_period" - | "lines,tracking_categories,company" - | "lines,tracking_categories,company,accounting_period" - | "payments" - | "payments,accounting_period" - | "payments,applied_payments" - | "payments,applied_payments,accounting_period" - | "payments,applied_payments,company" - | "payments,applied_payments,company,accounting_period" - | "payments,applied_payments,tracking_categories" - | "payments,applied_payments,tracking_categories,accounting_period" - | "payments,applied_payments,tracking_categories,company" - | "payments,applied_payments,tracking_categories,company,accounting_period" - | "payments,company" - | "payments,company,accounting_period" - | "payments,tracking_categories" - | "payments,tracking_categories,accounting_period" - | "payments,tracking_categories,company" - | "payments,tracking_categories,company,accounting_period" - | "tracking_categories" - | "tracking_categories,accounting_period" - | "tracking_categories,company" - | "tracking_categories,company,accounting_period"; -} diff --git a/src/serialization/resources/accounting/resources/journalEntries/types/index.ts b/src/serialization/resources/accounting/resources/journalEntries/types/index.ts deleted file mode 100644 index d0572d020..000000000 --- a/src/serialization/resources/accounting/resources/journalEntries/types/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./JournalEntriesListRequestExpand"; -export * from "./JournalEntriesRetrieveRequestExpand"; diff --git a/src/serialization/resources/accounting/resources/linkToken/client/index.ts b/src/serialization/resources/accounting/resources/linkToken/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/serialization/resources/accounting/resources/linkToken/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/serialization/resources/accounting/resources/linkToken/client/requests/EndUserDetailsRequest.ts b/src/serialization/resources/accounting/resources/linkToken/client/requests/EndUserDetailsRequest.ts deleted file mode 100644 index e70cf9ec7..000000000 --- a/src/serialization/resources/accounting/resources/linkToken/client/requests/EndUserDetailsRequest.ts +++ /dev/null @@ -1,66 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../../api/index"; -import * as core from "../../../../../../../core"; -import type * as serializers from "../../../../../../index"; -import { CategoriesEnum } from "../../../../types/CategoriesEnum"; -import { CommonModelScopesBodyRequest } from "../../../../types/CommonModelScopesBodyRequest"; -import { IndividualCommonModelScopeDeserializerRequest } from "../../../../types/IndividualCommonModelScopeDeserializerRequest"; -import { EndUserDetailsRequestLanguage } from "../../types/EndUserDetailsRequestLanguage"; - -export const EndUserDetailsRequest: core.serialization.Schema< - serializers.accounting.EndUserDetailsRequest.Raw, - Merge.accounting.EndUserDetailsRequest -> = core.serialization.object({ - endUserEmailAddress: core.serialization.property("end_user_email_address", core.serialization.string()), - endUserOrganizationName: core.serialization.property("end_user_organization_name", core.serialization.string()), - endUserOriginId: core.serialization.property("end_user_origin_id", core.serialization.string()), - categories: core.serialization.list(CategoriesEnum), - integration: core.serialization.string().optional(), - linkExpiryMins: core.serialization.property("link_expiry_mins", core.serialization.number().optional()), - shouldCreateMagicLinkUrl: core.serialization.property( - "should_create_magic_link_url", - core.serialization.boolean().optional(), - ), - hideAdminMagicLink: core.serialization.property("hide_admin_magic_link", core.serialization.boolean().optional()), - commonModels: core.serialization.property( - "common_models", - core.serialization.list(CommonModelScopesBodyRequest).optional(), - ), - categoryCommonModelScopes: core.serialization.property( - "category_common_model_scopes", - core.serialization - .record( - core.serialization.string(), - core.serialization.list(IndividualCommonModelScopeDeserializerRequest).optional(), - ) - .optional(), - ), - language: EndUserDetailsRequestLanguage.optional(), - areSyncsDisabled: core.serialization.property("are_syncs_disabled", core.serialization.boolean().optional()), - integrationSpecificConfig: core.serialization.property( - "integration_specific_config", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), -}); - -export declare namespace EndUserDetailsRequest { - export interface Raw { - end_user_email_address: string; - end_user_organization_name: string; - end_user_origin_id: string; - categories: CategoriesEnum.Raw[]; - integration?: string | null; - link_expiry_mins?: number | null; - should_create_magic_link_url?: boolean | null; - hide_admin_magic_link?: boolean | null; - common_models?: CommonModelScopesBodyRequest.Raw[] | null; - category_common_model_scopes?: Record< - string, - IndividualCommonModelScopeDeserializerRequest.Raw[] | null | undefined - > | null; - language?: EndUserDetailsRequestLanguage.Raw | null; - are_syncs_disabled?: boolean | null; - integration_specific_config?: Record | null; - } -} diff --git a/src/serialization/resources/accounting/resources/linkToken/client/requests/index.ts b/src/serialization/resources/accounting/resources/linkToken/client/requests/index.ts deleted file mode 100644 index d94b44a3e..000000000 --- a/src/serialization/resources/accounting/resources/linkToken/client/requests/index.ts +++ /dev/null @@ -1 +0,0 @@ -export { EndUserDetailsRequest } from "./EndUserDetailsRequest"; diff --git a/src/serialization/resources/accounting/resources/linkToken/index.ts b/src/serialization/resources/accounting/resources/linkToken/index.ts deleted file mode 100644 index d2ec2302c..000000000 --- a/src/serialization/resources/accounting/resources/linkToken/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./client"; -export * from "./types"; diff --git a/src/serialization/resources/accounting/resources/linkToken/types/EndUserDetailsRequestLanguage.ts b/src/serialization/resources/accounting/resources/linkToken/types/EndUserDetailsRequestLanguage.ts deleted file mode 100644 index 0a196a847..000000000 --- a/src/serialization/resources/accounting/resources/linkToken/types/EndUserDetailsRequestLanguage.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; -import { LanguageEnum } from "../../../types/LanguageEnum"; - -export const EndUserDetailsRequestLanguage: core.serialization.Schema< - serializers.accounting.EndUserDetailsRequestLanguage.Raw, - Merge.accounting.EndUserDetailsRequestLanguage -> = core.serialization.undiscriminatedUnion([LanguageEnum, core.serialization.string()]); - -export declare namespace EndUserDetailsRequestLanguage { - export type Raw = LanguageEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/resources/linkToken/types/index.ts b/src/serialization/resources/accounting/resources/linkToken/types/index.ts deleted file mode 100644 index c90e13c37..000000000 --- a/src/serialization/resources/accounting/resources/linkToken/types/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./EndUserDetailsRequestLanguage"; diff --git a/src/serialization/resources/accounting/resources/linkedAccounts/index.ts b/src/serialization/resources/accounting/resources/linkedAccounts/index.ts deleted file mode 100644 index eea524d65..000000000 --- a/src/serialization/resources/accounting/resources/linkedAccounts/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./types"; diff --git a/src/serialization/resources/accounting/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.ts b/src/serialization/resources/accounting/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.ts deleted file mode 100644 index eaf531f8b..000000000 --- a/src/serialization/resources/accounting/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; - -export const LinkedAccountsListRequestCategory: core.serialization.Schema< - serializers.accounting.LinkedAccountsListRequestCategory.Raw, - Merge.accounting.LinkedAccountsListRequestCategory -> = core.serialization.enum_(["accounting", "ats", "crm", "filestorage", "hris", "mktg", "ticketing"]); - -export declare namespace LinkedAccountsListRequestCategory { - export type Raw = "accounting" | "ats" | "crm" | "filestorage" | "hris" | "mktg" | "ticketing"; -} diff --git a/src/serialization/resources/accounting/resources/linkedAccounts/types/index.ts b/src/serialization/resources/accounting/resources/linkedAccounts/types/index.ts deleted file mode 100644 index 91de6010a..000000000 --- a/src/serialization/resources/accounting/resources/linkedAccounts/types/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./LinkedAccountsListRequestCategory"; diff --git a/src/serialization/resources/accounting/resources/payments/client/index.ts b/src/serialization/resources/accounting/resources/payments/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/serialization/resources/accounting/resources/payments/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/serialization/resources/accounting/resources/payments/client/requests/PatchedPaymentEndpointRequest.ts b/src/serialization/resources/accounting/resources/payments/client/requests/PatchedPaymentEndpointRequest.ts deleted file mode 100644 index b373e2899..000000000 --- a/src/serialization/resources/accounting/resources/payments/client/requests/PatchedPaymentEndpointRequest.ts +++ /dev/null @@ -1,19 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../../api/index"; -import * as core from "../../../../../../../core"; -import type * as serializers from "../../../../../../index"; -import { PatchedPaymentRequest } from "../../../../types/PatchedPaymentRequest"; - -export const PatchedPaymentEndpointRequest: core.serialization.Schema< - serializers.accounting.PatchedPaymentEndpointRequest.Raw, - Omit -> = core.serialization.object({ - model: PatchedPaymentRequest, -}); - -export declare namespace PatchedPaymentEndpointRequest { - export interface Raw { - model: PatchedPaymentRequest.Raw; - } -} diff --git a/src/serialization/resources/accounting/resources/payments/client/requests/PaymentEndpointRequest.ts b/src/serialization/resources/accounting/resources/payments/client/requests/PaymentEndpointRequest.ts deleted file mode 100644 index b0cafb545..000000000 --- a/src/serialization/resources/accounting/resources/payments/client/requests/PaymentEndpointRequest.ts +++ /dev/null @@ -1,19 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../../api/index"; -import * as core from "../../../../../../../core"; -import type * as serializers from "../../../../../../index"; -import { PaymentRequest } from "../../../../types/PaymentRequest"; - -export const PaymentEndpointRequest: core.serialization.Schema< - serializers.accounting.PaymentEndpointRequest.Raw, - Omit -> = core.serialization.object({ - model: PaymentRequest, -}); - -export declare namespace PaymentEndpointRequest { - export interface Raw { - model: PaymentRequest.Raw; - } -} diff --git a/src/serialization/resources/accounting/resources/payments/client/requests/index.ts b/src/serialization/resources/accounting/resources/payments/client/requests/index.ts deleted file mode 100644 index f17ce1f07..000000000 --- a/src/serialization/resources/accounting/resources/payments/client/requests/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export { PatchedPaymentEndpointRequest } from "./PatchedPaymentEndpointRequest"; -export { PaymentEndpointRequest } from "./PaymentEndpointRequest"; diff --git a/src/serialization/resources/accounting/resources/payments/index.ts b/src/serialization/resources/accounting/resources/payments/index.ts deleted file mode 100644 index d2ec2302c..000000000 --- a/src/serialization/resources/accounting/resources/payments/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./client"; -export * from "./types"; diff --git a/src/serialization/resources/accounting/resources/payments/types/PaymentsListRequestExpand.ts b/src/serialization/resources/accounting/resources/payments/types/PaymentsListRequestExpand.ts deleted file mode 100644 index 1b4c1b846..000000000 --- a/src/serialization/resources/accounting/resources/payments/types/PaymentsListRequestExpand.ts +++ /dev/null @@ -1,269 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; - -export const PaymentsListRequestExpand: core.serialization.Schema< - serializers.accounting.PaymentsListRequestExpand.Raw, - Merge.accounting.PaymentsListRequestExpand -> = core.serialization.enum_([ - "account", - "account,accounting_period", - "account,accounting_period,payment_method", - "account,company", - "account,company,accounting_period", - "account,company,accounting_period,payment_method", - "account,company,payment_method", - "account,payment_method", - "accounting_period", - "accounting_period,payment_method", - "applied_to_lines", - "applied_to_lines,account", - "applied_to_lines,account,accounting_period", - "applied_to_lines,account,accounting_period,payment_method", - "applied_to_lines,account,company", - "applied_to_lines,account,company,accounting_period", - "applied_to_lines,account,company,accounting_period,payment_method", - "applied_to_lines,account,company,payment_method", - "applied_to_lines,account,payment_method", - "applied_to_lines,accounting_period", - "applied_to_lines,accounting_period,payment_method", - "applied_to_lines,company", - "applied_to_lines,company,accounting_period", - "applied_to_lines,company,accounting_period,payment_method", - "applied_to_lines,company,payment_method", - "applied_to_lines,contact", - "applied_to_lines,contact,account", - "applied_to_lines,contact,account,accounting_period", - "applied_to_lines,contact,account,accounting_period,payment_method", - "applied_to_lines,contact,account,company", - "applied_to_lines,contact,account,company,accounting_period", - "applied_to_lines,contact,account,company,accounting_period,payment_method", - "applied_to_lines,contact,account,company,payment_method", - "applied_to_lines,contact,account,payment_method", - "applied_to_lines,contact,accounting_period", - "applied_to_lines,contact,accounting_period,payment_method", - "applied_to_lines,contact,company", - "applied_to_lines,contact,company,accounting_period", - "applied_to_lines,contact,company,accounting_period,payment_method", - "applied_to_lines,contact,company,payment_method", - "applied_to_lines,contact,payment_method", - "applied_to_lines,payment_method", - "company", - "company,accounting_period", - "company,accounting_period,payment_method", - "company,payment_method", - "contact", - "contact,account", - "contact,account,accounting_period", - "contact,account,accounting_period,payment_method", - "contact,account,company", - "contact,account,company,accounting_period", - "contact,account,company,accounting_period,payment_method", - "contact,account,company,payment_method", - "contact,account,payment_method", - "contact,accounting_period", - "contact,accounting_period,payment_method", - "contact,company", - "contact,company,accounting_period", - "contact,company,accounting_period,payment_method", - "contact,company,payment_method", - "contact,payment_method", - "payment_method", - "tracking_categories", - "tracking_categories,account", - "tracking_categories,account,accounting_period", - "tracking_categories,account,accounting_period,payment_method", - "tracking_categories,account,company", - "tracking_categories,account,company,accounting_period", - "tracking_categories,account,company,accounting_period,payment_method", - "tracking_categories,account,company,payment_method", - "tracking_categories,account,payment_method", - "tracking_categories,accounting_period", - "tracking_categories,accounting_period,payment_method", - "tracking_categories,applied_to_lines", - "tracking_categories,applied_to_lines,account", - "tracking_categories,applied_to_lines,account,accounting_period", - "tracking_categories,applied_to_lines,account,accounting_period,payment_method", - "tracking_categories,applied_to_lines,account,company", - "tracking_categories,applied_to_lines,account,company,accounting_period", - "tracking_categories,applied_to_lines,account,company,accounting_period,payment_method", - "tracking_categories,applied_to_lines,account,company,payment_method", - "tracking_categories,applied_to_lines,account,payment_method", - "tracking_categories,applied_to_lines,accounting_period", - "tracking_categories,applied_to_lines,accounting_period,payment_method", - "tracking_categories,applied_to_lines,company", - "tracking_categories,applied_to_lines,company,accounting_period", - "tracking_categories,applied_to_lines,company,accounting_period,payment_method", - "tracking_categories,applied_to_lines,company,payment_method", - "tracking_categories,applied_to_lines,contact", - "tracking_categories,applied_to_lines,contact,account", - "tracking_categories,applied_to_lines,contact,account,accounting_period", - "tracking_categories,applied_to_lines,contact,account,accounting_period,payment_method", - "tracking_categories,applied_to_lines,contact,account,company", - "tracking_categories,applied_to_lines,contact,account,company,accounting_period", - "tracking_categories,applied_to_lines,contact,account,company,accounting_period,payment_method", - "tracking_categories,applied_to_lines,contact,account,company,payment_method", - "tracking_categories,applied_to_lines,contact,account,payment_method", - "tracking_categories,applied_to_lines,contact,accounting_period", - "tracking_categories,applied_to_lines,contact,accounting_period,payment_method", - "tracking_categories,applied_to_lines,contact,company", - "tracking_categories,applied_to_lines,contact,company,accounting_period", - "tracking_categories,applied_to_lines,contact,company,accounting_period,payment_method", - "tracking_categories,applied_to_lines,contact,company,payment_method", - "tracking_categories,applied_to_lines,contact,payment_method", - "tracking_categories,applied_to_lines,payment_method", - "tracking_categories,company", - "tracking_categories,company,accounting_period", - "tracking_categories,company,accounting_period,payment_method", - "tracking_categories,company,payment_method", - "tracking_categories,contact", - "tracking_categories,contact,account", - "tracking_categories,contact,account,accounting_period", - "tracking_categories,contact,account,accounting_period,payment_method", - "tracking_categories,contact,account,company", - "tracking_categories,contact,account,company,accounting_period", - "tracking_categories,contact,account,company,accounting_period,payment_method", - "tracking_categories,contact,account,company,payment_method", - "tracking_categories,contact,account,payment_method", - "tracking_categories,contact,accounting_period", - "tracking_categories,contact,accounting_period,payment_method", - "tracking_categories,contact,company", - "tracking_categories,contact,company,accounting_period", - "tracking_categories,contact,company,accounting_period,payment_method", - "tracking_categories,contact,company,payment_method", - "tracking_categories,contact,payment_method", - "tracking_categories,payment_method", -]); - -export declare namespace PaymentsListRequestExpand { - export type Raw = - | "account" - | "account,accounting_period" - | "account,accounting_period,payment_method" - | "account,company" - | "account,company,accounting_period" - | "account,company,accounting_period,payment_method" - | "account,company,payment_method" - | "account,payment_method" - | "accounting_period" - | "accounting_period,payment_method" - | "applied_to_lines" - | "applied_to_lines,account" - | "applied_to_lines,account,accounting_period" - | "applied_to_lines,account,accounting_period,payment_method" - | "applied_to_lines,account,company" - | "applied_to_lines,account,company,accounting_period" - | "applied_to_lines,account,company,accounting_period,payment_method" - | "applied_to_lines,account,company,payment_method" - | "applied_to_lines,account,payment_method" - | "applied_to_lines,accounting_period" - | "applied_to_lines,accounting_period,payment_method" - | "applied_to_lines,company" - | "applied_to_lines,company,accounting_period" - | "applied_to_lines,company,accounting_period,payment_method" - | "applied_to_lines,company,payment_method" - | "applied_to_lines,contact" - | "applied_to_lines,contact,account" - | "applied_to_lines,contact,account,accounting_period" - | "applied_to_lines,contact,account,accounting_period,payment_method" - | "applied_to_lines,contact,account,company" - | "applied_to_lines,contact,account,company,accounting_period" - | "applied_to_lines,contact,account,company,accounting_period,payment_method" - | "applied_to_lines,contact,account,company,payment_method" - | "applied_to_lines,contact,account,payment_method" - | "applied_to_lines,contact,accounting_period" - | "applied_to_lines,contact,accounting_period,payment_method" - | "applied_to_lines,contact,company" - | "applied_to_lines,contact,company,accounting_period" - | "applied_to_lines,contact,company,accounting_period,payment_method" - | "applied_to_lines,contact,company,payment_method" - | "applied_to_lines,contact,payment_method" - | "applied_to_lines,payment_method" - | "company" - | "company,accounting_period" - | "company,accounting_period,payment_method" - | "company,payment_method" - | "contact" - | "contact,account" - | "contact,account,accounting_period" - | "contact,account,accounting_period,payment_method" - | "contact,account,company" - | "contact,account,company,accounting_period" - | "contact,account,company,accounting_period,payment_method" - | "contact,account,company,payment_method" - | "contact,account,payment_method" - | "contact,accounting_period" - | "contact,accounting_period,payment_method" - | "contact,company" - | "contact,company,accounting_period" - | "contact,company,accounting_period,payment_method" - | "contact,company,payment_method" - | "contact,payment_method" - | "payment_method" - | "tracking_categories" - | "tracking_categories,account" - | "tracking_categories,account,accounting_period" - | "tracking_categories,account,accounting_period,payment_method" - | "tracking_categories,account,company" - | "tracking_categories,account,company,accounting_period" - | "tracking_categories,account,company,accounting_period,payment_method" - | "tracking_categories,account,company,payment_method" - | "tracking_categories,account,payment_method" - | "tracking_categories,accounting_period" - | "tracking_categories,accounting_period,payment_method" - | "tracking_categories,applied_to_lines" - | "tracking_categories,applied_to_lines,account" - | "tracking_categories,applied_to_lines,account,accounting_period" - | "tracking_categories,applied_to_lines,account,accounting_period,payment_method" - | "tracking_categories,applied_to_lines,account,company" - | "tracking_categories,applied_to_lines,account,company,accounting_period" - | "tracking_categories,applied_to_lines,account,company,accounting_period,payment_method" - | "tracking_categories,applied_to_lines,account,company,payment_method" - | "tracking_categories,applied_to_lines,account,payment_method" - | "tracking_categories,applied_to_lines,accounting_period" - | "tracking_categories,applied_to_lines,accounting_period,payment_method" - | "tracking_categories,applied_to_lines,company" - | "tracking_categories,applied_to_lines,company,accounting_period" - | "tracking_categories,applied_to_lines,company,accounting_period,payment_method" - | "tracking_categories,applied_to_lines,company,payment_method" - | "tracking_categories,applied_to_lines,contact" - | "tracking_categories,applied_to_lines,contact,account" - | "tracking_categories,applied_to_lines,contact,account,accounting_period" - | "tracking_categories,applied_to_lines,contact,account,accounting_period,payment_method" - | "tracking_categories,applied_to_lines,contact,account,company" - | "tracking_categories,applied_to_lines,contact,account,company,accounting_period" - | "tracking_categories,applied_to_lines,contact,account,company,accounting_period,payment_method" - | "tracking_categories,applied_to_lines,contact,account,company,payment_method" - | "tracking_categories,applied_to_lines,contact,account,payment_method" - | "tracking_categories,applied_to_lines,contact,accounting_period" - | "tracking_categories,applied_to_lines,contact,accounting_period,payment_method" - | "tracking_categories,applied_to_lines,contact,company" - | "tracking_categories,applied_to_lines,contact,company,accounting_period" - | "tracking_categories,applied_to_lines,contact,company,accounting_period,payment_method" - | "tracking_categories,applied_to_lines,contact,company,payment_method" - | "tracking_categories,applied_to_lines,contact,payment_method" - | "tracking_categories,applied_to_lines,payment_method" - | "tracking_categories,company" - | "tracking_categories,company,accounting_period" - | "tracking_categories,company,accounting_period,payment_method" - | "tracking_categories,company,payment_method" - | "tracking_categories,contact" - | "tracking_categories,contact,account" - | "tracking_categories,contact,account,accounting_period" - | "tracking_categories,contact,account,accounting_period,payment_method" - | "tracking_categories,contact,account,company" - | "tracking_categories,contact,account,company,accounting_period" - | "tracking_categories,contact,account,company,accounting_period,payment_method" - | "tracking_categories,contact,account,company,payment_method" - | "tracking_categories,contact,account,payment_method" - | "tracking_categories,contact,accounting_period" - | "tracking_categories,contact,accounting_period,payment_method" - | "tracking_categories,contact,company" - | "tracking_categories,contact,company,accounting_period" - | "tracking_categories,contact,company,accounting_period,payment_method" - | "tracking_categories,contact,company,payment_method" - | "tracking_categories,contact,payment_method" - | "tracking_categories,payment_method"; -} diff --git a/src/serialization/resources/accounting/resources/payments/types/PaymentsRetrieveRequestExpand.ts b/src/serialization/resources/accounting/resources/payments/types/PaymentsRetrieveRequestExpand.ts deleted file mode 100644 index f67386464..000000000 --- a/src/serialization/resources/accounting/resources/payments/types/PaymentsRetrieveRequestExpand.ts +++ /dev/null @@ -1,269 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; - -export const PaymentsRetrieveRequestExpand: core.serialization.Schema< - serializers.accounting.PaymentsRetrieveRequestExpand.Raw, - Merge.accounting.PaymentsRetrieveRequestExpand -> = core.serialization.enum_([ - "account", - "account,accounting_period", - "account,accounting_period,payment_method", - "account,company", - "account,company,accounting_period", - "account,company,accounting_period,payment_method", - "account,company,payment_method", - "account,payment_method", - "accounting_period", - "accounting_period,payment_method", - "applied_to_lines", - "applied_to_lines,account", - "applied_to_lines,account,accounting_period", - "applied_to_lines,account,accounting_period,payment_method", - "applied_to_lines,account,company", - "applied_to_lines,account,company,accounting_period", - "applied_to_lines,account,company,accounting_period,payment_method", - "applied_to_lines,account,company,payment_method", - "applied_to_lines,account,payment_method", - "applied_to_lines,accounting_period", - "applied_to_lines,accounting_period,payment_method", - "applied_to_lines,company", - "applied_to_lines,company,accounting_period", - "applied_to_lines,company,accounting_period,payment_method", - "applied_to_lines,company,payment_method", - "applied_to_lines,contact", - "applied_to_lines,contact,account", - "applied_to_lines,contact,account,accounting_period", - "applied_to_lines,contact,account,accounting_period,payment_method", - "applied_to_lines,contact,account,company", - "applied_to_lines,contact,account,company,accounting_period", - "applied_to_lines,contact,account,company,accounting_period,payment_method", - "applied_to_lines,contact,account,company,payment_method", - "applied_to_lines,contact,account,payment_method", - "applied_to_lines,contact,accounting_period", - "applied_to_lines,contact,accounting_period,payment_method", - "applied_to_lines,contact,company", - "applied_to_lines,contact,company,accounting_period", - "applied_to_lines,contact,company,accounting_period,payment_method", - "applied_to_lines,contact,company,payment_method", - "applied_to_lines,contact,payment_method", - "applied_to_lines,payment_method", - "company", - "company,accounting_period", - "company,accounting_period,payment_method", - "company,payment_method", - "contact", - "contact,account", - "contact,account,accounting_period", - "contact,account,accounting_period,payment_method", - "contact,account,company", - "contact,account,company,accounting_period", - "contact,account,company,accounting_period,payment_method", - "contact,account,company,payment_method", - "contact,account,payment_method", - "contact,accounting_period", - "contact,accounting_period,payment_method", - "contact,company", - "contact,company,accounting_period", - "contact,company,accounting_period,payment_method", - "contact,company,payment_method", - "contact,payment_method", - "payment_method", - "tracking_categories", - "tracking_categories,account", - "tracking_categories,account,accounting_period", - "tracking_categories,account,accounting_period,payment_method", - "tracking_categories,account,company", - "tracking_categories,account,company,accounting_period", - "tracking_categories,account,company,accounting_period,payment_method", - "tracking_categories,account,company,payment_method", - "tracking_categories,account,payment_method", - "tracking_categories,accounting_period", - "tracking_categories,accounting_period,payment_method", - "tracking_categories,applied_to_lines", - "tracking_categories,applied_to_lines,account", - "tracking_categories,applied_to_lines,account,accounting_period", - "tracking_categories,applied_to_lines,account,accounting_period,payment_method", - "tracking_categories,applied_to_lines,account,company", - "tracking_categories,applied_to_lines,account,company,accounting_period", - "tracking_categories,applied_to_lines,account,company,accounting_period,payment_method", - "tracking_categories,applied_to_lines,account,company,payment_method", - "tracking_categories,applied_to_lines,account,payment_method", - "tracking_categories,applied_to_lines,accounting_period", - "tracking_categories,applied_to_lines,accounting_period,payment_method", - "tracking_categories,applied_to_lines,company", - "tracking_categories,applied_to_lines,company,accounting_period", - "tracking_categories,applied_to_lines,company,accounting_period,payment_method", - "tracking_categories,applied_to_lines,company,payment_method", - "tracking_categories,applied_to_lines,contact", - "tracking_categories,applied_to_lines,contact,account", - "tracking_categories,applied_to_lines,contact,account,accounting_period", - "tracking_categories,applied_to_lines,contact,account,accounting_period,payment_method", - "tracking_categories,applied_to_lines,contact,account,company", - "tracking_categories,applied_to_lines,contact,account,company,accounting_period", - "tracking_categories,applied_to_lines,contact,account,company,accounting_period,payment_method", - "tracking_categories,applied_to_lines,contact,account,company,payment_method", - "tracking_categories,applied_to_lines,contact,account,payment_method", - "tracking_categories,applied_to_lines,contact,accounting_period", - "tracking_categories,applied_to_lines,contact,accounting_period,payment_method", - "tracking_categories,applied_to_lines,contact,company", - "tracking_categories,applied_to_lines,contact,company,accounting_period", - "tracking_categories,applied_to_lines,contact,company,accounting_period,payment_method", - "tracking_categories,applied_to_lines,contact,company,payment_method", - "tracking_categories,applied_to_lines,contact,payment_method", - "tracking_categories,applied_to_lines,payment_method", - "tracking_categories,company", - "tracking_categories,company,accounting_period", - "tracking_categories,company,accounting_period,payment_method", - "tracking_categories,company,payment_method", - "tracking_categories,contact", - "tracking_categories,contact,account", - "tracking_categories,contact,account,accounting_period", - "tracking_categories,contact,account,accounting_period,payment_method", - "tracking_categories,contact,account,company", - "tracking_categories,contact,account,company,accounting_period", - "tracking_categories,contact,account,company,accounting_period,payment_method", - "tracking_categories,contact,account,company,payment_method", - "tracking_categories,contact,account,payment_method", - "tracking_categories,contact,accounting_period", - "tracking_categories,contact,accounting_period,payment_method", - "tracking_categories,contact,company", - "tracking_categories,contact,company,accounting_period", - "tracking_categories,contact,company,accounting_period,payment_method", - "tracking_categories,contact,company,payment_method", - "tracking_categories,contact,payment_method", - "tracking_categories,payment_method", -]); - -export declare namespace PaymentsRetrieveRequestExpand { - export type Raw = - | "account" - | "account,accounting_period" - | "account,accounting_period,payment_method" - | "account,company" - | "account,company,accounting_period" - | "account,company,accounting_period,payment_method" - | "account,company,payment_method" - | "account,payment_method" - | "accounting_period" - | "accounting_period,payment_method" - | "applied_to_lines" - | "applied_to_lines,account" - | "applied_to_lines,account,accounting_period" - | "applied_to_lines,account,accounting_period,payment_method" - | "applied_to_lines,account,company" - | "applied_to_lines,account,company,accounting_period" - | "applied_to_lines,account,company,accounting_period,payment_method" - | "applied_to_lines,account,company,payment_method" - | "applied_to_lines,account,payment_method" - | "applied_to_lines,accounting_period" - | "applied_to_lines,accounting_period,payment_method" - | "applied_to_lines,company" - | "applied_to_lines,company,accounting_period" - | "applied_to_lines,company,accounting_period,payment_method" - | "applied_to_lines,company,payment_method" - | "applied_to_lines,contact" - | "applied_to_lines,contact,account" - | "applied_to_lines,contact,account,accounting_period" - | "applied_to_lines,contact,account,accounting_period,payment_method" - | "applied_to_lines,contact,account,company" - | "applied_to_lines,contact,account,company,accounting_period" - | "applied_to_lines,contact,account,company,accounting_period,payment_method" - | "applied_to_lines,contact,account,company,payment_method" - | "applied_to_lines,contact,account,payment_method" - | "applied_to_lines,contact,accounting_period" - | "applied_to_lines,contact,accounting_period,payment_method" - | "applied_to_lines,contact,company" - | "applied_to_lines,contact,company,accounting_period" - | "applied_to_lines,contact,company,accounting_period,payment_method" - | "applied_to_lines,contact,company,payment_method" - | "applied_to_lines,contact,payment_method" - | "applied_to_lines,payment_method" - | "company" - | "company,accounting_period" - | "company,accounting_period,payment_method" - | "company,payment_method" - | "contact" - | "contact,account" - | "contact,account,accounting_period" - | "contact,account,accounting_period,payment_method" - | "contact,account,company" - | "contact,account,company,accounting_period" - | "contact,account,company,accounting_period,payment_method" - | "contact,account,company,payment_method" - | "contact,account,payment_method" - | "contact,accounting_period" - | "contact,accounting_period,payment_method" - | "contact,company" - | "contact,company,accounting_period" - | "contact,company,accounting_period,payment_method" - | "contact,company,payment_method" - | "contact,payment_method" - | "payment_method" - | "tracking_categories" - | "tracking_categories,account" - | "tracking_categories,account,accounting_period" - | "tracking_categories,account,accounting_period,payment_method" - | "tracking_categories,account,company" - | "tracking_categories,account,company,accounting_period" - | "tracking_categories,account,company,accounting_period,payment_method" - | "tracking_categories,account,company,payment_method" - | "tracking_categories,account,payment_method" - | "tracking_categories,accounting_period" - | "tracking_categories,accounting_period,payment_method" - | "tracking_categories,applied_to_lines" - | "tracking_categories,applied_to_lines,account" - | "tracking_categories,applied_to_lines,account,accounting_period" - | "tracking_categories,applied_to_lines,account,accounting_period,payment_method" - | "tracking_categories,applied_to_lines,account,company" - | "tracking_categories,applied_to_lines,account,company,accounting_period" - | "tracking_categories,applied_to_lines,account,company,accounting_period,payment_method" - | "tracking_categories,applied_to_lines,account,company,payment_method" - | "tracking_categories,applied_to_lines,account,payment_method" - | "tracking_categories,applied_to_lines,accounting_period" - | "tracking_categories,applied_to_lines,accounting_period,payment_method" - | "tracking_categories,applied_to_lines,company" - | "tracking_categories,applied_to_lines,company,accounting_period" - | "tracking_categories,applied_to_lines,company,accounting_period,payment_method" - | "tracking_categories,applied_to_lines,company,payment_method" - | "tracking_categories,applied_to_lines,contact" - | "tracking_categories,applied_to_lines,contact,account" - | "tracking_categories,applied_to_lines,contact,account,accounting_period" - | "tracking_categories,applied_to_lines,contact,account,accounting_period,payment_method" - | "tracking_categories,applied_to_lines,contact,account,company" - | "tracking_categories,applied_to_lines,contact,account,company,accounting_period" - | "tracking_categories,applied_to_lines,contact,account,company,accounting_period,payment_method" - | "tracking_categories,applied_to_lines,contact,account,company,payment_method" - | "tracking_categories,applied_to_lines,contact,account,payment_method" - | "tracking_categories,applied_to_lines,contact,accounting_period" - | "tracking_categories,applied_to_lines,contact,accounting_period,payment_method" - | "tracking_categories,applied_to_lines,contact,company" - | "tracking_categories,applied_to_lines,contact,company,accounting_period" - | "tracking_categories,applied_to_lines,contact,company,accounting_period,payment_method" - | "tracking_categories,applied_to_lines,contact,company,payment_method" - | "tracking_categories,applied_to_lines,contact,payment_method" - | "tracking_categories,applied_to_lines,payment_method" - | "tracking_categories,company" - | "tracking_categories,company,accounting_period" - | "tracking_categories,company,accounting_period,payment_method" - | "tracking_categories,company,payment_method" - | "tracking_categories,contact" - | "tracking_categories,contact,account" - | "tracking_categories,contact,account,accounting_period" - | "tracking_categories,contact,account,accounting_period,payment_method" - | "tracking_categories,contact,account,company" - | "tracking_categories,contact,account,company,accounting_period" - | "tracking_categories,contact,account,company,accounting_period,payment_method" - | "tracking_categories,contact,account,company,payment_method" - | "tracking_categories,contact,account,payment_method" - | "tracking_categories,contact,accounting_period" - | "tracking_categories,contact,accounting_period,payment_method" - | "tracking_categories,contact,company" - | "tracking_categories,contact,company,accounting_period" - | "tracking_categories,contact,company,accounting_period,payment_method" - | "tracking_categories,contact,company,payment_method" - | "tracking_categories,contact,payment_method" - | "tracking_categories,payment_method"; -} diff --git a/src/serialization/resources/accounting/resources/payments/types/index.ts b/src/serialization/resources/accounting/resources/payments/types/index.ts deleted file mode 100644 index 56e4a3693..000000000 --- a/src/serialization/resources/accounting/resources/payments/types/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./PaymentsListRequestExpand"; -export * from "./PaymentsRetrieveRequestExpand"; diff --git a/src/serialization/resources/accounting/resources/projects/index.ts b/src/serialization/resources/accounting/resources/projects/index.ts deleted file mode 100644 index eea524d65..000000000 --- a/src/serialization/resources/accounting/resources/projects/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./types"; diff --git a/src/serialization/resources/accounting/resources/projects/types/ProjectsListRequestExpand.ts b/src/serialization/resources/accounting/resources/projects/types/ProjectsListRequestExpand.ts deleted file mode 100644 index 8974879b7..000000000 --- a/src/serialization/resources/accounting/resources/projects/types/ProjectsListRequestExpand.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; - -export const ProjectsListRequestExpand: core.serialization.Schema< - serializers.accounting.ProjectsListRequestExpand.Raw, - Merge.accounting.ProjectsListRequestExpand -> = core.serialization.enum_(["company", "company,contact", "contact"]); - -export declare namespace ProjectsListRequestExpand { - export type Raw = "company" | "company,contact" | "contact"; -} diff --git a/src/serialization/resources/accounting/resources/projects/types/ProjectsRetrieveRequestExpand.ts b/src/serialization/resources/accounting/resources/projects/types/ProjectsRetrieveRequestExpand.ts deleted file mode 100644 index 2d456dddc..000000000 --- a/src/serialization/resources/accounting/resources/projects/types/ProjectsRetrieveRequestExpand.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; - -export const ProjectsRetrieveRequestExpand: core.serialization.Schema< - serializers.accounting.ProjectsRetrieveRequestExpand.Raw, - Merge.accounting.ProjectsRetrieveRequestExpand -> = core.serialization.enum_(["company", "company,contact", "contact"]); - -export declare namespace ProjectsRetrieveRequestExpand { - export type Raw = "company" | "company,contact" | "contact"; -} diff --git a/src/serialization/resources/accounting/resources/projects/types/index.ts b/src/serialization/resources/accounting/resources/projects/types/index.ts deleted file mode 100644 index 5ecd3d28e..000000000 --- a/src/serialization/resources/accounting/resources/projects/types/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./ProjectsListRequestExpand"; -export * from "./ProjectsRetrieveRequestExpand"; diff --git a/src/serialization/resources/accounting/resources/purchaseOrders/client/index.ts b/src/serialization/resources/accounting/resources/purchaseOrders/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/serialization/resources/accounting/resources/purchaseOrders/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/serialization/resources/accounting/resources/purchaseOrders/client/requests/PurchaseOrderEndpointRequest.ts b/src/serialization/resources/accounting/resources/purchaseOrders/client/requests/PurchaseOrderEndpointRequest.ts deleted file mode 100644 index 53a9813d4..000000000 --- a/src/serialization/resources/accounting/resources/purchaseOrders/client/requests/PurchaseOrderEndpointRequest.ts +++ /dev/null @@ -1,19 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../../api/index"; -import * as core from "../../../../../../../core"; -import type * as serializers from "../../../../../../index"; -import { PurchaseOrderRequest } from "../../../../types/PurchaseOrderRequest"; - -export const PurchaseOrderEndpointRequest: core.serialization.Schema< - serializers.accounting.PurchaseOrderEndpointRequest.Raw, - Omit -> = core.serialization.object({ - model: PurchaseOrderRequest, -}); - -export declare namespace PurchaseOrderEndpointRequest { - export interface Raw { - model: PurchaseOrderRequest.Raw; - } -} diff --git a/src/serialization/resources/accounting/resources/purchaseOrders/client/requests/index.ts b/src/serialization/resources/accounting/resources/purchaseOrders/client/requests/index.ts deleted file mode 100644 index 72830d645..000000000 --- a/src/serialization/resources/accounting/resources/purchaseOrders/client/requests/index.ts +++ /dev/null @@ -1 +0,0 @@ -export { PurchaseOrderEndpointRequest } from "./PurchaseOrderEndpointRequest"; diff --git a/src/serialization/resources/accounting/resources/purchaseOrders/index.ts b/src/serialization/resources/accounting/resources/purchaseOrders/index.ts deleted file mode 100644 index d2ec2302c..000000000 --- a/src/serialization/resources/accounting/resources/purchaseOrders/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./client"; -export * from "./types"; diff --git a/src/serialization/resources/accounting/resources/purchaseOrders/types/PurchaseOrdersListRequestExpand.ts b/src/serialization/resources/accounting/resources/purchaseOrders/types/PurchaseOrdersListRequestExpand.ts deleted file mode 100644 index 102c0fee4..000000000 --- a/src/serialization/resources/accounting/resources/purchaseOrders/types/PurchaseOrdersListRequestExpand.ts +++ /dev/null @@ -1,269 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; - -export const PurchaseOrdersListRequestExpand: core.serialization.Schema< - serializers.accounting.PurchaseOrdersListRequestExpand.Raw, - Merge.accounting.PurchaseOrdersListRequestExpand -> = core.serialization.enum_([ - "accounting_period", - "accounting_period,payment_term", - "company", - "company,accounting_period", - "company,accounting_period,payment_term", - "company,payment_term", - "delivery_address", - "delivery_address,accounting_period", - "delivery_address,accounting_period,payment_term", - "delivery_address,company", - "delivery_address,company,accounting_period", - "delivery_address,company,accounting_period,payment_term", - "delivery_address,company,payment_term", - "delivery_address,payment_term", - "delivery_address,vendor", - "delivery_address,vendor,accounting_period", - "delivery_address,vendor,accounting_period,payment_term", - "delivery_address,vendor,company", - "delivery_address,vendor,company,accounting_period", - "delivery_address,vendor,company,accounting_period,payment_term", - "delivery_address,vendor,company,payment_term", - "delivery_address,vendor,payment_term", - "line_items", - "line_items,accounting_period", - "line_items,accounting_period,payment_term", - "line_items,company", - "line_items,company,accounting_period", - "line_items,company,accounting_period,payment_term", - "line_items,company,payment_term", - "line_items,delivery_address", - "line_items,delivery_address,accounting_period", - "line_items,delivery_address,accounting_period,payment_term", - "line_items,delivery_address,company", - "line_items,delivery_address,company,accounting_period", - "line_items,delivery_address,company,accounting_period,payment_term", - "line_items,delivery_address,company,payment_term", - "line_items,delivery_address,payment_term", - "line_items,delivery_address,vendor", - "line_items,delivery_address,vendor,accounting_period", - "line_items,delivery_address,vendor,accounting_period,payment_term", - "line_items,delivery_address,vendor,company", - "line_items,delivery_address,vendor,company,accounting_period", - "line_items,delivery_address,vendor,company,accounting_period,payment_term", - "line_items,delivery_address,vendor,company,payment_term", - "line_items,delivery_address,vendor,payment_term", - "line_items,payment_term", - "line_items,tracking_categories", - "line_items,tracking_categories,accounting_period", - "line_items,tracking_categories,accounting_period,payment_term", - "line_items,tracking_categories,company", - "line_items,tracking_categories,company,accounting_period", - "line_items,tracking_categories,company,accounting_period,payment_term", - "line_items,tracking_categories,company,payment_term", - "line_items,tracking_categories,delivery_address", - "line_items,tracking_categories,delivery_address,accounting_period", - "line_items,tracking_categories,delivery_address,accounting_period,payment_term", - "line_items,tracking_categories,delivery_address,company", - "line_items,tracking_categories,delivery_address,company,accounting_period", - "line_items,tracking_categories,delivery_address,company,accounting_period,payment_term", - "line_items,tracking_categories,delivery_address,company,payment_term", - "line_items,tracking_categories,delivery_address,payment_term", - "line_items,tracking_categories,delivery_address,vendor", - "line_items,tracking_categories,delivery_address,vendor,accounting_period", - "line_items,tracking_categories,delivery_address,vendor,accounting_period,payment_term", - "line_items,tracking_categories,delivery_address,vendor,company", - "line_items,tracking_categories,delivery_address,vendor,company,accounting_period", - "line_items,tracking_categories,delivery_address,vendor,company,accounting_period,payment_term", - "line_items,tracking_categories,delivery_address,vendor,company,payment_term", - "line_items,tracking_categories,delivery_address,vendor,payment_term", - "line_items,tracking_categories,payment_term", - "line_items,tracking_categories,vendor", - "line_items,tracking_categories,vendor,accounting_period", - "line_items,tracking_categories,vendor,accounting_period,payment_term", - "line_items,tracking_categories,vendor,company", - "line_items,tracking_categories,vendor,company,accounting_period", - "line_items,tracking_categories,vendor,company,accounting_period,payment_term", - "line_items,tracking_categories,vendor,company,payment_term", - "line_items,tracking_categories,vendor,payment_term", - "line_items,vendor", - "line_items,vendor,accounting_period", - "line_items,vendor,accounting_period,payment_term", - "line_items,vendor,company", - "line_items,vendor,company,accounting_period", - "line_items,vendor,company,accounting_period,payment_term", - "line_items,vendor,company,payment_term", - "line_items,vendor,payment_term", - "payment_term", - "tracking_categories", - "tracking_categories,accounting_period", - "tracking_categories,accounting_period,payment_term", - "tracking_categories,company", - "tracking_categories,company,accounting_period", - "tracking_categories,company,accounting_period,payment_term", - "tracking_categories,company,payment_term", - "tracking_categories,delivery_address", - "tracking_categories,delivery_address,accounting_period", - "tracking_categories,delivery_address,accounting_period,payment_term", - "tracking_categories,delivery_address,company", - "tracking_categories,delivery_address,company,accounting_period", - "tracking_categories,delivery_address,company,accounting_period,payment_term", - "tracking_categories,delivery_address,company,payment_term", - "tracking_categories,delivery_address,payment_term", - "tracking_categories,delivery_address,vendor", - "tracking_categories,delivery_address,vendor,accounting_period", - "tracking_categories,delivery_address,vendor,accounting_period,payment_term", - "tracking_categories,delivery_address,vendor,company", - "tracking_categories,delivery_address,vendor,company,accounting_period", - "tracking_categories,delivery_address,vendor,company,accounting_period,payment_term", - "tracking_categories,delivery_address,vendor,company,payment_term", - "tracking_categories,delivery_address,vendor,payment_term", - "tracking_categories,payment_term", - "tracking_categories,vendor", - "tracking_categories,vendor,accounting_period", - "tracking_categories,vendor,accounting_period,payment_term", - "tracking_categories,vendor,company", - "tracking_categories,vendor,company,accounting_period", - "tracking_categories,vendor,company,accounting_period,payment_term", - "tracking_categories,vendor,company,payment_term", - "tracking_categories,vendor,payment_term", - "vendor", - "vendor,accounting_period", - "vendor,accounting_period,payment_term", - "vendor,company", - "vendor,company,accounting_period", - "vendor,company,accounting_period,payment_term", - "vendor,company,payment_term", - "vendor,payment_term", -]); - -export declare namespace PurchaseOrdersListRequestExpand { - export type Raw = - | "accounting_period" - | "accounting_period,payment_term" - | "company" - | "company,accounting_period" - | "company,accounting_period,payment_term" - | "company,payment_term" - | "delivery_address" - | "delivery_address,accounting_period" - | "delivery_address,accounting_period,payment_term" - | "delivery_address,company" - | "delivery_address,company,accounting_period" - | "delivery_address,company,accounting_period,payment_term" - | "delivery_address,company,payment_term" - | "delivery_address,payment_term" - | "delivery_address,vendor" - | "delivery_address,vendor,accounting_period" - | "delivery_address,vendor,accounting_period,payment_term" - | "delivery_address,vendor,company" - | "delivery_address,vendor,company,accounting_period" - | "delivery_address,vendor,company,accounting_period,payment_term" - | "delivery_address,vendor,company,payment_term" - | "delivery_address,vendor,payment_term" - | "line_items" - | "line_items,accounting_period" - | "line_items,accounting_period,payment_term" - | "line_items,company" - | "line_items,company,accounting_period" - | "line_items,company,accounting_period,payment_term" - | "line_items,company,payment_term" - | "line_items,delivery_address" - | "line_items,delivery_address,accounting_period" - | "line_items,delivery_address,accounting_period,payment_term" - | "line_items,delivery_address,company" - | "line_items,delivery_address,company,accounting_period" - | "line_items,delivery_address,company,accounting_period,payment_term" - | "line_items,delivery_address,company,payment_term" - | "line_items,delivery_address,payment_term" - | "line_items,delivery_address,vendor" - | "line_items,delivery_address,vendor,accounting_period" - | "line_items,delivery_address,vendor,accounting_period,payment_term" - | "line_items,delivery_address,vendor,company" - | "line_items,delivery_address,vendor,company,accounting_period" - | "line_items,delivery_address,vendor,company,accounting_period,payment_term" - | "line_items,delivery_address,vendor,company,payment_term" - | "line_items,delivery_address,vendor,payment_term" - | "line_items,payment_term" - | "line_items,tracking_categories" - | "line_items,tracking_categories,accounting_period" - | "line_items,tracking_categories,accounting_period,payment_term" - | "line_items,tracking_categories,company" - | "line_items,tracking_categories,company,accounting_period" - | "line_items,tracking_categories,company,accounting_period,payment_term" - | "line_items,tracking_categories,company,payment_term" - | "line_items,tracking_categories,delivery_address" - | "line_items,tracking_categories,delivery_address,accounting_period" - | "line_items,tracking_categories,delivery_address,accounting_period,payment_term" - | "line_items,tracking_categories,delivery_address,company" - | "line_items,tracking_categories,delivery_address,company,accounting_period" - | "line_items,tracking_categories,delivery_address,company,accounting_period,payment_term" - | "line_items,tracking_categories,delivery_address,company,payment_term" - | "line_items,tracking_categories,delivery_address,payment_term" - | "line_items,tracking_categories,delivery_address,vendor" - | "line_items,tracking_categories,delivery_address,vendor,accounting_period" - | "line_items,tracking_categories,delivery_address,vendor,accounting_period,payment_term" - | "line_items,tracking_categories,delivery_address,vendor,company" - | "line_items,tracking_categories,delivery_address,vendor,company,accounting_period" - | "line_items,tracking_categories,delivery_address,vendor,company,accounting_period,payment_term" - | "line_items,tracking_categories,delivery_address,vendor,company,payment_term" - | "line_items,tracking_categories,delivery_address,vendor,payment_term" - | "line_items,tracking_categories,payment_term" - | "line_items,tracking_categories,vendor" - | "line_items,tracking_categories,vendor,accounting_period" - | "line_items,tracking_categories,vendor,accounting_period,payment_term" - | "line_items,tracking_categories,vendor,company" - | "line_items,tracking_categories,vendor,company,accounting_period" - | "line_items,tracking_categories,vendor,company,accounting_period,payment_term" - | "line_items,tracking_categories,vendor,company,payment_term" - | "line_items,tracking_categories,vendor,payment_term" - | "line_items,vendor" - | "line_items,vendor,accounting_period" - | "line_items,vendor,accounting_period,payment_term" - | "line_items,vendor,company" - | "line_items,vendor,company,accounting_period" - | "line_items,vendor,company,accounting_period,payment_term" - | "line_items,vendor,company,payment_term" - | "line_items,vendor,payment_term" - | "payment_term" - | "tracking_categories" - | "tracking_categories,accounting_period" - | "tracking_categories,accounting_period,payment_term" - | "tracking_categories,company" - | "tracking_categories,company,accounting_period" - | "tracking_categories,company,accounting_period,payment_term" - | "tracking_categories,company,payment_term" - | "tracking_categories,delivery_address" - | "tracking_categories,delivery_address,accounting_period" - | "tracking_categories,delivery_address,accounting_period,payment_term" - | "tracking_categories,delivery_address,company" - | "tracking_categories,delivery_address,company,accounting_period" - | "tracking_categories,delivery_address,company,accounting_period,payment_term" - | "tracking_categories,delivery_address,company,payment_term" - | "tracking_categories,delivery_address,payment_term" - | "tracking_categories,delivery_address,vendor" - | "tracking_categories,delivery_address,vendor,accounting_period" - | "tracking_categories,delivery_address,vendor,accounting_period,payment_term" - | "tracking_categories,delivery_address,vendor,company" - | "tracking_categories,delivery_address,vendor,company,accounting_period" - | "tracking_categories,delivery_address,vendor,company,accounting_period,payment_term" - | "tracking_categories,delivery_address,vendor,company,payment_term" - | "tracking_categories,delivery_address,vendor,payment_term" - | "tracking_categories,payment_term" - | "tracking_categories,vendor" - | "tracking_categories,vendor,accounting_period" - | "tracking_categories,vendor,accounting_period,payment_term" - | "tracking_categories,vendor,company" - | "tracking_categories,vendor,company,accounting_period" - | "tracking_categories,vendor,company,accounting_period,payment_term" - | "tracking_categories,vendor,company,payment_term" - | "tracking_categories,vendor,payment_term" - | "vendor" - | "vendor,accounting_period" - | "vendor,accounting_period,payment_term" - | "vendor,company" - | "vendor,company,accounting_period" - | "vendor,company,accounting_period,payment_term" - | "vendor,company,payment_term" - | "vendor,payment_term"; -} diff --git a/src/serialization/resources/accounting/resources/purchaseOrders/types/PurchaseOrdersRetrieveRequestExpand.ts b/src/serialization/resources/accounting/resources/purchaseOrders/types/PurchaseOrdersRetrieveRequestExpand.ts deleted file mode 100644 index e40c86533..000000000 --- a/src/serialization/resources/accounting/resources/purchaseOrders/types/PurchaseOrdersRetrieveRequestExpand.ts +++ /dev/null @@ -1,269 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; - -export const PurchaseOrdersRetrieveRequestExpand: core.serialization.Schema< - serializers.accounting.PurchaseOrdersRetrieveRequestExpand.Raw, - Merge.accounting.PurchaseOrdersRetrieveRequestExpand -> = core.serialization.enum_([ - "accounting_period", - "accounting_period,payment_term", - "company", - "company,accounting_period", - "company,accounting_period,payment_term", - "company,payment_term", - "delivery_address", - "delivery_address,accounting_period", - "delivery_address,accounting_period,payment_term", - "delivery_address,company", - "delivery_address,company,accounting_period", - "delivery_address,company,accounting_period,payment_term", - "delivery_address,company,payment_term", - "delivery_address,payment_term", - "delivery_address,vendor", - "delivery_address,vendor,accounting_period", - "delivery_address,vendor,accounting_period,payment_term", - "delivery_address,vendor,company", - "delivery_address,vendor,company,accounting_period", - "delivery_address,vendor,company,accounting_period,payment_term", - "delivery_address,vendor,company,payment_term", - "delivery_address,vendor,payment_term", - "line_items", - "line_items,accounting_period", - "line_items,accounting_period,payment_term", - "line_items,company", - "line_items,company,accounting_period", - "line_items,company,accounting_period,payment_term", - "line_items,company,payment_term", - "line_items,delivery_address", - "line_items,delivery_address,accounting_period", - "line_items,delivery_address,accounting_period,payment_term", - "line_items,delivery_address,company", - "line_items,delivery_address,company,accounting_period", - "line_items,delivery_address,company,accounting_period,payment_term", - "line_items,delivery_address,company,payment_term", - "line_items,delivery_address,payment_term", - "line_items,delivery_address,vendor", - "line_items,delivery_address,vendor,accounting_period", - "line_items,delivery_address,vendor,accounting_period,payment_term", - "line_items,delivery_address,vendor,company", - "line_items,delivery_address,vendor,company,accounting_period", - "line_items,delivery_address,vendor,company,accounting_period,payment_term", - "line_items,delivery_address,vendor,company,payment_term", - "line_items,delivery_address,vendor,payment_term", - "line_items,payment_term", - "line_items,tracking_categories", - "line_items,tracking_categories,accounting_period", - "line_items,tracking_categories,accounting_period,payment_term", - "line_items,tracking_categories,company", - "line_items,tracking_categories,company,accounting_period", - "line_items,tracking_categories,company,accounting_period,payment_term", - "line_items,tracking_categories,company,payment_term", - "line_items,tracking_categories,delivery_address", - "line_items,tracking_categories,delivery_address,accounting_period", - "line_items,tracking_categories,delivery_address,accounting_period,payment_term", - "line_items,tracking_categories,delivery_address,company", - "line_items,tracking_categories,delivery_address,company,accounting_period", - "line_items,tracking_categories,delivery_address,company,accounting_period,payment_term", - "line_items,tracking_categories,delivery_address,company,payment_term", - "line_items,tracking_categories,delivery_address,payment_term", - "line_items,tracking_categories,delivery_address,vendor", - "line_items,tracking_categories,delivery_address,vendor,accounting_period", - "line_items,tracking_categories,delivery_address,vendor,accounting_period,payment_term", - "line_items,tracking_categories,delivery_address,vendor,company", - "line_items,tracking_categories,delivery_address,vendor,company,accounting_period", - "line_items,tracking_categories,delivery_address,vendor,company,accounting_period,payment_term", - "line_items,tracking_categories,delivery_address,vendor,company,payment_term", - "line_items,tracking_categories,delivery_address,vendor,payment_term", - "line_items,tracking_categories,payment_term", - "line_items,tracking_categories,vendor", - "line_items,tracking_categories,vendor,accounting_period", - "line_items,tracking_categories,vendor,accounting_period,payment_term", - "line_items,tracking_categories,vendor,company", - "line_items,tracking_categories,vendor,company,accounting_period", - "line_items,tracking_categories,vendor,company,accounting_period,payment_term", - "line_items,tracking_categories,vendor,company,payment_term", - "line_items,tracking_categories,vendor,payment_term", - "line_items,vendor", - "line_items,vendor,accounting_period", - "line_items,vendor,accounting_period,payment_term", - "line_items,vendor,company", - "line_items,vendor,company,accounting_period", - "line_items,vendor,company,accounting_period,payment_term", - "line_items,vendor,company,payment_term", - "line_items,vendor,payment_term", - "payment_term", - "tracking_categories", - "tracking_categories,accounting_period", - "tracking_categories,accounting_period,payment_term", - "tracking_categories,company", - "tracking_categories,company,accounting_period", - "tracking_categories,company,accounting_period,payment_term", - "tracking_categories,company,payment_term", - "tracking_categories,delivery_address", - "tracking_categories,delivery_address,accounting_period", - "tracking_categories,delivery_address,accounting_period,payment_term", - "tracking_categories,delivery_address,company", - "tracking_categories,delivery_address,company,accounting_period", - "tracking_categories,delivery_address,company,accounting_period,payment_term", - "tracking_categories,delivery_address,company,payment_term", - "tracking_categories,delivery_address,payment_term", - "tracking_categories,delivery_address,vendor", - "tracking_categories,delivery_address,vendor,accounting_period", - "tracking_categories,delivery_address,vendor,accounting_period,payment_term", - "tracking_categories,delivery_address,vendor,company", - "tracking_categories,delivery_address,vendor,company,accounting_period", - "tracking_categories,delivery_address,vendor,company,accounting_period,payment_term", - "tracking_categories,delivery_address,vendor,company,payment_term", - "tracking_categories,delivery_address,vendor,payment_term", - "tracking_categories,payment_term", - "tracking_categories,vendor", - "tracking_categories,vendor,accounting_period", - "tracking_categories,vendor,accounting_period,payment_term", - "tracking_categories,vendor,company", - "tracking_categories,vendor,company,accounting_period", - "tracking_categories,vendor,company,accounting_period,payment_term", - "tracking_categories,vendor,company,payment_term", - "tracking_categories,vendor,payment_term", - "vendor", - "vendor,accounting_period", - "vendor,accounting_period,payment_term", - "vendor,company", - "vendor,company,accounting_period", - "vendor,company,accounting_period,payment_term", - "vendor,company,payment_term", - "vendor,payment_term", -]); - -export declare namespace PurchaseOrdersRetrieveRequestExpand { - export type Raw = - | "accounting_period" - | "accounting_period,payment_term" - | "company" - | "company,accounting_period" - | "company,accounting_period,payment_term" - | "company,payment_term" - | "delivery_address" - | "delivery_address,accounting_period" - | "delivery_address,accounting_period,payment_term" - | "delivery_address,company" - | "delivery_address,company,accounting_period" - | "delivery_address,company,accounting_period,payment_term" - | "delivery_address,company,payment_term" - | "delivery_address,payment_term" - | "delivery_address,vendor" - | "delivery_address,vendor,accounting_period" - | "delivery_address,vendor,accounting_period,payment_term" - | "delivery_address,vendor,company" - | "delivery_address,vendor,company,accounting_period" - | "delivery_address,vendor,company,accounting_period,payment_term" - | "delivery_address,vendor,company,payment_term" - | "delivery_address,vendor,payment_term" - | "line_items" - | "line_items,accounting_period" - | "line_items,accounting_period,payment_term" - | "line_items,company" - | "line_items,company,accounting_period" - | "line_items,company,accounting_period,payment_term" - | "line_items,company,payment_term" - | "line_items,delivery_address" - | "line_items,delivery_address,accounting_period" - | "line_items,delivery_address,accounting_period,payment_term" - | "line_items,delivery_address,company" - | "line_items,delivery_address,company,accounting_period" - | "line_items,delivery_address,company,accounting_period,payment_term" - | "line_items,delivery_address,company,payment_term" - | "line_items,delivery_address,payment_term" - | "line_items,delivery_address,vendor" - | "line_items,delivery_address,vendor,accounting_period" - | "line_items,delivery_address,vendor,accounting_period,payment_term" - | "line_items,delivery_address,vendor,company" - | "line_items,delivery_address,vendor,company,accounting_period" - | "line_items,delivery_address,vendor,company,accounting_period,payment_term" - | "line_items,delivery_address,vendor,company,payment_term" - | "line_items,delivery_address,vendor,payment_term" - | "line_items,payment_term" - | "line_items,tracking_categories" - | "line_items,tracking_categories,accounting_period" - | "line_items,tracking_categories,accounting_period,payment_term" - | "line_items,tracking_categories,company" - | "line_items,tracking_categories,company,accounting_period" - | "line_items,tracking_categories,company,accounting_period,payment_term" - | "line_items,tracking_categories,company,payment_term" - | "line_items,tracking_categories,delivery_address" - | "line_items,tracking_categories,delivery_address,accounting_period" - | "line_items,tracking_categories,delivery_address,accounting_period,payment_term" - | "line_items,tracking_categories,delivery_address,company" - | "line_items,tracking_categories,delivery_address,company,accounting_period" - | "line_items,tracking_categories,delivery_address,company,accounting_period,payment_term" - | "line_items,tracking_categories,delivery_address,company,payment_term" - | "line_items,tracking_categories,delivery_address,payment_term" - | "line_items,tracking_categories,delivery_address,vendor" - | "line_items,tracking_categories,delivery_address,vendor,accounting_period" - | "line_items,tracking_categories,delivery_address,vendor,accounting_period,payment_term" - | "line_items,tracking_categories,delivery_address,vendor,company" - | "line_items,tracking_categories,delivery_address,vendor,company,accounting_period" - | "line_items,tracking_categories,delivery_address,vendor,company,accounting_period,payment_term" - | "line_items,tracking_categories,delivery_address,vendor,company,payment_term" - | "line_items,tracking_categories,delivery_address,vendor,payment_term" - | "line_items,tracking_categories,payment_term" - | "line_items,tracking_categories,vendor" - | "line_items,tracking_categories,vendor,accounting_period" - | "line_items,tracking_categories,vendor,accounting_period,payment_term" - | "line_items,tracking_categories,vendor,company" - | "line_items,tracking_categories,vendor,company,accounting_period" - | "line_items,tracking_categories,vendor,company,accounting_period,payment_term" - | "line_items,tracking_categories,vendor,company,payment_term" - | "line_items,tracking_categories,vendor,payment_term" - | "line_items,vendor" - | "line_items,vendor,accounting_period" - | "line_items,vendor,accounting_period,payment_term" - | "line_items,vendor,company" - | "line_items,vendor,company,accounting_period" - | "line_items,vendor,company,accounting_period,payment_term" - | "line_items,vendor,company,payment_term" - | "line_items,vendor,payment_term" - | "payment_term" - | "tracking_categories" - | "tracking_categories,accounting_period" - | "tracking_categories,accounting_period,payment_term" - | "tracking_categories,company" - | "tracking_categories,company,accounting_period" - | "tracking_categories,company,accounting_period,payment_term" - | "tracking_categories,company,payment_term" - | "tracking_categories,delivery_address" - | "tracking_categories,delivery_address,accounting_period" - | "tracking_categories,delivery_address,accounting_period,payment_term" - | "tracking_categories,delivery_address,company" - | "tracking_categories,delivery_address,company,accounting_period" - | "tracking_categories,delivery_address,company,accounting_period,payment_term" - | "tracking_categories,delivery_address,company,payment_term" - | "tracking_categories,delivery_address,payment_term" - | "tracking_categories,delivery_address,vendor" - | "tracking_categories,delivery_address,vendor,accounting_period" - | "tracking_categories,delivery_address,vendor,accounting_period,payment_term" - | "tracking_categories,delivery_address,vendor,company" - | "tracking_categories,delivery_address,vendor,company,accounting_period" - | "tracking_categories,delivery_address,vendor,company,accounting_period,payment_term" - | "tracking_categories,delivery_address,vendor,company,payment_term" - | "tracking_categories,delivery_address,vendor,payment_term" - | "tracking_categories,payment_term" - | "tracking_categories,vendor" - | "tracking_categories,vendor,accounting_period" - | "tracking_categories,vendor,accounting_period,payment_term" - | "tracking_categories,vendor,company" - | "tracking_categories,vendor,company,accounting_period" - | "tracking_categories,vendor,company,accounting_period,payment_term" - | "tracking_categories,vendor,company,payment_term" - | "tracking_categories,vendor,payment_term" - | "vendor" - | "vendor,accounting_period" - | "vendor,accounting_period,payment_term" - | "vendor,company" - | "vendor,company,accounting_period" - | "vendor,company,accounting_period,payment_term" - | "vendor,company,payment_term" - | "vendor,payment_term"; -} diff --git a/src/serialization/resources/accounting/resources/purchaseOrders/types/index.ts b/src/serialization/resources/accounting/resources/purchaseOrders/types/index.ts deleted file mode 100644 index fd510edde..000000000 --- a/src/serialization/resources/accounting/resources/purchaseOrders/types/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./PurchaseOrdersListRequestExpand"; -export * from "./PurchaseOrdersRetrieveRequestExpand"; diff --git a/src/serialization/resources/accounting/resources/regenerateKey/client/index.ts b/src/serialization/resources/accounting/resources/regenerateKey/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/serialization/resources/accounting/resources/regenerateKey/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/serialization/resources/accounting/resources/regenerateKey/client/requests/RemoteKeyForRegenerationRequest.ts b/src/serialization/resources/accounting/resources/regenerateKey/client/requests/RemoteKeyForRegenerationRequest.ts deleted file mode 100644 index bba6db9ed..000000000 --- a/src/serialization/resources/accounting/resources/regenerateKey/client/requests/RemoteKeyForRegenerationRequest.ts +++ /dev/null @@ -1,18 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../../api/index"; -import * as core from "../../../../../../../core"; -import type * as serializers from "../../../../../../index"; - -export const RemoteKeyForRegenerationRequest: core.serialization.Schema< - serializers.accounting.RemoteKeyForRegenerationRequest.Raw, - Merge.accounting.RemoteKeyForRegenerationRequest -> = core.serialization.object({ - name: core.serialization.string(), -}); - -export declare namespace RemoteKeyForRegenerationRequest { - export interface Raw { - name: string; - } -} diff --git a/src/serialization/resources/accounting/resources/regenerateKey/client/requests/index.ts b/src/serialization/resources/accounting/resources/regenerateKey/client/requests/index.ts deleted file mode 100644 index 2987ef933..000000000 --- a/src/serialization/resources/accounting/resources/regenerateKey/client/requests/index.ts +++ /dev/null @@ -1 +0,0 @@ -export { RemoteKeyForRegenerationRequest } from "./RemoteKeyForRegenerationRequest"; diff --git a/src/serialization/resources/accounting/resources/regenerateKey/index.ts b/src/serialization/resources/accounting/resources/regenerateKey/index.ts deleted file mode 100644 index 5ec76921e..000000000 --- a/src/serialization/resources/accounting/resources/regenerateKey/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./client"; diff --git a/src/serialization/resources/accounting/resources/scopes/client/index.ts b/src/serialization/resources/accounting/resources/scopes/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/serialization/resources/accounting/resources/scopes/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/serialization/resources/accounting/resources/scopes/client/requests/LinkedAccountCommonModelScopeDeserializerRequest.ts b/src/serialization/resources/accounting/resources/scopes/client/requests/LinkedAccountCommonModelScopeDeserializerRequest.ts deleted file mode 100644 index b277b9d34..000000000 --- a/src/serialization/resources/accounting/resources/scopes/client/requests/LinkedAccountCommonModelScopeDeserializerRequest.ts +++ /dev/null @@ -1,22 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../../api/index"; -import * as core from "../../../../../../../core"; -import type * as serializers from "../../../../../../index"; -import { IndividualCommonModelScopeDeserializerRequest } from "../../../../types/IndividualCommonModelScopeDeserializerRequest"; - -export const LinkedAccountCommonModelScopeDeserializerRequest: core.serialization.Schema< - serializers.accounting.LinkedAccountCommonModelScopeDeserializerRequest.Raw, - Merge.accounting.LinkedAccountCommonModelScopeDeserializerRequest -> = core.serialization.object({ - commonModels: core.serialization.property( - "common_models", - core.serialization.list(IndividualCommonModelScopeDeserializerRequest), - ), -}); - -export declare namespace LinkedAccountCommonModelScopeDeserializerRequest { - export interface Raw { - common_models: IndividualCommonModelScopeDeserializerRequest.Raw[]; - } -} diff --git a/src/serialization/resources/accounting/resources/scopes/client/requests/index.ts b/src/serialization/resources/accounting/resources/scopes/client/requests/index.ts deleted file mode 100644 index 28d8d7974..000000000 --- a/src/serialization/resources/accounting/resources/scopes/client/requests/index.ts +++ /dev/null @@ -1 +0,0 @@ -export { LinkedAccountCommonModelScopeDeserializerRequest } from "./LinkedAccountCommonModelScopeDeserializerRequest"; diff --git a/src/serialization/resources/accounting/resources/scopes/index.ts b/src/serialization/resources/accounting/resources/scopes/index.ts deleted file mode 100644 index 5ec76921e..000000000 --- a/src/serialization/resources/accounting/resources/scopes/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./client"; diff --git a/src/serialization/resources/accounting/resources/trackingCategories/index.ts b/src/serialization/resources/accounting/resources/trackingCategories/index.ts deleted file mode 100644 index eea524d65..000000000 --- a/src/serialization/resources/accounting/resources/trackingCategories/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./types"; diff --git a/src/serialization/resources/accounting/resources/trackingCategories/types/TrackingCategoriesListRequestCategoryType.ts b/src/serialization/resources/accounting/resources/trackingCategories/types/TrackingCategoriesListRequestCategoryType.ts deleted file mode 100644 index 037da2009..000000000 --- a/src/serialization/resources/accounting/resources/trackingCategories/types/TrackingCategoriesListRequestCategoryType.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; - -export const TrackingCategoriesListRequestCategoryType: core.serialization.Schema< - serializers.accounting.TrackingCategoriesListRequestCategoryType.Raw, - Merge.accounting.TrackingCategoriesListRequestCategoryType -> = core.serialization.enum_(["", "CLASS", "DEPARTMENT"]); - -export declare namespace TrackingCategoriesListRequestCategoryType { - export type Raw = "" | "CLASS" | "DEPARTMENT"; -} diff --git a/src/serialization/resources/accounting/resources/trackingCategories/types/TrackingCategoriesListRequestStatus.ts b/src/serialization/resources/accounting/resources/trackingCategories/types/TrackingCategoriesListRequestStatus.ts deleted file mode 100644 index be2a0c2ba..000000000 --- a/src/serialization/resources/accounting/resources/trackingCategories/types/TrackingCategoriesListRequestStatus.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; - -export const TrackingCategoriesListRequestStatus: core.serialization.Schema< - serializers.accounting.TrackingCategoriesListRequestStatus.Raw, - Merge.accounting.TrackingCategoriesListRequestStatus -> = core.serialization.enum_(["", "ACTIVE", "ARCHIVED"]); - -export declare namespace TrackingCategoriesListRequestStatus { - export type Raw = "" | "ACTIVE" | "ARCHIVED"; -} diff --git a/src/serialization/resources/accounting/resources/trackingCategories/types/index.ts b/src/serialization/resources/accounting/resources/trackingCategories/types/index.ts deleted file mode 100644 index 7a701bc1c..000000000 --- a/src/serialization/resources/accounting/resources/trackingCategories/types/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./TrackingCategoriesListRequestCategoryType"; -export * from "./TrackingCategoriesListRequestStatus"; diff --git a/src/serialization/resources/accounting/resources/transactions/index.ts b/src/serialization/resources/accounting/resources/transactions/index.ts deleted file mode 100644 index eea524d65..000000000 --- a/src/serialization/resources/accounting/resources/transactions/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./types"; diff --git a/src/serialization/resources/accounting/resources/transactions/types/TransactionsListRequestExpand.ts b/src/serialization/resources/accounting/resources/transactions/types/TransactionsListRequestExpand.ts deleted file mode 100644 index a808a6b10..000000000 --- a/src/serialization/resources/accounting/resources/transactions/types/TransactionsListRequestExpand.ts +++ /dev/null @@ -1,141 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; - -export const TransactionsListRequestExpand: core.serialization.Schema< - serializers.accounting.TransactionsListRequestExpand.Raw, - Merge.accounting.TransactionsListRequestExpand -> = core.serialization.enum_([ - "account", - "account,accounting_period", - "account,company", - "account,company,accounting_period", - "accounting_period", - "company", - "company,accounting_period", - "contact", - "contact,account", - "contact,account,accounting_period", - "contact,account,company", - "contact,account,company,accounting_period", - "contact,accounting_period", - "contact,company", - "contact,company,accounting_period", - "line_items", - "line_items,account", - "line_items,account,accounting_period", - "line_items,account,company", - "line_items,account,company,accounting_period", - "line_items,accounting_period", - "line_items,company", - "line_items,company,accounting_period", - "line_items,contact", - "line_items,contact,account", - "line_items,contact,account,accounting_period", - "line_items,contact,account,company", - "line_items,contact,account,company,accounting_period", - "line_items,contact,accounting_period", - "line_items,contact,company", - "line_items,contact,company,accounting_period", - "line_items,tracking_categories", - "line_items,tracking_categories,account", - "line_items,tracking_categories,account,accounting_period", - "line_items,tracking_categories,account,company", - "line_items,tracking_categories,account,company,accounting_period", - "line_items,tracking_categories,accounting_period", - "line_items,tracking_categories,company", - "line_items,tracking_categories,company,accounting_period", - "line_items,tracking_categories,contact", - "line_items,tracking_categories,contact,account", - "line_items,tracking_categories,contact,account,accounting_period", - "line_items,tracking_categories,contact,account,company", - "line_items,tracking_categories,contact,account,company,accounting_period", - "line_items,tracking_categories,contact,accounting_period", - "line_items,tracking_categories,contact,company", - "line_items,tracking_categories,contact,company,accounting_period", - "tracking_categories", - "tracking_categories,account", - "tracking_categories,account,accounting_period", - "tracking_categories,account,company", - "tracking_categories,account,company,accounting_period", - "tracking_categories,accounting_period", - "tracking_categories,company", - "tracking_categories,company,accounting_period", - "tracking_categories,contact", - "tracking_categories,contact,account", - "tracking_categories,contact,account,accounting_period", - "tracking_categories,contact,account,company", - "tracking_categories,contact,account,company,accounting_period", - "tracking_categories,contact,accounting_period", - "tracking_categories,contact,company", - "tracking_categories,contact,company,accounting_period", -]); - -export declare namespace TransactionsListRequestExpand { - export type Raw = - | "account" - | "account,accounting_period" - | "account,company" - | "account,company,accounting_period" - | "accounting_period" - | "company" - | "company,accounting_period" - | "contact" - | "contact,account" - | "contact,account,accounting_period" - | "contact,account,company" - | "contact,account,company,accounting_period" - | "contact,accounting_period" - | "contact,company" - | "contact,company,accounting_period" - | "line_items" - | "line_items,account" - | "line_items,account,accounting_period" - | "line_items,account,company" - | "line_items,account,company,accounting_period" - | "line_items,accounting_period" - | "line_items,company" - | "line_items,company,accounting_period" - | "line_items,contact" - | "line_items,contact,account" - | "line_items,contact,account,accounting_period" - | "line_items,contact,account,company" - | "line_items,contact,account,company,accounting_period" - | "line_items,contact,accounting_period" - | "line_items,contact,company" - | "line_items,contact,company,accounting_period" - | "line_items,tracking_categories" - | "line_items,tracking_categories,account" - | "line_items,tracking_categories,account,accounting_period" - | "line_items,tracking_categories,account,company" - | "line_items,tracking_categories,account,company,accounting_period" - | "line_items,tracking_categories,accounting_period" - | "line_items,tracking_categories,company" - | "line_items,tracking_categories,company,accounting_period" - | "line_items,tracking_categories,contact" - | "line_items,tracking_categories,contact,account" - | "line_items,tracking_categories,contact,account,accounting_period" - | "line_items,tracking_categories,contact,account,company" - | "line_items,tracking_categories,contact,account,company,accounting_period" - | "line_items,tracking_categories,contact,accounting_period" - | "line_items,tracking_categories,contact,company" - | "line_items,tracking_categories,contact,company,accounting_period" - | "tracking_categories" - | "tracking_categories,account" - | "tracking_categories,account,accounting_period" - | "tracking_categories,account,company" - | "tracking_categories,account,company,accounting_period" - | "tracking_categories,accounting_period" - | "tracking_categories,company" - | "tracking_categories,company,accounting_period" - | "tracking_categories,contact" - | "tracking_categories,contact,account" - | "tracking_categories,contact,account,accounting_period" - | "tracking_categories,contact,account,company" - | "tracking_categories,contact,account,company,accounting_period" - | "tracking_categories,contact,accounting_period" - | "tracking_categories,contact,company" - | "tracking_categories,contact,company,accounting_period"; -} diff --git a/src/serialization/resources/accounting/resources/transactions/types/TransactionsRetrieveRequestExpand.ts b/src/serialization/resources/accounting/resources/transactions/types/TransactionsRetrieveRequestExpand.ts deleted file mode 100644 index f5aac3ea8..000000000 --- a/src/serialization/resources/accounting/resources/transactions/types/TransactionsRetrieveRequestExpand.ts +++ /dev/null @@ -1,141 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; - -export const TransactionsRetrieveRequestExpand: core.serialization.Schema< - serializers.accounting.TransactionsRetrieveRequestExpand.Raw, - Merge.accounting.TransactionsRetrieveRequestExpand -> = core.serialization.enum_([ - "account", - "account,accounting_period", - "account,company", - "account,company,accounting_period", - "accounting_period", - "company", - "company,accounting_period", - "contact", - "contact,account", - "contact,account,accounting_period", - "contact,account,company", - "contact,account,company,accounting_period", - "contact,accounting_period", - "contact,company", - "contact,company,accounting_period", - "line_items", - "line_items,account", - "line_items,account,accounting_period", - "line_items,account,company", - "line_items,account,company,accounting_period", - "line_items,accounting_period", - "line_items,company", - "line_items,company,accounting_period", - "line_items,contact", - "line_items,contact,account", - "line_items,contact,account,accounting_period", - "line_items,contact,account,company", - "line_items,contact,account,company,accounting_period", - "line_items,contact,accounting_period", - "line_items,contact,company", - "line_items,contact,company,accounting_period", - "line_items,tracking_categories", - "line_items,tracking_categories,account", - "line_items,tracking_categories,account,accounting_period", - "line_items,tracking_categories,account,company", - "line_items,tracking_categories,account,company,accounting_period", - "line_items,tracking_categories,accounting_period", - "line_items,tracking_categories,company", - "line_items,tracking_categories,company,accounting_period", - "line_items,tracking_categories,contact", - "line_items,tracking_categories,contact,account", - "line_items,tracking_categories,contact,account,accounting_period", - "line_items,tracking_categories,contact,account,company", - "line_items,tracking_categories,contact,account,company,accounting_period", - "line_items,tracking_categories,contact,accounting_period", - "line_items,tracking_categories,contact,company", - "line_items,tracking_categories,contact,company,accounting_period", - "tracking_categories", - "tracking_categories,account", - "tracking_categories,account,accounting_period", - "tracking_categories,account,company", - "tracking_categories,account,company,accounting_period", - "tracking_categories,accounting_period", - "tracking_categories,company", - "tracking_categories,company,accounting_period", - "tracking_categories,contact", - "tracking_categories,contact,account", - "tracking_categories,contact,account,accounting_period", - "tracking_categories,contact,account,company", - "tracking_categories,contact,account,company,accounting_period", - "tracking_categories,contact,accounting_period", - "tracking_categories,contact,company", - "tracking_categories,contact,company,accounting_period", -]); - -export declare namespace TransactionsRetrieveRequestExpand { - export type Raw = - | "account" - | "account,accounting_period" - | "account,company" - | "account,company,accounting_period" - | "accounting_period" - | "company" - | "company,accounting_period" - | "contact" - | "contact,account" - | "contact,account,accounting_period" - | "contact,account,company" - | "contact,account,company,accounting_period" - | "contact,accounting_period" - | "contact,company" - | "contact,company,accounting_period" - | "line_items" - | "line_items,account" - | "line_items,account,accounting_period" - | "line_items,account,company" - | "line_items,account,company,accounting_period" - | "line_items,accounting_period" - | "line_items,company" - | "line_items,company,accounting_period" - | "line_items,contact" - | "line_items,contact,account" - | "line_items,contact,account,accounting_period" - | "line_items,contact,account,company" - | "line_items,contact,account,company,accounting_period" - | "line_items,contact,accounting_period" - | "line_items,contact,company" - | "line_items,contact,company,accounting_period" - | "line_items,tracking_categories" - | "line_items,tracking_categories,account" - | "line_items,tracking_categories,account,accounting_period" - | "line_items,tracking_categories,account,company" - | "line_items,tracking_categories,account,company,accounting_period" - | "line_items,tracking_categories,accounting_period" - | "line_items,tracking_categories,company" - | "line_items,tracking_categories,company,accounting_period" - | "line_items,tracking_categories,contact" - | "line_items,tracking_categories,contact,account" - | "line_items,tracking_categories,contact,account,accounting_period" - | "line_items,tracking_categories,contact,account,company" - | "line_items,tracking_categories,contact,account,company,accounting_period" - | "line_items,tracking_categories,contact,accounting_period" - | "line_items,tracking_categories,contact,company" - | "line_items,tracking_categories,contact,company,accounting_period" - | "tracking_categories" - | "tracking_categories,account" - | "tracking_categories,account,accounting_period" - | "tracking_categories,account,company" - | "tracking_categories,account,company,accounting_period" - | "tracking_categories,accounting_period" - | "tracking_categories,company" - | "tracking_categories,company,accounting_period" - | "tracking_categories,contact" - | "tracking_categories,contact,account" - | "tracking_categories,contact,account,accounting_period" - | "tracking_categories,contact,account,company" - | "tracking_categories,contact,account,company,accounting_period" - | "tracking_categories,contact,accounting_period" - | "tracking_categories,contact,company" - | "tracking_categories,contact,company,accounting_period"; -} diff --git a/src/serialization/resources/accounting/resources/transactions/types/index.ts b/src/serialization/resources/accounting/resources/transactions/types/index.ts deleted file mode 100644 index d40b559e9..000000000 --- a/src/serialization/resources/accounting/resources/transactions/types/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./TransactionsListRequestExpand"; -export * from "./TransactionsRetrieveRequestExpand"; diff --git a/src/serialization/resources/accounting/resources/vendorCredits/client/index.ts b/src/serialization/resources/accounting/resources/vendorCredits/client/index.ts deleted file mode 100644 index 415726b7f..000000000 --- a/src/serialization/resources/accounting/resources/vendorCredits/client/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./requests"; diff --git a/src/serialization/resources/accounting/resources/vendorCredits/client/requests/VendorCreditEndpointRequest.ts b/src/serialization/resources/accounting/resources/vendorCredits/client/requests/VendorCreditEndpointRequest.ts deleted file mode 100644 index 3f72a5ccc..000000000 --- a/src/serialization/resources/accounting/resources/vendorCredits/client/requests/VendorCreditEndpointRequest.ts +++ /dev/null @@ -1,19 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../../api/index"; -import * as core from "../../../../../../../core"; -import type * as serializers from "../../../../../../index"; -import { VendorCreditRequest } from "../../../../types/VendorCreditRequest"; - -export const VendorCreditEndpointRequest: core.serialization.Schema< - serializers.accounting.VendorCreditEndpointRequest.Raw, - Omit -> = core.serialization.object({ - model: VendorCreditRequest, -}); - -export declare namespace VendorCreditEndpointRequest { - export interface Raw { - model: VendorCreditRequest.Raw; - } -} diff --git a/src/serialization/resources/accounting/resources/vendorCredits/client/requests/index.ts b/src/serialization/resources/accounting/resources/vendorCredits/client/requests/index.ts deleted file mode 100644 index be42ee1ac..000000000 --- a/src/serialization/resources/accounting/resources/vendorCredits/client/requests/index.ts +++ /dev/null @@ -1 +0,0 @@ -export { VendorCreditEndpointRequest } from "./VendorCreditEndpointRequest"; diff --git a/src/serialization/resources/accounting/resources/vendorCredits/index.ts b/src/serialization/resources/accounting/resources/vendorCredits/index.ts deleted file mode 100644 index d2ec2302c..000000000 --- a/src/serialization/resources/accounting/resources/vendorCredits/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./client"; -export * from "./types"; diff --git a/src/serialization/resources/accounting/resources/vendorCredits/types/VendorCreditsListRequestExpand.ts b/src/serialization/resources/accounting/resources/vendorCredits/types/VendorCreditsListRequestExpand.ts deleted file mode 100644 index 8764857c7..000000000 --- a/src/serialization/resources/accounting/resources/vendorCredits/types/VendorCreditsListRequestExpand.ts +++ /dev/null @@ -1,77 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; - -export const VendorCreditsListRequestExpand: core.serialization.Schema< - serializers.accounting.VendorCreditsListRequestExpand.Raw, - Merge.accounting.VendorCreditsListRequestExpand -> = core.serialization.enum_([ - "accounting_period", - "company", - "company,accounting_period", - "lines", - "lines,accounting_period", - "lines,company", - "lines,company,accounting_period", - "lines,tracking_categories", - "lines,tracking_categories,accounting_period", - "lines,tracking_categories,company", - "lines,tracking_categories,company,accounting_period", - "lines,tracking_categories,vendor", - "lines,tracking_categories,vendor,accounting_period", - "lines,tracking_categories,vendor,company", - "lines,tracking_categories,vendor,company,accounting_period", - "lines,vendor", - "lines,vendor,accounting_period", - "lines,vendor,company", - "lines,vendor,company,accounting_period", - "tracking_categories", - "tracking_categories,accounting_period", - "tracking_categories,company", - "tracking_categories,company,accounting_period", - "tracking_categories,vendor", - "tracking_categories,vendor,accounting_period", - "tracking_categories,vendor,company", - "tracking_categories,vendor,company,accounting_period", - "vendor", - "vendor,accounting_period", - "vendor,company", - "vendor,company,accounting_period", -]); - -export declare namespace VendorCreditsListRequestExpand { - export type Raw = - | "accounting_period" - | "company" - | "company,accounting_period" - | "lines" - | "lines,accounting_period" - | "lines,company" - | "lines,company,accounting_period" - | "lines,tracking_categories" - | "lines,tracking_categories,accounting_period" - | "lines,tracking_categories,company" - | "lines,tracking_categories,company,accounting_period" - | "lines,tracking_categories,vendor" - | "lines,tracking_categories,vendor,accounting_period" - | "lines,tracking_categories,vendor,company" - | "lines,tracking_categories,vendor,company,accounting_period" - | "lines,vendor" - | "lines,vendor,accounting_period" - | "lines,vendor,company" - | "lines,vendor,company,accounting_period" - | "tracking_categories" - | "tracking_categories,accounting_period" - | "tracking_categories,company" - | "tracking_categories,company,accounting_period" - | "tracking_categories,vendor" - | "tracking_categories,vendor,accounting_period" - | "tracking_categories,vendor,company" - | "tracking_categories,vendor,company,accounting_period" - | "vendor" - | "vendor,accounting_period" - | "vendor,company" - | "vendor,company,accounting_period"; -} diff --git a/src/serialization/resources/accounting/resources/vendorCredits/types/VendorCreditsRetrieveRequestExpand.ts b/src/serialization/resources/accounting/resources/vendorCredits/types/VendorCreditsRetrieveRequestExpand.ts deleted file mode 100644 index 569108e3f..000000000 --- a/src/serialization/resources/accounting/resources/vendorCredits/types/VendorCreditsRetrieveRequestExpand.ts +++ /dev/null @@ -1,77 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; - -export const VendorCreditsRetrieveRequestExpand: core.serialization.Schema< - serializers.accounting.VendorCreditsRetrieveRequestExpand.Raw, - Merge.accounting.VendorCreditsRetrieveRequestExpand -> = core.serialization.enum_([ - "accounting_period", - "company", - "company,accounting_period", - "lines", - "lines,accounting_period", - "lines,company", - "lines,company,accounting_period", - "lines,tracking_categories", - "lines,tracking_categories,accounting_period", - "lines,tracking_categories,company", - "lines,tracking_categories,company,accounting_period", - "lines,tracking_categories,vendor", - "lines,tracking_categories,vendor,accounting_period", - "lines,tracking_categories,vendor,company", - "lines,tracking_categories,vendor,company,accounting_period", - "lines,vendor", - "lines,vendor,accounting_period", - "lines,vendor,company", - "lines,vendor,company,accounting_period", - "tracking_categories", - "tracking_categories,accounting_period", - "tracking_categories,company", - "tracking_categories,company,accounting_period", - "tracking_categories,vendor", - "tracking_categories,vendor,accounting_period", - "tracking_categories,vendor,company", - "tracking_categories,vendor,company,accounting_period", - "vendor", - "vendor,accounting_period", - "vendor,company", - "vendor,company,accounting_period", -]); - -export declare namespace VendorCreditsRetrieveRequestExpand { - export type Raw = - | "accounting_period" - | "company" - | "company,accounting_period" - | "lines" - | "lines,accounting_period" - | "lines,company" - | "lines,company,accounting_period" - | "lines,tracking_categories" - | "lines,tracking_categories,accounting_period" - | "lines,tracking_categories,company" - | "lines,tracking_categories,company,accounting_period" - | "lines,tracking_categories,vendor" - | "lines,tracking_categories,vendor,accounting_period" - | "lines,tracking_categories,vendor,company" - | "lines,tracking_categories,vendor,company,accounting_period" - | "lines,vendor" - | "lines,vendor,accounting_period" - | "lines,vendor,company" - | "lines,vendor,company,accounting_period" - | "tracking_categories" - | "tracking_categories,accounting_period" - | "tracking_categories,company" - | "tracking_categories,company,accounting_period" - | "tracking_categories,vendor" - | "tracking_categories,vendor,accounting_period" - | "tracking_categories,vendor,company" - | "tracking_categories,vendor,company,accounting_period" - | "vendor" - | "vendor,accounting_period" - | "vendor,company" - | "vendor,company,accounting_period"; -} diff --git a/src/serialization/resources/accounting/resources/vendorCredits/types/index.ts b/src/serialization/resources/accounting/resources/vendorCredits/types/index.ts deleted file mode 100644 index 23d33b551..000000000 --- a/src/serialization/resources/accounting/resources/vendorCredits/types/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./VendorCreditsListRequestExpand"; -export * from "./VendorCreditsRetrieveRequestExpand"; diff --git a/src/serialization/resources/accounting/resources/webhookReceivers/client/index.ts b/src/serialization/resources/accounting/resources/webhookReceivers/client/index.ts deleted file mode 100644 index 257d03e90..000000000 --- a/src/serialization/resources/accounting/resources/webhookReceivers/client/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * as list from "./list"; -export * from "./requests"; diff --git a/src/serialization/resources/accounting/resources/webhookReceivers/client/list.ts b/src/serialization/resources/accounting/resources/webhookReceivers/client/list.ts deleted file mode 100644 index 561bf0462..000000000 --- a/src/serialization/resources/accounting/resources/webhookReceivers/client/list.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../api/index"; -import * as core from "../../../../../../core"; -import type * as serializers from "../../../../../index"; -import { WebhookReceiver } from "../../../types/WebhookReceiver"; - -export const Response: core.serialization.Schema< - serializers.accounting.webhookReceivers.list.Response.Raw, - Merge.accounting.WebhookReceiver[] -> = core.serialization.list(WebhookReceiver); - -export declare namespace Response { - export type Raw = WebhookReceiver.Raw[]; -} diff --git a/src/serialization/resources/accounting/resources/webhookReceivers/client/requests/WebhookReceiverRequest.ts b/src/serialization/resources/accounting/resources/webhookReceivers/client/requests/WebhookReceiverRequest.ts deleted file mode 100644 index 9ae47cf94..000000000 --- a/src/serialization/resources/accounting/resources/webhookReceivers/client/requests/WebhookReceiverRequest.ts +++ /dev/null @@ -1,22 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../../../../api/index"; -import * as core from "../../../../../../../core"; -import type * as serializers from "../../../../../../index"; - -export const WebhookReceiverRequest: core.serialization.Schema< - serializers.accounting.WebhookReceiverRequest.Raw, - Merge.accounting.WebhookReceiverRequest -> = core.serialization.object({ - event: core.serialization.string(), - isActive: core.serialization.property("is_active", core.serialization.boolean()), - key: core.serialization.string().optional(), -}); - -export declare namespace WebhookReceiverRequest { - export interface Raw { - event: string; - is_active: boolean; - key?: string | null; - } -} diff --git a/src/serialization/resources/accounting/resources/webhookReceivers/client/requests/index.ts b/src/serialization/resources/accounting/resources/webhookReceivers/client/requests/index.ts deleted file mode 100644 index 29f534250..000000000 --- a/src/serialization/resources/accounting/resources/webhookReceivers/client/requests/index.ts +++ /dev/null @@ -1 +0,0 @@ -export { WebhookReceiverRequest } from "./WebhookReceiverRequest"; diff --git a/src/serialization/resources/accounting/resources/webhookReceivers/index.ts b/src/serialization/resources/accounting/resources/webhookReceivers/index.ts deleted file mode 100644 index 5ec76921e..000000000 --- a/src/serialization/resources/accounting/resources/webhookReceivers/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./client"; diff --git a/src/serialization/resources/accounting/types/Account.ts b/src/serialization/resources/accounting/types/Account.ts deleted file mode 100644 index 774c8223b..000000000 --- a/src/serialization/resources/accounting/types/Account.ts +++ /dev/null @@ -1,58 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { AccountAccountType } from "./AccountAccountType"; -import { AccountClassification } from "./AccountClassification"; -import { AccountCurrency } from "./AccountCurrency"; -import { AccountStatus } from "./AccountStatus"; -import { RemoteData } from "./RemoteData"; - -export const Account: core.serialization.ObjectSchema = - core.serialization.object({ - id: core.serialization.string().optional(), - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - createdAt: core.serialization.property("created_at", core.serialization.date().optional()), - modifiedAt: core.serialization.property("modified_at", core.serialization.date().optional()), - name: core.serialization.string().optional(), - description: core.serialization.string().optional(), - classification: AccountClassification.optional(), - type: core.serialization.string().optional(), - accountType: core.serialization.property("account_type", AccountAccountType.optional()), - status: AccountStatus.optional(), - currentBalance: core.serialization.property("current_balance", core.serialization.number().optional()), - currency: AccountCurrency.optional(), - accountNumber: core.serialization.property("account_number", core.serialization.string().optional()), - parentAccount: core.serialization.property("parent_account", core.serialization.string().optional()), - company: core.serialization.string().optional(), - remoteWasDeleted: core.serialization.property("remote_was_deleted", core.serialization.boolean().optional()), - fieldMappings: core.serialization.property( - "field_mappings", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - remoteData: core.serialization.property("remote_data", core.serialization.list(RemoteData).optional()), - }); - -export declare namespace Account { - export interface Raw { - id?: string | null; - remote_id?: string | null; - created_at?: string | null; - modified_at?: string | null; - name?: string | null; - description?: string | null; - classification?: AccountClassification.Raw | null; - type?: string | null; - account_type?: AccountAccountType.Raw | null; - status?: AccountStatus.Raw | null; - current_balance?: number | null; - currency?: AccountCurrency.Raw | null; - account_number?: string | null; - parent_account?: string | null; - company?: string | null; - remote_was_deleted?: boolean | null; - field_mappings?: Record | null; - remote_data?: RemoteData.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/AccountAccountType.ts b/src/serialization/resources/accounting/types/AccountAccountType.ts deleted file mode 100644 index 2af033ecb..000000000 --- a/src/serialization/resources/accounting/types/AccountAccountType.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { AccountAccountTypeEnum } from "./AccountAccountTypeEnum"; - -export const AccountAccountType: core.serialization.Schema< - serializers.accounting.AccountAccountType.Raw, - Merge.accounting.AccountAccountType -> = core.serialization.undiscriminatedUnion([AccountAccountTypeEnum, core.serialization.string()]); - -export declare namespace AccountAccountType { - export type Raw = AccountAccountTypeEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/AccountAccountTypeEnum.ts b/src/serialization/resources/accounting/types/AccountAccountTypeEnum.ts deleted file mode 100644 index 61141e478..000000000 --- a/src/serialization/resources/accounting/types/AccountAccountTypeEnum.ts +++ /dev/null @@ -1,41 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const AccountAccountTypeEnum: core.serialization.Schema< - serializers.accounting.AccountAccountTypeEnum.Raw, - Merge.accounting.AccountAccountTypeEnum -> = core.serialization.enum_([ - "BANK", - "CREDIT_CARD", - "ACCOUNTS_PAYABLE", - "ACCOUNTS_RECEIVABLE", - "FIXED_ASSET", - "OTHER_ASSET", - "OTHER_CURRENT_ASSET", - "OTHER_EXPENSE", - "OTHER_INCOME", - "COST_OF_GOODS_SOLD", - "OTHER_CURRENT_LIABILITY", - "LONG_TERM_LIABILITY", - "NON_POSTING", -]); - -export declare namespace AccountAccountTypeEnum { - export type Raw = - | "BANK" - | "CREDIT_CARD" - | "ACCOUNTS_PAYABLE" - | "ACCOUNTS_RECEIVABLE" - | "FIXED_ASSET" - | "OTHER_ASSET" - | "OTHER_CURRENT_ASSET" - | "OTHER_EXPENSE" - | "OTHER_INCOME" - | "COST_OF_GOODS_SOLD" - | "OTHER_CURRENT_LIABILITY" - | "LONG_TERM_LIABILITY" - | "NON_POSTING"; -} diff --git a/src/serialization/resources/accounting/types/AccountClassification.ts b/src/serialization/resources/accounting/types/AccountClassification.ts deleted file mode 100644 index 1600bc1f3..000000000 --- a/src/serialization/resources/accounting/types/AccountClassification.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { ClassificationEnum } from "./ClassificationEnum"; - -export const AccountClassification: core.serialization.Schema< - serializers.accounting.AccountClassification.Raw, - Merge.accounting.AccountClassification -> = core.serialization.undiscriminatedUnion([ClassificationEnum, core.serialization.string()]); - -export declare namespace AccountClassification { - export type Raw = ClassificationEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/AccountCurrency.ts b/src/serialization/resources/accounting/types/AccountCurrency.ts deleted file mode 100644 index dd9ddecea..000000000 --- a/src/serialization/resources/accounting/types/AccountCurrency.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TransactionCurrencyEnum } from "./TransactionCurrencyEnum"; - -export const AccountCurrency: core.serialization.Schema< - serializers.accounting.AccountCurrency.Raw, - Merge.accounting.AccountCurrency -> = core.serialization.undiscriminatedUnion([TransactionCurrencyEnum, core.serialization.string()]); - -export declare namespace AccountCurrency { - export type Raw = TransactionCurrencyEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/AccountDetails.ts b/src/serialization/resources/accounting/types/AccountDetails.ts deleted file mode 100644 index e28389812..000000000 --- a/src/serialization/resources/accounting/types/AccountDetails.ts +++ /dev/null @@ -1,44 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { AccountDetailsCategory } from "./AccountDetailsCategory"; - -export const AccountDetails: core.serialization.ObjectSchema< - serializers.accounting.AccountDetails.Raw, - Merge.accounting.AccountDetails -> = core.serialization.object({ - id: core.serialization.string().optional(), - integration: core.serialization.string().optional(), - integrationSlug: core.serialization.property("integration_slug", core.serialization.string().optional()), - category: AccountDetailsCategory.optional(), - endUserOriginId: core.serialization.property("end_user_origin_id", core.serialization.string().optional()), - endUserOrganizationName: core.serialization.property( - "end_user_organization_name", - core.serialization.string().optional(), - ), - endUserEmailAddress: core.serialization.property("end_user_email_address", core.serialization.string().optional()), - status: core.serialization.string().optional(), - webhookListenerUrl: core.serialization.property("webhook_listener_url", core.serialization.string().optional()), - isDuplicate: core.serialization.property("is_duplicate", core.serialization.boolean().optional()), - accountType: core.serialization.property("account_type", core.serialization.string().optional()), - completedAt: core.serialization.property("completed_at", core.serialization.date().optional()), -}); - -export declare namespace AccountDetails { - export interface Raw { - id?: string | null; - integration?: string | null; - integration_slug?: string | null; - category?: AccountDetailsCategory.Raw | null; - end_user_origin_id?: string | null; - end_user_organization_name?: string | null; - end_user_email_address?: string | null; - status?: string | null; - webhook_listener_url?: string | null; - is_duplicate?: boolean | null; - account_type?: string | null; - completed_at?: string | null; - } -} diff --git a/src/serialization/resources/accounting/types/AccountDetailsAndActions.ts b/src/serialization/resources/accounting/types/AccountDetailsAndActions.ts deleted file mode 100644 index f43b93a54..000000000 --- a/src/serialization/resources/accounting/types/AccountDetailsAndActions.ts +++ /dev/null @@ -1,50 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { AccountDetailsAndActionsCategory } from "./AccountDetailsAndActionsCategory"; -import { AccountDetailsAndActionsIntegration } from "./AccountDetailsAndActionsIntegration"; -import { AccountDetailsAndActionsStatus } from "./AccountDetailsAndActionsStatus"; - -export const AccountDetailsAndActions: core.serialization.ObjectSchema< - serializers.accounting.AccountDetailsAndActions.Raw, - Merge.accounting.AccountDetailsAndActions -> = core.serialization.object({ - id: core.serialization.string(), - category: AccountDetailsAndActionsCategory.optional(), - status: AccountDetailsAndActionsStatus, - statusDetail: core.serialization.property("status_detail", core.serialization.string().optional()), - endUserOriginId: core.serialization.property("end_user_origin_id", core.serialization.string().optional()), - endUserOrganizationName: core.serialization.property("end_user_organization_name", core.serialization.string()), - endUserEmailAddress: core.serialization.property("end_user_email_address", core.serialization.string()), - subdomain: core.serialization.string().optional(), - webhookListenerUrl: core.serialization.property("webhook_listener_url", core.serialization.string()), - isDuplicate: core.serialization.property("is_duplicate", core.serialization.boolean().optional()), - integration: AccountDetailsAndActionsIntegration.optional(), - accountType: core.serialization.property("account_type", core.serialization.string()), - completedAt: core.serialization.property("completed_at", core.serialization.date()), - integrationSpecificFields: core.serialization.property( - "integration_specific_fields", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), -}); - -export declare namespace AccountDetailsAndActions { - export interface Raw { - id: string; - category?: AccountDetailsAndActionsCategory.Raw | null; - status: AccountDetailsAndActionsStatus.Raw; - status_detail?: string | null; - end_user_origin_id?: string | null; - end_user_organization_name: string; - end_user_email_address: string; - subdomain?: string | null; - webhook_listener_url: string; - is_duplicate?: boolean | null; - integration?: AccountDetailsAndActionsIntegration.Raw | null; - account_type: string; - completed_at: string; - integration_specific_fields?: Record | null; - } -} diff --git a/src/serialization/resources/accounting/types/AccountDetailsAndActionsCategory.ts b/src/serialization/resources/accounting/types/AccountDetailsAndActionsCategory.ts deleted file mode 100644 index 5624a0dd9..000000000 --- a/src/serialization/resources/accounting/types/AccountDetailsAndActionsCategory.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CategoryEnum } from "./CategoryEnum"; - -export const AccountDetailsAndActionsCategory: core.serialization.Schema< - serializers.accounting.AccountDetailsAndActionsCategory.Raw, - Merge.accounting.AccountDetailsAndActionsCategory -> = core.serialization.undiscriminatedUnion([CategoryEnum, core.serialization.string()]); - -export declare namespace AccountDetailsAndActionsCategory { - export type Raw = CategoryEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/AccountDetailsAndActionsIntegration.ts b/src/serialization/resources/accounting/types/AccountDetailsAndActionsIntegration.ts deleted file mode 100644 index 62aa746c9..000000000 --- a/src/serialization/resources/accounting/types/AccountDetailsAndActionsIntegration.ts +++ /dev/null @@ -1,37 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CategoriesEnum } from "./CategoriesEnum"; -import { ModelOperation } from "./ModelOperation"; - -export const AccountDetailsAndActionsIntegration: core.serialization.ObjectSchema< - serializers.accounting.AccountDetailsAndActionsIntegration.Raw, - Merge.accounting.AccountDetailsAndActionsIntegration -> = core.serialization.object({ - name: core.serialization.string(), - categories: core.serialization.list(CategoriesEnum), - image: core.serialization.string().optional(), - squareImage: core.serialization.property("square_image", core.serialization.string().optional()), - color: core.serialization.string(), - slug: core.serialization.string(), - passthroughAvailable: core.serialization.property("passthrough_available", core.serialization.boolean()), - availableModelOperations: core.serialization.property( - "available_model_operations", - core.serialization.list(ModelOperation).optional(), - ), -}); - -export declare namespace AccountDetailsAndActionsIntegration { - export interface Raw { - name: string; - categories: CategoriesEnum.Raw[]; - image?: string | null; - square_image?: string | null; - color: string; - slug: string; - passthrough_available: boolean; - available_model_operations?: ModelOperation.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/AccountDetailsAndActionsStatus.ts b/src/serialization/resources/accounting/types/AccountDetailsAndActionsStatus.ts deleted file mode 100644 index 20ddc5bf9..000000000 --- a/src/serialization/resources/accounting/types/AccountDetailsAndActionsStatus.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { AccountDetailsAndActionsStatusEnum } from "./AccountDetailsAndActionsStatusEnum"; - -export const AccountDetailsAndActionsStatus: core.serialization.Schema< - serializers.accounting.AccountDetailsAndActionsStatus.Raw, - Merge.accounting.AccountDetailsAndActionsStatus -> = core.serialization.undiscriminatedUnion([AccountDetailsAndActionsStatusEnum, core.serialization.string()]); - -export declare namespace AccountDetailsAndActionsStatus { - export type Raw = AccountDetailsAndActionsStatusEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/AccountDetailsAndActionsStatusEnum.ts b/src/serialization/resources/accounting/types/AccountDetailsAndActionsStatusEnum.ts deleted file mode 100644 index bccaffc22..000000000 --- a/src/serialization/resources/accounting/types/AccountDetailsAndActionsStatusEnum.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const AccountDetailsAndActionsStatusEnum: core.serialization.Schema< - serializers.accounting.AccountDetailsAndActionsStatusEnum.Raw, - Merge.accounting.AccountDetailsAndActionsStatusEnum -> = core.serialization.enum_(["COMPLETE", "INCOMPLETE", "RELINK_NEEDED", "IDLE"]); - -export declare namespace AccountDetailsAndActionsStatusEnum { - export type Raw = "COMPLETE" | "INCOMPLETE" | "RELINK_NEEDED" | "IDLE"; -} diff --git a/src/serialization/resources/accounting/types/AccountDetailsCategory.ts b/src/serialization/resources/accounting/types/AccountDetailsCategory.ts deleted file mode 100644 index a811f2f0a..000000000 --- a/src/serialization/resources/accounting/types/AccountDetailsCategory.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CategoryEnum } from "./CategoryEnum"; - -export const AccountDetailsCategory: core.serialization.Schema< - serializers.accounting.AccountDetailsCategory.Raw, - Merge.accounting.AccountDetailsCategory -> = core.serialization.undiscriminatedUnion([CategoryEnum, core.serialization.string()]); - -export declare namespace AccountDetailsCategory { - export type Raw = CategoryEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/AccountIntegration.ts b/src/serialization/resources/accounting/types/AccountIntegration.ts deleted file mode 100644 index 6cc560b57..000000000 --- a/src/serialization/resources/accounting/types/AccountIntegration.ts +++ /dev/null @@ -1,46 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CategoriesEnum } from "./CategoriesEnum"; - -export const AccountIntegration: core.serialization.ObjectSchema< - serializers.accounting.AccountIntegration.Raw, - Merge.accounting.AccountIntegration -> = core.serialization.object({ - name: core.serialization.string(), - abbreviatedName: core.serialization.property("abbreviated_name", core.serialization.string().optional()), - categories: core.serialization.list(CategoriesEnum).optional(), - image: core.serialization.string().optional(), - squareImage: core.serialization.property("square_image", core.serialization.string().optional()), - color: core.serialization.string().optional(), - slug: core.serialization.string().optional(), - apiEndpointsToDocumentationUrls: core.serialization.property( - "api_endpoints_to_documentation_urls", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - webhookSetupGuideUrl: core.serialization.property( - "webhook_setup_guide_url", - core.serialization.string().optional(), - ), - categoryBetaStatus: core.serialization.property( - "category_beta_status", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), -}); - -export declare namespace AccountIntegration { - export interface Raw { - name: string; - abbreviated_name?: string | null; - categories?: CategoriesEnum.Raw[] | null; - image?: string | null; - square_image?: string | null; - color?: string | null; - slug?: string | null; - api_endpoints_to_documentation_urls?: Record | null; - webhook_setup_guide_url?: string | null; - category_beta_status?: Record | null; - } -} diff --git a/src/serialization/resources/accounting/types/AccountRequest.ts b/src/serialization/resources/accounting/types/AccountRequest.ts deleted file mode 100644 index 04cca9176..000000000 --- a/src/serialization/resources/accounting/types/AccountRequest.ts +++ /dev/null @@ -1,52 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { AccountRequestAccountType } from "./AccountRequestAccountType"; -import { AccountRequestClassification } from "./AccountRequestClassification"; -import { AccountRequestCurrency } from "./AccountRequestCurrency"; -import { AccountRequestStatus } from "./AccountRequestStatus"; - -export const AccountRequest: core.serialization.ObjectSchema< - serializers.accounting.AccountRequest.Raw, - Merge.accounting.AccountRequest -> = core.serialization.object({ - name: core.serialization.string().optional(), - description: core.serialization.string().optional(), - classification: AccountRequestClassification.optional(), - type: core.serialization.string().optional(), - accountType: core.serialization.property("account_type", AccountRequestAccountType.optional()), - status: AccountRequestStatus.optional(), - currentBalance: core.serialization.property("current_balance", core.serialization.number().optional()), - currency: AccountRequestCurrency.optional(), - accountNumber: core.serialization.property("account_number", core.serialization.string().optional()), - parentAccount: core.serialization.property("parent_account", core.serialization.string().optional()), - company: core.serialization.string().optional(), - integrationParams: core.serialization.property( - "integration_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - linkedAccountParams: core.serialization.property( - "linked_account_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), -}); - -export declare namespace AccountRequest { - export interface Raw { - name?: string | null; - description?: string | null; - classification?: AccountRequestClassification.Raw | null; - type?: string | null; - account_type?: AccountRequestAccountType.Raw | null; - status?: AccountRequestStatus.Raw | null; - current_balance?: number | null; - currency?: AccountRequestCurrency.Raw | null; - account_number?: string | null; - parent_account?: string | null; - company?: string | null; - integration_params?: Record | null; - linked_account_params?: Record | null; - } -} diff --git a/src/serialization/resources/accounting/types/AccountRequestAccountType.ts b/src/serialization/resources/accounting/types/AccountRequestAccountType.ts deleted file mode 100644 index f12d43d43..000000000 --- a/src/serialization/resources/accounting/types/AccountRequestAccountType.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { AccountAccountTypeEnum } from "./AccountAccountTypeEnum"; - -export const AccountRequestAccountType: core.serialization.Schema< - serializers.accounting.AccountRequestAccountType.Raw, - Merge.accounting.AccountRequestAccountType -> = core.serialization.undiscriminatedUnion([AccountAccountTypeEnum, core.serialization.string()]); - -export declare namespace AccountRequestAccountType { - export type Raw = AccountAccountTypeEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/AccountRequestClassification.ts b/src/serialization/resources/accounting/types/AccountRequestClassification.ts deleted file mode 100644 index a9e08aaf1..000000000 --- a/src/serialization/resources/accounting/types/AccountRequestClassification.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { ClassificationEnum } from "./ClassificationEnum"; - -export const AccountRequestClassification: core.serialization.Schema< - serializers.accounting.AccountRequestClassification.Raw, - Merge.accounting.AccountRequestClassification -> = core.serialization.undiscriminatedUnion([ClassificationEnum, core.serialization.string()]); - -export declare namespace AccountRequestClassification { - export type Raw = ClassificationEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/AccountRequestCurrency.ts b/src/serialization/resources/accounting/types/AccountRequestCurrency.ts deleted file mode 100644 index caeffb978..000000000 --- a/src/serialization/resources/accounting/types/AccountRequestCurrency.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TransactionCurrencyEnum } from "./TransactionCurrencyEnum"; - -export const AccountRequestCurrency: core.serialization.Schema< - serializers.accounting.AccountRequestCurrency.Raw, - Merge.accounting.AccountRequestCurrency -> = core.serialization.undiscriminatedUnion([TransactionCurrencyEnum, core.serialization.string()]); - -export declare namespace AccountRequestCurrency { - export type Raw = TransactionCurrencyEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/AccountRequestStatus.ts b/src/serialization/resources/accounting/types/AccountRequestStatus.ts deleted file mode 100644 index 2f21a7eff..000000000 --- a/src/serialization/resources/accounting/types/AccountRequestStatus.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { AccountStatusEnum } from "./AccountStatusEnum"; - -export const AccountRequestStatus: core.serialization.Schema< - serializers.accounting.AccountRequestStatus.Raw, - Merge.accounting.AccountRequestStatus -> = core.serialization.undiscriminatedUnion([AccountStatusEnum, core.serialization.string()]); - -export declare namespace AccountRequestStatus { - export type Raw = AccountStatusEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/AccountResponse.ts b/src/serialization/resources/accounting/types/AccountResponse.ts deleted file mode 100644 index 8e1e99673..000000000 --- a/src/serialization/resources/accounting/types/AccountResponse.ts +++ /dev/null @@ -1,28 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Account } from "./Account"; -import { DebugModeLog } from "./DebugModeLog"; -import { ErrorValidationProblem } from "./ErrorValidationProblem"; -import { WarningValidationProblem } from "./WarningValidationProblem"; - -export const AccountResponse: core.serialization.ObjectSchema< - serializers.accounting.AccountResponse.Raw, - Merge.accounting.AccountResponse -> = core.serialization.object({ - model: Account, - warnings: core.serialization.list(WarningValidationProblem), - errors: core.serialization.list(ErrorValidationProblem), - logs: core.serialization.list(DebugModeLog).optional(), -}); - -export declare namespace AccountResponse { - export interface Raw { - model: Account.Raw; - warnings: WarningValidationProblem.Raw[]; - errors: ErrorValidationProblem.Raw[]; - logs?: DebugModeLog.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/AccountStatus.ts b/src/serialization/resources/accounting/types/AccountStatus.ts deleted file mode 100644 index f192f5c82..000000000 --- a/src/serialization/resources/accounting/types/AccountStatus.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { AccountStatusEnum } from "./AccountStatusEnum"; - -export const AccountStatus: core.serialization.Schema< - serializers.accounting.AccountStatus.Raw, - Merge.accounting.AccountStatus -> = core.serialization.undiscriminatedUnion([AccountStatusEnum, core.serialization.string()]); - -export declare namespace AccountStatus { - export type Raw = AccountStatusEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/AccountStatusEnum.ts b/src/serialization/resources/accounting/types/AccountStatusEnum.ts deleted file mode 100644 index 6b646b5a4..000000000 --- a/src/serialization/resources/accounting/types/AccountStatusEnum.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const AccountStatusEnum: core.serialization.Schema< - serializers.accounting.AccountStatusEnum.Raw, - Merge.accounting.AccountStatusEnum -> = core.serialization.enum_(["ACTIVE", "PENDING", "INACTIVE"]); - -export declare namespace AccountStatusEnum { - export type Raw = "ACTIVE" | "PENDING" | "INACTIVE"; -} diff --git a/src/serialization/resources/accounting/types/AccountToken.ts b/src/serialization/resources/accounting/types/AccountToken.ts deleted file mode 100644 index f144d2a03..000000000 --- a/src/serialization/resources/accounting/types/AccountToken.ts +++ /dev/null @@ -1,23 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { AccountIntegration } from "./AccountIntegration"; - -export const AccountToken: core.serialization.ObjectSchema< - serializers.accounting.AccountToken.Raw, - Merge.accounting.AccountToken -> = core.serialization.object({ - accountToken: core.serialization.property("account_token", core.serialization.string()), - integration: AccountIntegration, - id: core.serialization.string(), -}); - -export declare namespace AccountToken { - export interface Raw { - account_token: string; - integration: AccountIntegration.Raw; - id: string; - } -} diff --git a/src/serialization/resources/accounting/types/AccountingAttachment.ts b/src/serialization/resources/accounting/types/AccountingAttachment.ts deleted file mode 100644 index 127150af4..000000000 --- a/src/serialization/resources/accounting/types/AccountingAttachment.ts +++ /dev/null @@ -1,40 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { RemoteData } from "./RemoteData"; - -export const AccountingAttachment: core.serialization.ObjectSchema< - serializers.accounting.AccountingAttachment.Raw, - Merge.accounting.AccountingAttachment -> = core.serialization.object({ - id: core.serialization.string().optional(), - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - createdAt: core.serialization.property("created_at", core.serialization.date().optional()), - modifiedAt: core.serialization.property("modified_at", core.serialization.date().optional()), - fileName: core.serialization.property("file_name", core.serialization.string().optional()), - fileUrl: core.serialization.property("file_url", core.serialization.string().optional()), - company: core.serialization.string().optional(), - remoteWasDeleted: core.serialization.property("remote_was_deleted", core.serialization.boolean().optional()), - fieldMappings: core.serialization.property( - "field_mappings", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - remoteData: core.serialization.property("remote_data", core.serialization.list(RemoteData).optional()), -}); - -export declare namespace AccountingAttachment { - export interface Raw { - id?: string | null; - remote_id?: string | null; - created_at?: string | null; - modified_at?: string | null; - file_name?: string | null; - file_url?: string | null; - company?: string | null; - remote_was_deleted?: boolean | null; - field_mappings?: Record | null; - remote_data?: RemoteData.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/AccountingAttachmentRequest.ts b/src/serialization/resources/accounting/types/AccountingAttachmentRequest.ts deleted file mode 100644 index 4817ed787..000000000 --- a/src/serialization/resources/accounting/types/AccountingAttachmentRequest.ts +++ /dev/null @@ -1,32 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const AccountingAttachmentRequest: core.serialization.ObjectSchema< - serializers.accounting.AccountingAttachmentRequest.Raw, - Merge.accounting.AccountingAttachmentRequest -> = core.serialization.object({ - fileName: core.serialization.property("file_name", core.serialization.string().optional()), - fileUrl: core.serialization.property("file_url", core.serialization.string().optional()), - company: core.serialization.string().optional(), - integrationParams: core.serialization.property( - "integration_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - linkedAccountParams: core.serialization.property( - "linked_account_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), -}); - -export declare namespace AccountingAttachmentRequest { - export interface Raw { - file_name?: string | null; - file_url?: string | null; - company?: string | null; - integration_params?: Record | null; - linked_account_params?: Record | null; - } -} diff --git a/src/serialization/resources/accounting/types/AccountingAttachmentResponse.ts b/src/serialization/resources/accounting/types/AccountingAttachmentResponse.ts deleted file mode 100644 index a4963b60b..000000000 --- a/src/serialization/resources/accounting/types/AccountingAttachmentResponse.ts +++ /dev/null @@ -1,28 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { AccountingAttachment } from "./AccountingAttachment"; -import { DebugModeLog } from "./DebugModeLog"; -import { ErrorValidationProblem } from "./ErrorValidationProblem"; -import { WarningValidationProblem } from "./WarningValidationProblem"; - -export const AccountingAttachmentResponse: core.serialization.ObjectSchema< - serializers.accounting.AccountingAttachmentResponse.Raw, - Merge.accounting.AccountingAttachmentResponse -> = core.serialization.object({ - model: AccountingAttachment, - warnings: core.serialization.list(WarningValidationProblem), - errors: core.serialization.list(ErrorValidationProblem), - logs: core.serialization.list(DebugModeLog).optional(), -}); - -export declare namespace AccountingAttachmentResponse { - export interface Raw { - model: AccountingAttachment.Raw; - warnings: WarningValidationProblem.Raw[]; - errors: ErrorValidationProblem.Raw[]; - logs?: DebugModeLog.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/AccountingPeriod.ts b/src/serialization/resources/accounting/types/AccountingPeriod.ts deleted file mode 100644 index acd1e9b95..000000000 --- a/src/serialization/resources/accounting/types/AccountingPeriod.ts +++ /dev/null @@ -1,41 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { AccountingPeriodStatus } from "./AccountingPeriodStatus"; -import { RemoteData } from "./RemoteData"; - -export const AccountingPeriod: core.serialization.ObjectSchema< - serializers.accounting.AccountingPeriod.Raw, - Merge.accounting.AccountingPeriod -> = core.serialization.object({ - id: core.serialization.string().optional(), - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - createdAt: core.serialization.property("created_at", core.serialization.date().optional()), - modifiedAt: core.serialization.property("modified_at", core.serialization.date().optional()), - name: core.serialization.string().optional(), - status: AccountingPeriodStatus.optional(), - startDate: core.serialization.property("start_date", core.serialization.date().optional()), - endDate: core.serialization.property("end_date", core.serialization.date().optional()), - fieldMappings: core.serialization.property( - "field_mappings", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - remoteData: core.serialization.property("remote_data", core.serialization.list(RemoteData).optional()), -}); - -export declare namespace AccountingPeriod { - export interface Raw { - id?: string | null; - remote_id?: string | null; - created_at?: string | null; - modified_at?: string | null; - name?: string | null; - status?: AccountingPeriodStatus.Raw | null; - start_date?: string | null; - end_date?: string | null; - field_mappings?: Record | null; - remote_data?: RemoteData.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/AccountingPeriodStatus.ts b/src/serialization/resources/accounting/types/AccountingPeriodStatus.ts deleted file mode 100644 index 61074a1fe..000000000 --- a/src/serialization/resources/accounting/types/AccountingPeriodStatus.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Status895Enum } from "./Status895Enum"; - -export const AccountingPeriodStatus: core.serialization.Schema< - serializers.accounting.AccountingPeriodStatus.Raw, - Merge.accounting.AccountingPeriodStatus -> = core.serialization.undiscriminatedUnion([Status895Enum, core.serialization.string()]); - -export declare namespace AccountingPeriodStatus { - export type Raw = Status895Enum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/AccountingPhoneNumber.ts b/src/serialization/resources/accounting/types/AccountingPhoneNumber.ts deleted file mode 100644 index 77d1416bd..000000000 --- a/src/serialization/resources/accounting/types/AccountingPhoneNumber.ts +++ /dev/null @@ -1,24 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const AccountingPhoneNumber: core.serialization.ObjectSchema< - serializers.accounting.AccountingPhoneNumber.Raw, - Merge.accounting.AccountingPhoneNumber -> = core.serialization.object({ - createdAt: core.serialization.property("created_at", core.serialization.date().optional()), - modifiedAt: core.serialization.property("modified_at", core.serialization.date().optional()), - number: core.serialization.string().optional(), - type: core.serialization.string().optional(), -}); - -export declare namespace AccountingPhoneNumber { - export interface Raw { - created_at?: string | null; - modified_at?: string | null; - number?: string | null; - type?: string | null; - } -} diff --git a/src/serialization/resources/accounting/types/AccountingPhoneNumberRequest.ts b/src/serialization/resources/accounting/types/AccountingPhoneNumberRequest.ts deleted file mode 100644 index 0866b0d17..000000000 --- a/src/serialization/resources/accounting/types/AccountingPhoneNumberRequest.ts +++ /dev/null @@ -1,30 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const AccountingPhoneNumberRequest: core.serialization.ObjectSchema< - serializers.accounting.AccountingPhoneNumberRequest.Raw, - Merge.accounting.AccountingPhoneNumberRequest -> = core.serialization.object({ - number: core.serialization.string().optional(), - type: core.serialization.string().optional(), - integrationParams: core.serialization.property( - "integration_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - linkedAccountParams: core.serialization.property( - "linked_account_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), -}); - -export declare namespace AccountingPhoneNumberRequest { - export interface Raw { - number?: string | null; - type?: string | null; - integration_params?: Record | null; - linked_account_params?: Record | null; - } -} diff --git a/src/serialization/resources/accounting/types/Address.ts b/src/serialization/resources/accounting/types/Address.ts deleted file mode 100644 index 8d78bf681..000000000 --- a/src/serialization/resources/accounting/types/Address.ts +++ /dev/null @@ -1,36 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { AddressCountry } from "./AddressCountry"; -import { AddressType } from "./AddressType"; - -export const Address: core.serialization.ObjectSchema = - core.serialization.object({ - createdAt: core.serialization.property("created_at", core.serialization.date().optional()), - modifiedAt: core.serialization.property("modified_at", core.serialization.date().optional()), - type: AddressType.optional(), - street1: core.serialization.property("street_1", core.serialization.string().optional()), - street2: core.serialization.property("street_2", core.serialization.string().optional()), - city: core.serialization.string().optional(), - state: core.serialization.unknown().optional(), - countrySubdivision: core.serialization.property("country_subdivision", core.serialization.string().optional()), - country: AddressCountry.optional(), - zipCode: core.serialization.property("zip_code", core.serialization.string().optional()), - }); - -export declare namespace Address { - export interface Raw { - created_at?: string | null; - modified_at?: string | null; - type?: AddressType.Raw | null; - street_1?: string | null; - street_2?: string | null; - city?: string | null; - state?: unknown | null; - country_subdivision?: string | null; - country?: AddressCountry.Raw | null; - zip_code?: string | null; - } -} diff --git a/src/serialization/resources/accounting/types/AddressCountry.ts b/src/serialization/resources/accounting/types/AddressCountry.ts deleted file mode 100644 index d2a97ccca..000000000 --- a/src/serialization/resources/accounting/types/AddressCountry.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CountryEnum } from "./CountryEnum"; - -export const AddressCountry: core.serialization.Schema< - serializers.accounting.AddressCountry.Raw, - Merge.accounting.AddressCountry -> = core.serialization.undiscriminatedUnion([CountryEnum, core.serialization.string()]); - -export declare namespace AddressCountry { - export type Raw = CountryEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/AddressRequest.ts b/src/serialization/resources/accounting/types/AddressRequest.ts deleted file mode 100644 index 4d043c244..000000000 --- a/src/serialization/resources/accounting/types/AddressRequest.ts +++ /dev/null @@ -1,42 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { AddressRequestCountry } from "./AddressRequestCountry"; -import { AddressRequestType } from "./AddressRequestType"; - -export const AddressRequest: core.serialization.ObjectSchema< - serializers.accounting.AddressRequest.Raw, - Merge.accounting.AddressRequest -> = core.serialization.object({ - type: AddressRequestType.optional(), - street1: core.serialization.property("street_1", core.serialization.string().optional()), - street2: core.serialization.property("street_2", core.serialization.string().optional()), - city: core.serialization.string().optional(), - countrySubdivision: core.serialization.property("country_subdivision", core.serialization.string().optional()), - country: AddressRequestCountry.optional(), - zipCode: core.serialization.property("zip_code", core.serialization.string().optional()), - integrationParams: core.serialization.property( - "integration_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - linkedAccountParams: core.serialization.property( - "linked_account_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), -}); - -export declare namespace AddressRequest { - export interface Raw { - type?: AddressRequestType.Raw | null; - street_1?: string | null; - street_2?: string | null; - city?: string | null; - country_subdivision?: string | null; - country?: AddressRequestCountry.Raw | null; - zip_code?: string | null; - integration_params?: Record | null; - linked_account_params?: Record | null; - } -} diff --git a/src/serialization/resources/accounting/types/AddressRequestCountry.ts b/src/serialization/resources/accounting/types/AddressRequestCountry.ts deleted file mode 100644 index f56c5e9bc..000000000 --- a/src/serialization/resources/accounting/types/AddressRequestCountry.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CountryEnum } from "./CountryEnum"; - -export const AddressRequestCountry: core.serialization.Schema< - serializers.accounting.AddressRequestCountry.Raw, - Merge.accounting.AddressRequestCountry -> = core.serialization.undiscriminatedUnion([CountryEnum, core.serialization.string()]); - -export declare namespace AddressRequestCountry { - export type Raw = CountryEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/AddressRequestType.ts b/src/serialization/resources/accounting/types/AddressRequestType.ts deleted file mode 100644 index 37235b7ae..000000000 --- a/src/serialization/resources/accounting/types/AddressRequestType.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { AddressTypeEnum } from "./AddressTypeEnum"; - -export const AddressRequestType: core.serialization.Schema< - serializers.accounting.AddressRequestType.Raw, - Merge.accounting.AddressRequestType -> = core.serialization.undiscriminatedUnion([AddressTypeEnum, core.serialization.string()]); - -export declare namespace AddressRequestType { - export type Raw = AddressTypeEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/AddressType.ts b/src/serialization/resources/accounting/types/AddressType.ts deleted file mode 100644 index 92346aaf2..000000000 --- a/src/serialization/resources/accounting/types/AddressType.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { AddressTypeEnum } from "./AddressTypeEnum"; - -export const AddressType: core.serialization.Schema< - serializers.accounting.AddressType.Raw, - Merge.accounting.AddressType -> = core.serialization.undiscriminatedUnion([AddressTypeEnum, core.serialization.string()]); - -export declare namespace AddressType { - export type Raw = AddressTypeEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/AddressTypeEnum.ts b/src/serialization/resources/accounting/types/AddressTypeEnum.ts deleted file mode 100644 index df9e64401..000000000 --- a/src/serialization/resources/accounting/types/AddressTypeEnum.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const AddressTypeEnum: core.serialization.Schema< - serializers.accounting.AddressTypeEnum.Raw, - Merge.accounting.AddressTypeEnum -> = core.serialization.enum_(["BILLING", "SHIPPING"]); - -export declare namespace AddressTypeEnum { - export type Raw = "BILLING" | "SHIPPING"; -} diff --git a/src/serialization/resources/accounting/types/AdvancedMetadata.ts b/src/serialization/resources/accounting/types/AdvancedMetadata.ts deleted file mode 100644 index c180df594..000000000 --- a/src/serialization/resources/accounting/types/AdvancedMetadata.ts +++ /dev/null @@ -1,31 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const AdvancedMetadata: core.serialization.ObjectSchema< - serializers.accounting.AdvancedMetadata.Raw, - Merge.accounting.AdvancedMetadata -> = core.serialization.object({ - id: core.serialization.string(), - displayName: core.serialization.property("display_name", core.serialization.string().optional()), - description: core.serialization.string().optional(), - isRequired: core.serialization.property("is_required", core.serialization.boolean().optional()), - isCustom: core.serialization.property("is_custom", core.serialization.boolean().optional()), - fieldChoices: core.serialization.property( - "field_choices", - core.serialization.list(core.serialization.unknown()).optional(), - ), -}); - -export declare namespace AdvancedMetadata { - export interface Raw { - id: string; - display_name?: string | null; - description?: string | null; - is_required?: boolean | null; - is_custom?: boolean | null; - field_choices?: unknown[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/AsyncPassthroughReciept.ts b/src/serialization/resources/accounting/types/AsyncPassthroughReciept.ts deleted file mode 100644 index 979a44b69..000000000 --- a/src/serialization/resources/accounting/types/AsyncPassthroughReciept.ts +++ /dev/null @@ -1,18 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const AsyncPassthroughReciept: core.serialization.ObjectSchema< - serializers.accounting.AsyncPassthroughReciept.Raw, - Merge.accounting.AsyncPassthroughReciept -> = core.serialization.object({ - asyncPassthroughReceiptId: core.serialization.property("async_passthrough_receipt_id", core.serialization.string()), -}); - -export declare namespace AsyncPassthroughReciept { - export interface Raw { - async_passthrough_receipt_id: string; - } -} diff --git a/src/serialization/resources/accounting/types/AsyncPostTask.ts b/src/serialization/resources/accounting/types/AsyncPostTask.ts deleted file mode 100644 index 8528e1621..000000000 --- a/src/serialization/resources/accounting/types/AsyncPostTask.ts +++ /dev/null @@ -1,22 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { AsyncPostTaskResult } from "./AsyncPostTaskResult"; -import { AsyncPostTaskStatus } from "./AsyncPostTaskStatus"; - -export const AsyncPostTask: core.serialization.ObjectSchema< - serializers.accounting.AsyncPostTask.Raw, - Merge.accounting.AsyncPostTask -> = core.serialization.object({ - status: AsyncPostTaskStatus, - result: AsyncPostTaskResult, -}); - -export declare namespace AsyncPostTask { - export interface Raw { - status: AsyncPostTaskStatus.Raw; - result: AsyncPostTaskResult.Raw; - } -} diff --git a/src/serialization/resources/accounting/types/AsyncPostTaskResult.ts b/src/serialization/resources/accounting/types/AsyncPostTaskResult.ts deleted file mode 100644 index 0e04a5d2f..000000000 --- a/src/serialization/resources/accounting/types/AsyncPostTaskResult.ts +++ /dev/null @@ -1,20 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const AsyncPostTaskResult: core.serialization.ObjectSchema< - serializers.accounting.AsyncPostTaskResult.Raw, - Merge.accounting.AsyncPostTaskResult -> = core.serialization.object({ - statusCode: core.serialization.property("status_code", core.serialization.number().optional()), - response: core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), -}); - -export declare namespace AsyncPostTaskResult { - export interface Raw { - status_code?: number | null; - response?: Record | null; - } -} diff --git a/src/serialization/resources/accounting/types/AsyncPostTaskStatus.ts b/src/serialization/resources/accounting/types/AsyncPostTaskStatus.ts deleted file mode 100644 index 8bd64e437..000000000 --- a/src/serialization/resources/accounting/types/AsyncPostTaskStatus.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { AsyncPostTaskStatusEnum } from "./AsyncPostTaskStatusEnum"; - -export const AsyncPostTaskStatus: core.serialization.Schema< - serializers.accounting.AsyncPostTaskStatus.Raw, - Merge.accounting.AsyncPostTaskStatus -> = core.serialization.undiscriminatedUnion([AsyncPostTaskStatusEnum, core.serialization.string()]); - -export declare namespace AsyncPostTaskStatus { - export type Raw = AsyncPostTaskStatusEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/AsyncPostTaskStatusEnum.ts b/src/serialization/resources/accounting/types/AsyncPostTaskStatusEnum.ts deleted file mode 100644 index 70d23bdd7..000000000 --- a/src/serialization/resources/accounting/types/AsyncPostTaskStatusEnum.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const AsyncPostTaskStatusEnum: core.serialization.Schema< - serializers.accounting.AsyncPostTaskStatusEnum.Raw, - Merge.accounting.AsyncPostTaskStatusEnum -> = core.serialization.enum_(["QUEUED", "IN_PROGRESS", "COMPLETED", "FAILURE"]); - -export declare namespace AsyncPostTaskStatusEnum { - export type Raw = "QUEUED" | "IN_PROGRESS" | "COMPLETED" | "FAILURE"; -} diff --git a/src/serialization/resources/accounting/types/AuditLogEvent.ts b/src/serialization/resources/accounting/types/AuditLogEvent.ts deleted file mode 100644 index b455abf44..000000000 --- a/src/serialization/resources/accounting/types/AuditLogEvent.ts +++ /dev/null @@ -1,34 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { AuditLogEventEventType } from "./AuditLogEventEventType"; -import { AuditLogEventRole } from "./AuditLogEventRole"; - -export const AuditLogEvent: core.serialization.ObjectSchema< - serializers.accounting.AuditLogEvent.Raw, - Merge.accounting.AuditLogEvent -> = core.serialization.object({ - id: core.serialization.string().optional(), - userName: core.serialization.property("user_name", core.serialization.string().optional()), - userEmail: core.serialization.property("user_email", core.serialization.string().optional()), - role: AuditLogEventRole, - ipAddress: core.serialization.property("ip_address", core.serialization.string()), - eventType: core.serialization.property("event_type", AuditLogEventEventType), - eventDescription: core.serialization.property("event_description", core.serialization.string()), - createdAt: core.serialization.property("created_at", core.serialization.date().optional()), -}); - -export declare namespace AuditLogEvent { - export interface Raw { - id?: string | null; - user_name?: string | null; - user_email?: string | null; - role: AuditLogEventRole.Raw; - ip_address: string; - event_type: AuditLogEventEventType.Raw; - event_description: string; - created_at?: string | null; - } -} diff --git a/src/serialization/resources/accounting/types/AuditLogEventEventType.ts b/src/serialization/resources/accounting/types/AuditLogEventEventType.ts deleted file mode 100644 index 7d90c49b0..000000000 --- a/src/serialization/resources/accounting/types/AuditLogEventEventType.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { EventTypeEnum } from "./EventTypeEnum"; - -export const AuditLogEventEventType: core.serialization.Schema< - serializers.accounting.AuditLogEventEventType.Raw, - Merge.accounting.AuditLogEventEventType -> = core.serialization.undiscriminatedUnion([EventTypeEnum, core.serialization.string()]); - -export declare namespace AuditLogEventEventType { - export type Raw = EventTypeEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/AuditLogEventRole.ts b/src/serialization/resources/accounting/types/AuditLogEventRole.ts deleted file mode 100644 index 8feb188ca..000000000 --- a/src/serialization/resources/accounting/types/AuditLogEventRole.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { RoleEnum } from "./RoleEnum"; - -export const AuditLogEventRole: core.serialization.Schema< - serializers.accounting.AuditLogEventRole.Raw, - Merge.accounting.AuditLogEventRole -> = core.serialization.undiscriminatedUnion([RoleEnum, core.serialization.string()]); - -export declare namespace AuditLogEventRole { - export type Raw = RoleEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/AvailableActions.ts b/src/serialization/resources/accounting/types/AvailableActions.ts deleted file mode 100644 index 423e26078..000000000 --- a/src/serialization/resources/accounting/types/AvailableActions.ts +++ /dev/null @@ -1,27 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { AccountIntegration } from "./AccountIntegration"; -import { ModelOperation } from "./ModelOperation"; - -export const AvailableActions: core.serialization.ObjectSchema< - serializers.accounting.AvailableActions.Raw, - Merge.accounting.AvailableActions -> = core.serialization.object({ - integration: AccountIntegration, - passthroughAvailable: core.serialization.property("passthrough_available", core.serialization.boolean()), - availableModelOperations: core.serialization.property( - "available_model_operations", - core.serialization.list(ModelOperation).optional(), - ), -}); - -export declare namespace AvailableActions { - export interface Raw { - integration: AccountIntegration.Raw; - passthrough_available: boolean; - available_model_operations?: ModelOperation.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/BalanceSheet.ts b/src/serialization/resources/accounting/types/BalanceSheet.ts deleted file mode 100644 index bcb6781f9..000000000 --- a/src/serialization/resources/accounting/types/BalanceSheet.ts +++ /dev/null @@ -1,55 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { BalanceSheetCompany } from "./BalanceSheetCompany"; -import { BalanceSheetCurrency } from "./BalanceSheetCurrency"; -import { RemoteData } from "./RemoteData"; -import { ReportItem } from "./ReportItem"; - -export const BalanceSheet: core.serialization.ObjectSchema< - serializers.accounting.BalanceSheet.Raw, - Merge.accounting.BalanceSheet -> = core.serialization.object({ - id: core.serialization.string().optional(), - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - createdAt: core.serialization.property("created_at", core.serialization.date().optional()), - modifiedAt: core.serialization.property("modified_at", core.serialization.date().optional()), - name: core.serialization.string().optional(), - currency: BalanceSheetCurrency.optional(), - company: BalanceSheetCompany.optional(), - date: core.serialization.date().optional(), - netAssets: core.serialization.property("net_assets", core.serialization.number().optional()), - assets: core.serialization.list(ReportItem).optional(), - liabilities: core.serialization.list(ReportItem).optional(), - equity: core.serialization.list(ReportItem).optional(), - remoteGeneratedAt: core.serialization.property("remote_generated_at", core.serialization.date().optional()), - remoteWasDeleted: core.serialization.property("remote_was_deleted", core.serialization.boolean().optional()), - fieldMappings: core.serialization.property( - "field_mappings", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - remoteData: core.serialization.property("remote_data", core.serialization.list(RemoteData).optional()), -}); - -export declare namespace BalanceSheet { - export interface Raw { - id?: string | null; - remote_id?: string | null; - created_at?: string | null; - modified_at?: string | null; - name?: string | null; - currency?: BalanceSheetCurrency.Raw | null; - company?: BalanceSheetCompany.Raw | null; - date?: string | null; - net_assets?: number | null; - assets?: ReportItem.Raw[] | null; - liabilities?: ReportItem.Raw[] | null; - equity?: ReportItem.Raw[] | null; - remote_generated_at?: string | null; - remote_was_deleted?: boolean | null; - field_mappings?: Record | null; - remote_data?: RemoteData.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/BalanceSheetCompany.ts b/src/serialization/resources/accounting/types/BalanceSheetCompany.ts deleted file mode 100644 index cc46336c0..000000000 --- a/src/serialization/resources/accounting/types/BalanceSheetCompany.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CompanyInfo } from "./CompanyInfo"; - -export const BalanceSheetCompany: core.serialization.Schema< - serializers.accounting.BalanceSheetCompany.Raw, - Merge.accounting.BalanceSheetCompany -> = core.serialization.undiscriminatedUnion([core.serialization.string(), CompanyInfo]); - -export declare namespace BalanceSheetCompany { - export type Raw = string | CompanyInfo.Raw; -} diff --git a/src/serialization/resources/accounting/types/BalanceSheetCurrency.ts b/src/serialization/resources/accounting/types/BalanceSheetCurrency.ts deleted file mode 100644 index a86f772c4..000000000 --- a/src/serialization/resources/accounting/types/BalanceSheetCurrency.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TransactionCurrencyEnum } from "./TransactionCurrencyEnum"; - -export const BalanceSheetCurrency: core.serialization.Schema< - serializers.accounting.BalanceSheetCurrency.Raw, - Merge.accounting.BalanceSheetCurrency -> = core.serialization.undiscriminatedUnion([TransactionCurrencyEnum, core.serialization.string()]); - -export declare namespace BalanceSheetCurrency { - export type Raw = TransactionCurrencyEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/BankFeedAccount.ts b/src/serialization/resources/accounting/types/BankFeedAccount.ts deleted file mode 100644 index 1225f3068..000000000 --- a/src/serialization/resources/accounting/types/BankFeedAccount.ts +++ /dev/null @@ -1,61 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { BankFeedAccountAccountType } from "./BankFeedAccountAccountType"; -import { BankFeedAccountCurrency } from "./BankFeedAccountCurrency"; -import { BankFeedAccountFeedStatus } from "./BankFeedAccountFeedStatus"; - -export const BankFeedAccount: core.serialization.ObjectSchema< - serializers.accounting.BankFeedAccount.Raw, - Merge.accounting.BankFeedAccount -> = core.serialization.object({ - id: core.serialization.string().optional(), - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - createdAt: core.serialization.property("created_at", core.serialization.date().optional()), - modifiedAt: core.serialization.property("modified_at", core.serialization.date().optional()), - sourceAccountId: core.serialization.property("source_account_id", core.serialization.string().optional()), - targetAccountId: core.serialization.property("target_account_id", core.serialization.string().optional()), - sourceAccountName: core.serialization.property("source_account_name", core.serialization.string().optional()), - sourceAccountNumber: core.serialization.property("source_account_number", core.serialization.string().optional()), - targetAccountName: core.serialization.property("target_account_name", core.serialization.string().optional()), - currency: BankFeedAccountCurrency.optional(), - feedStatus: core.serialization.property("feed_status", BankFeedAccountFeedStatus.optional()), - feedStartDate: core.serialization.property("feed_start_date", core.serialization.date().optional()), - sourceAccountBalance: core.serialization.property("source_account_balance", core.serialization.number().optional()), - accountType: core.serialization.property("account_type", BankFeedAccountAccountType.optional()), - remoteWasDeleted: core.serialization.property("remote_was_deleted", core.serialization.boolean().optional()), - fieldMappings: core.serialization.property( - "field_mappings", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - remoteData: core.serialization.property( - "remote_data", - core.serialization - .list(core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional()) - .optional(), - ), -}); - -export declare namespace BankFeedAccount { - export interface Raw { - id?: string | null; - remote_id?: string | null; - created_at?: string | null; - modified_at?: string | null; - source_account_id?: string | null; - target_account_id?: string | null; - source_account_name?: string | null; - source_account_number?: string | null; - target_account_name?: string | null; - currency?: BankFeedAccountCurrency.Raw | null; - feed_status?: BankFeedAccountFeedStatus.Raw | null; - feed_start_date?: string | null; - source_account_balance?: number | null; - account_type?: BankFeedAccountAccountType.Raw | null; - remote_was_deleted?: boolean | null; - field_mappings?: Record | null; - remote_data?: (Record | null | undefined)[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/BankFeedAccountAccountType.ts b/src/serialization/resources/accounting/types/BankFeedAccountAccountType.ts deleted file mode 100644 index 17349491f..000000000 --- a/src/serialization/resources/accounting/types/BankFeedAccountAccountType.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { BankFeedAccountAccountTypeEnum } from "./BankFeedAccountAccountTypeEnum"; - -export const BankFeedAccountAccountType: core.serialization.Schema< - serializers.accounting.BankFeedAccountAccountType.Raw, - Merge.accounting.BankFeedAccountAccountType -> = core.serialization.undiscriminatedUnion([BankFeedAccountAccountTypeEnum, core.serialization.string()]); - -export declare namespace BankFeedAccountAccountType { - export type Raw = BankFeedAccountAccountTypeEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/BankFeedAccountAccountTypeEnum.ts b/src/serialization/resources/accounting/types/BankFeedAccountAccountTypeEnum.ts deleted file mode 100644 index f32ba0a8d..000000000 --- a/src/serialization/resources/accounting/types/BankFeedAccountAccountTypeEnum.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const BankFeedAccountAccountTypeEnum: core.serialization.Schema< - serializers.accounting.BankFeedAccountAccountTypeEnum.Raw, - Merge.accounting.BankFeedAccountAccountTypeEnum -> = core.serialization.enum_(["BANK", "CREDIT_CARD"]); - -export declare namespace BankFeedAccountAccountTypeEnum { - export type Raw = "BANK" | "CREDIT_CARD"; -} diff --git a/src/serialization/resources/accounting/types/BankFeedAccountCurrency.ts b/src/serialization/resources/accounting/types/BankFeedAccountCurrency.ts deleted file mode 100644 index 106ef7a33..000000000 --- a/src/serialization/resources/accounting/types/BankFeedAccountCurrency.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TransactionCurrencyEnum } from "./TransactionCurrencyEnum"; - -export const BankFeedAccountCurrency: core.serialization.Schema< - serializers.accounting.BankFeedAccountCurrency.Raw, - Merge.accounting.BankFeedAccountCurrency -> = core.serialization.undiscriminatedUnion([TransactionCurrencyEnum, core.serialization.string()]); - -export declare namespace BankFeedAccountCurrency { - export type Raw = TransactionCurrencyEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/BankFeedAccountFeedStatus.ts b/src/serialization/resources/accounting/types/BankFeedAccountFeedStatus.ts deleted file mode 100644 index 09ca937b3..000000000 --- a/src/serialization/resources/accounting/types/BankFeedAccountFeedStatus.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { FeedStatusEnum } from "./FeedStatusEnum"; - -export const BankFeedAccountFeedStatus: core.serialization.Schema< - serializers.accounting.BankFeedAccountFeedStatus.Raw, - Merge.accounting.BankFeedAccountFeedStatus -> = core.serialization.undiscriminatedUnion([FeedStatusEnum, core.serialization.string()]); - -export declare namespace BankFeedAccountFeedStatus { - export type Raw = FeedStatusEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/BankFeedAccountRequest.ts b/src/serialization/resources/accounting/types/BankFeedAccountRequest.ts deleted file mode 100644 index b3d238575..000000000 --- a/src/serialization/resources/accounting/types/BankFeedAccountRequest.ts +++ /dev/null @@ -1,49 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { BankFeedAccountRequestAccountType } from "./BankFeedAccountRequestAccountType"; -import { BankFeedAccountRequestCurrency } from "./BankFeedAccountRequestCurrency"; -import { BankFeedAccountRequestFeedStatus } from "./BankFeedAccountRequestFeedStatus"; - -export const BankFeedAccountRequest: core.serialization.ObjectSchema< - serializers.accounting.BankFeedAccountRequest.Raw, - Merge.accounting.BankFeedAccountRequest -> = core.serialization.object({ - sourceAccountId: core.serialization.property("source_account_id", core.serialization.string().optional()), - targetAccountId: core.serialization.property("target_account_id", core.serialization.string().optional()), - sourceAccountName: core.serialization.property("source_account_name", core.serialization.string().optional()), - sourceAccountNumber: core.serialization.property("source_account_number", core.serialization.string().optional()), - targetAccountName: core.serialization.property("target_account_name", core.serialization.string().optional()), - currency: BankFeedAccountRequestCurrency.optional(), - feedStatus: core.serialization.property("feed_status", BankFeedAccountRequestFeedStatus.optional()), - feedStartDate: core.serialization.property("feed_start_date", core.serialization.date().optional()), - sourceAccountBalance: core.serialization.property("source_account_balance", core.serialization.number().optional()), - accountType: core.serialization.property("account_type", BankFeedAccountRequestAccountType.optional()), - integrationParams: core.serialization.property( - "integration_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - linkedAccountParams: core.serialization.property( - "linked_account_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), -}); - -export declare namespace BankFeedAccountRequest { - export interface Raw { - source_account_id?: string | null; - target_account_id?: string | null; - source_account_name?: string | null; - source_account_number?: string | null; - target_account_name?: string | null; - currency?: BankFeedAccountRequestCurrency.Raw | null; - feed_status?: BankFeedAccountRequestFeedStatus.Raw | null; - feed_start_date?: string | null; - source_account_balance?: number | null; - account_type?: BankFeedAccountRequestAccountType.Raw | null; - integration_params?: Record | null; - linked_account_params?: Record | null; - } -} diff --git a/src/serialization/resources/accounting/types/BankFeedAccountRequestAccountType.ts b/src/serialization/resources/accounting/types/BankFeedAccountRequestAccountType.ts deleted file mode 100644 index fe0e09cce..000000000 --- a/src/serialization/resources/accounting/types/BankFeedAccountRequestAccountType.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { BankFeedAccountAccountTypeEnum } from "./BankFeedAccountAccountTypeEnum"; - -export const BankFeedAccountRequestAccountType: core.serialization.Schema< - serializers.accounting.BankFeedAccountRequestAccountType.Raw, - Merge.accounting.BankFeedAccountRequestAccountType -> = core.serialization.undiscriminatedUnion([BankFeedAccountAccountTypeEnum, core.serialization.string()]); - -export declare namespace BankFeedAccountRequestAccountType { - export type Raw = BankFeedAccountAccountTypeEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/BankFeedAccountRequestCurrency.ts b/src/serialization/resources/accounting/types/BankFeedAccountRequestCurrency.ts deleted file mode 100644 index eb3320275..000000000 --- a/src/serialization/resources/accounting/types/BankFeedAccountRequestCurrency.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TransactionCurrencyEnum } from "./TransactionCurrencyEnum"; - -export const BankFeedAccountRequestCurrency: core.serialization.Schema< - serializers.accounting.BankFeedAccountRequestCurrency.Raw, - Merge.accounting.BankFeedAccountRequestCurrency -> = core.serialization.undiscriminatedUnion([TransactionCurrencyEnum, core.serialization.string()]); - -export declare namespace BankFeedAccountRequestCurrency { - export type Raw = TransactionCurrencyEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/BankFeedAccountRequestFeedStatus.ts b/src/serialization/resources/accounting/types/BankFeedAccountRequestFeedStatus.ts deleted file mode 100644 index d95579047..000000000 --- a/src/serialization/resources/accounting/types/BankFeedAccountRequestFeedStatus.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { FeedStatusEnum } from "./FeedStatusEnum"; - -export const BankFeedAccountRequestFeedStatus: core.serialization.Schema< - serializers.accounting.BankFeedAccountRequestFeedStatus.Raw, - Merge.accounting.BankFeedAccountRequestFeedStatus -> = core.serialization.undiscriminatedUnion([FeedStatusEnum, core.serialization.string()]); - -export declare namespace BankFeedAccountRequestFeedStatus { - export type Raw = FeedStatusEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/BankFeedAccountResponse.ts b/src/serialization/resources/accounting/types/BankFeedAccountResponse.ts deleted file mode 100644 index f8dbaac2d..000000000 --- a/src/serialization/resources/accounting/types/BankFeedAccountResponse.ts +++ /dev/null @@ -1,28 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { BankFeedAccount } from "./BankFeedAccount"; -import { DebugModeLog } from "./DebugModeLog"; -import { ErrorValidationProblem } from "./ErrorValidationProblem"; -import { WarningValidationProblem } from "./WarningValidationProblem"; - -export const BankFeedAccountResponse: core.serialization.ObjectSchema< - serializers.accounting.BankFeedAccountResponse.Raw, - Merge.accounting.BankFeedAccountResponse -> = core.serialization.object({ - model: BankFeedAccount, - warnings: core.serialization.list(WarningValidationProblem), - errors: core.serialization.list(ErrorValidationProblem), - logs: core.serialization.list(DebugModeLog).optional(), -}); - -export declare namespace BankFeedAccountResponse { - export interface Raw { - model: BankFeedAccount.Raw; - warnings: WarningValidationProblem.Raw[]; - errors: ErrorValidationProblem.Raw[]; - logs?: DebugModeLog.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/BankFeedTransaction.ts b/src/serialization/resources/accounting/types/BankFeedTransaction.ts deleted file mode 100644 index c627c1248..000000000 --- a/src/serialization/resources/accounting/types/BankFeedTransaction.ts +++ /dev/null @@ -1,48 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { BankFeedTransactionBankFeedAccount } from "./BankFeedTransactionBankFeedAccount"; -import { BankFeedTransactionCreditOrDebit } from "./BankFeedTransactionCreditOrDebit"; - -export const BankFeedTransaction: core.serialization.ObjectSchema< - serializers.accounting.BankFeedTransaction.Raw, - Merge.accounting.BankFeedTransaction -> = core.serialization.object({ - id: core.serialization.string().optional(), - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - createdAt: core.serialization.property("created_at", core.serialization.date().optional()), - modifiedAt: core.serialization.property("modified_at", core.serialization.date().optional()), - bankFeedAccount: core.serialization.property("bank_feed_account", BankFeedTransactionBankFeedAccount.optional()), - transactionDate: core.serialization.property("transaction_date", core.serialization.date().optional()), - postedDate: core.serialization.property("posted_date", core.serialization.date().optional()), - amount: core.serialization.number().optional(), - description: core.serialization.string().optional(), - transactionType: core.serialization.property("transaction_type", core.serialization.string().optional()), - payee: core.serialization.string().optional(), - creditOrDebit: core.serialization.property("credit_or_debit", BankFeedTransactionCreditOrDebit.optional()), - sourceTransactionId: core.serialization.property("source_transaction_id", core.serialization.string().optional()), - remoteWasDeleted: core.serialization.property("remote_was_deleted", core.serialization.boolean().optional()), - isProcessed: core.serialization.property("is_processed", core.serialization.boolean().optional()), -}); - -export declare namespace BankFeedTransaction { - export interface Raw { - id?: string | null; - remote_id?: string | null; - created_at?: string | null; - modified_at?: string | null; - bank_feed_account?: BankFeedTransactionBankFeedAccount.Raw | null; - transaction_date?: string | null; - posted_date?: string | null; - amount?: number | null; - description?: string | null; - transaction_type?: string | null; - payee?: string | null; - credit_or_debit?: BankFeedTransactionCreditOrDebit.Raw | null; - source_transaction_id?: string | null; - remote_was_deleted?: boolean | null; - is_processed?: boolean | null; - } -} diff --git a/src/serialization/resources/accounting/types/BankFeedTransactionBankFeedAccount.ts b/src/serialization/resources/accounting/types/BankFeedTransactionBankFeedAccount.ts deleted file mode 100644 index b929463a2..000000000 --- a/src/serialization/resources/accounting/types/BankFeedTransactionBankFeedAccount.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { BankFeedAccount } from "./BankFeedAccount"; - -export const BankFeedTransactionBankFeedAccount: core.serialization.Schema< - serializers.accounting.BankFeedTransactionBankFeedAccount.Raw, - Merge.accounting.BankFeedTransactionBankFeedAccount -> = core.serialization.undiscriminatedUnion([core.serialization.string(), BankFeedAccount]); - -export declare namespace BankFeedTransactionBankFeedAccount { - export type Raw = string | BankFeedAccount.Raw; -} diff --git a/src/serialization/resources/accounting/types/BankFeedTransactionCreditOrDebit.ts b/src/serialization/resources/accounting/types/BankFeedTransactionCreditOrDebit.ts deleted file mode 100644 index cadbe88e4..000000000 --- a/src/serialization/resources/accounting/types/BankFeedTransactionCreditOrDebit.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CreditOrDebitEnum } from "./CreditOrDebitEnum"; - -export const BankFeedTransactionCreditOrDebit: core.serialization.Schema< - serializers.accounting.BankFeedTransactionCreditOrDebit.Raw, - Merge.accounting.BankFeedTransactionCreditOrDebit -> = core.serialization.undiscriminatedUnion([CreditOrDebitEnum, core.serialization.string()]); - -export declare namespace BankFeedTransactionCreditOrDebit { - export type Raw = CreditOrDebitEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/BankFeedTransactionRequestRequest.ts b/src/serialization/resources/accounting/types/BankFeedTransactionRequestRequest.ts deleted file mode 100644 index 167c28733..000000000 --- a/src/serialization/resources/accounting/types/BankFeedTransactionRequestRequest.ts +++ /dev/null @@ -1,52 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { BankFeedTransactionRequestRequestBankFeedAccount } from "./BankFeedTransactionRequestRequestBankFeedAccount"; -import { BankFeedTransactionRequestRequestCreditOrDebit } from "./BankFeedTransactionRequestRequestCreditOrDebit"; - -export const BankFeedTransactionRequestRequest: core.serialization.ObjectSchema< - serializers.accounting.BankFeedTransactionRequestRequest.Raw, - Merge.accounting.BankFeedTransactionRequestRequest -> = core.serialization.object({ - bankFeedAccount: core.serialization.property( - "bank_feed_account", - BankFeedTransactionRequestRequestBankFeedAccount.optional(), - ), - transactionDate: core.serialization.property("transaction_date", core.serialization.date().optional()), - postedDate: core.serialization.property("posted_date", core.serialization.date().optional()), - amount: core.serialization.number().optional(), - description: core.serialization.string().optional(), - transactionType: core.serialization.property("transaction_type", core.serialization.string().optional()), - payee: core.serialization.string().optional(), - creditOrDebit: core.serialization.property( - "credit_or_debit", - BankFeedTransactionRequestRequestCreditOrDebit.optional(), - ), - sourceTransactionId: core.serialization.property("source_transaction_id", core.serialization.string().optional()), - integrationParams: core.serialization.property( - "integration_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - linkedAccountParams: core.serialization.property( - "linked_account_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), -}); - -export declare namespace BankFeedTransactionRequestRequest { - export interface Raw { - bank_feed_account?: BankFeedTransactionRequestRequestBankFeedAccount.Raw | null; - transaction_date?: string | null; - posted_date?: string | null; - amount?: number | null; - description?: string | null; - transaction_type?: string | null; - payee?: string | null; - credit_or_debit?: BankFeedTransactionRequestRequestCreditOrDebit.Raw | null; - source_transaction_id?: string | null; - integration_params?: Record | null; - linked_account_params?: Record | null; - } -} diff --git a/src/serialization/resources/accounting/types/BankFeedTransactionRequestRequestBankFeedAccount.ts b/src/serialization/resources/accounting/types/BankFeedTransactionRequestRequestBankFeedAccount.ts deleted file mode 100644 index 768ca2037..000000000 --- a/src/serialization/resources/accounting/types/BankFeedTransactionRequestRequestBankFeedAccount.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { BankFeedAccount } from "./BankFeedAccount"; - -export const BankFeedTransactionRequestRequestBankFeedAccount: core.serialization.Schema< - serializers.accounting.BankFeedTransactionRequestRequestBankFeedAccount.Raw, - Merge.accounting.BankFeedTransactionRequestRequestBankFeedAccount -> = core.serialization.undiscriminatedUnion([core.serialization.string(), BankFeedAccount]); - -export declare namespace BankFeedTransactionRequestRequestBankFeedAccount { - export type Raw = string | BankFeedAccount.Raw; -} diff --git a/src/serialization/resources/accounting/types/BankFeedTransactionRequestRequestCreditOrDebit.ts b/src/serialization/resources/accounting/types/BankFeedTransactionRequestRequestCreditOrDebit.ts deleted file mode 100644 index 1ebedbdde..000000000 --- a/src/serialization/resources/accounting/types/BankFeedTransactionRequestRequestCreditOrDebit.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CreditOrDebitEnum } from "./CreditOrDebitEnum"; - -export const BankFeedTransactionRequestRequestCreditOrDebit: core.serialization.Schema< - serializers.accounting.BankFeedTransactionRequestRequestCreditOrDebit.Raw, - Merge.accounting.BankFeedTransactionRequestRequestCreditOrDebit -> = core.serialization.undiscriminatedUnion([CreditOrDebitEnum, core.serialization.string()]); - -export declare namespace BankFeedTransactionRequestRequestCreditOrDebit { - export type Raw = CreditOrDebitEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/BankFeedTransactionResponse.ts b/src/serialization/resources/accounting/types/BankFeedTransactionResponse.ts deleted file mode 100644 index 075c197f5..000000000 --- a/src/serialization/resources/accounting/types/BankFeedTransactionResponse.ts +++ /dev/null @@ -1,28 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { BankFeedTransaction } from "./BankFeedTransaction"; -import { DebugModeLog } from "./DebugModeLog"; -import { ErrorValidationProblem } from "./ErrorValidationProblem"; -import { WarningValidationProblem } from "./WarningValidationProblem"; - -export const BankFeedTransactionResponse: core.serialization.ObjectSchema< - serializers.accounting.BankFeedTransactionResponse.Raw, - Merge.accounting.BankFeedTransactionResponse -> = core.serialization.object({ - model: BankFeedTransaction, - warnings: core.serialization.list(WarningValidationProblem), - errors: core.serialization.list(ErrorValidationProblem), - logs: core.serialization.list(DebugModeLog).optional(), -}); - -export declare namespace BankFeedTransactionResponse { - export interface Raw { - model: BankFeedTransaction.Raw; - warnings: WarningValidationProblem.Raw[]; - errors: ErrorValidationProblem.Raw[]; - logs?: DebugModeLog.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/CashFlowStatement.ts b/src/serialization/resources/accounting/types/CashFlowStatement.ts deleted file mode 100644 index c233f543c..000000000 --- a/src/serialization/resources/accounting/types/CashFlowStatement.ts +++ /dev/null @@ -1,71 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CashFlowStatementCompany } from "./CashFlowStatementCompany"; -import { CashFlowStatementCurrency } from "./CashFlowStatementCurrency"; -import { RemoteData } from "./RemoteData"; -import { ReportItem } from "./ReportItem"; - -export const CashFlowStatement: core.serialization.ObjectSchema< - serializers.accounting.CashFlowStatement.Raw, - Merge.accounting.CashFlowStatement -> = core.serialization.object({ - id: core.serialization.string().optional(), - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - createdAt: core.serialization.property("created_at", core.serialization.date().optional()), - modifiedAt: core.serialization.property("modified_at", core.serialization.date().optional()), - name: core.serialization.string().optional(), - currency: CashFlowStatementCurrency.optional(), - company: CashFlowStatementCompany.optional(), - startPeriod: core.serialization.property("start_period", core.serialization.date().optional()), - endPeriod: core.serialization.property("end_period", core.serialization.date().optional()), - cashAtBeginningOfPeriod: core.serialization.property( - "cash_at_beginning_of_period", - core.serialization.number().optional(), - ), - cashAtEndOfPeriod: core.serialization.property("cash_at_end_of_period", core.serialization.number().optional()), - operatingActivities: core.serialization.property( - "operating_activities", - core.serialization.list(ReportItem).optional(), - ), - investingActivities: core.serialization.property( - "investing_activities", - core.serialization.list(ReportItem).optional(), - ), - financingActivities: core.serialization.property( - "financing_activities", - core.serialization.list(ReportItem).optional(), - ), - remoteGeneratedAt: core.serialization.property("remote_generated_at", core.serialization.date().optional()), - remoteWasDeleted: core.serialization.property("remote_was_deleted", core.serialization.boolean().optional()), - fieldMappings: core.serialization.property( - "field_mappings", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - remoteData: core.serialization.property("remote_data", core.serialization.list(RemoteData).optional()), -}); - -export declare namespace CashFlowStatement { - export interface Raw { - id?: string | null; - remote_id?: string | null; - created_at?: string | null; - modified_at?: string | null; - name?: string | null; - currency?: CashFlowStatementCurrency.Raw | null; - company?: CashFlowStatementCompany.Raw | null; - start_period?: string | null; - end_period?: string | null; - cash_at_beginning_of_period?: number | null; - cash_at_end_of_period?: number | null; - operating_activities?: ReportItem.Raw[] | null; - investing_activities?: ReportItem.Raw[] | null; - financing_activities?: ReportItem.Raw[] | null; - remote_generated_at?: string | null; - remote_was_deleted?: boolean | null; - field_mappings?: Record | null; - remote_data?: RemoteData.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/CashFlowStatementCompany.ts b/src/serialization/resources/accounting/types/CashFlowStatementCompany.ts deleted file mode 100644 index d77a24044..000000000 --- a/src/serialization/resources/accounting/types/CashFlowStatementCompany.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CompanyInfo } from "./CompanyInfo"; - -export const CashFlowStatementCompany: core.serialization.Schema< - serializers.accounting.CashFlowStatementCompany.Raw, - Merge.accounting.CashFlowStatementCompany -> = core.serialization.undiscriminatedUnion([core.serialization.string(), CompanyInfo]); - -export declare namespace CashFlowStatementCompany { - export type Raw = string | CompanyInfo.Raw; -} diff --git a/src/serialization/resources/accounting/types/CashFlowStatementCurrency.ts b/src/serialization/resources/accounting/types/CashFlowStatementCurrency.ts deleted file mode 100644 index 380490ead..000000000 --- a/src/serialization/resources/accounting/types/CashFlowStatementCurrency.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TransactionCurrencyEnum } from "./TransactionCurrencyEnum"; - -export const CashFlowStatementCurrency: core.serialization.Schema< - serializers.accounting.CashFlowStatementCurrency.Raw, - Merge.accounting.CashFlowStatementCurrency -> = core.serialization.undiscriminatedUnion([TransactionCurrencyEnum, core.serialization.string()]); - -export declare namespace CashFlowStatementCurrency { - export type Raw = TransactionCurrencyEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/CategoriesEnum.ts b/src/serialization/resources/accounting/types/CategoriesEnum.ts deleted file mode 100644 index c41907a72..000000000 --- a/src/serialization/resources/accounting/types/CategoriesEnum.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const CategoriesEnum: core.serialization.Schema< - serializers.accounting.CategoriesEnum.Raw, - Merge.accounting.CategoriesEnum -> = core.serialization.enum_(["hris", "ats", "accounting", "ticketing", "crm", "mktg", "filestorage"]); - -export declare namespace CategoriesEnum { - export type Raw = "hris" | "ats" | "accounting" | "ticketing" | "crm" | "mktg" | "filestorage"; -} diff --git a/src/serialization/resources/accounting/types/CategoryEnum.ts b/src/serialization/resources/accounting/types/CategoryEnum.ts deleted file mode 100644 index ef053bdc9..000000000 --- a/src/serialization/resources/accounting/types/CategoryEnum.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const CategoryEnum: core.serialization.Schema< - serializers.accounting.CategoryEnum.Raw, - Merge.accounting.CategoryEnum -> = core.serialization.enum_(["hris", "ats", "accounting", "ticketing", "crm", "mktg", "filestorage"]); - -export declare namespace CategoryEnum { - export type Raw = "hris" | "ats" | "accounting" | "ticketing" | "crm" | "mktg" | "filestorage"; -} diff --git a/src/serialization/resources/accounting/types/CategoryTypeEnum.ts b/src/serialization/resources/accounting/types/CategoryTypeEnum.ts deleted file mode 100644 index 2ee17657b..000000000 --- a/src/serialization/resources/accounting/types/CategoryTypeEnum.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const CategoryTypeEnum: core.serialization.Schema< - serializers.accounting.CategoryTypeEnum.Raw, - Merge.accounting.CategoryTypeEnum -> = core.serialization.enum_(["CLASS", "DEPARTMENT"]); - -export declare namespace CategoryTypeEnum { - export type Raw = "CLASS" | "DEPARTMENT"; -} diff --git a/src/serialization/resources/accounting/types/ClassificationEnum.ts b/src/serialization/resources/accounting/types/ClassificationEnum.ts deleted file mode 100644 index 0297ff293..000000000 --- a/src/serialization/resources/accounting/types/ClassificationEnum.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const ClassificationEnum: core.serialization.Schema< - serializers.accounting.ClassificationEnum.Raw, - Merge.accounting.ClassificationEnum -> = core.serialization.enum_(["ASSET", "EQUITY", "EXPENSE", "LIABILITY", "REVENUE"]); - -export declare namespace ClassificationEnum { - export type Raw = "ASSET" | "EQUITY" | "EXPENSE" | "LIABILITY" | "REVENUE"; -} diff --git a/src/serialization/resources/accounting/types/CommonModelScopeApi.ts b/src/serialization/resources/accounting/types/CommonModelScopeApi.ts deleted file mode 100644 index 7db5089e7..000000000 --- a/src/serialization/resources/accounting/types/CommonModelScopeApi.ts +++ /dev/null @@ -1,22 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { IndividualCommonModelScopeDeserializer } from "./IndividualCommonModelScopeDeserializer"; - -export const CommonModelScopeApi: core.serialization.ObjectSchema< - serializers.accounting.CommonModelScopeApi.Raw, - Merge.accounting.CommonModelScopeApi -> = core.serialization.object({ - commonModels: core.serialization.property( - "common_models", - core.serialization.list(IndividualCommonModelScopeDeserializer), - ), -}); - -export declare namespace CommonModelScopeApi { - export interface Raw { - common_models: IndividualCommonModelScopeDeserializer.Raw[]; - } -} diff --git a/src/serialization/resources/accounting/types/CommonModelScopesBodyRequest.ts b/src/serialization/resources/accounting/types/CommonModelScopesBodyRequest.ts deleted file mode 100644 index 09775c3c3..000000000 --- a/src/serialization/resources/accounting/types/CommonModelScopesBodyRequest.ts +++ /dev/null @@ -1,26 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { EnabledActionsEnum } from "./EnabledActionsEnum"; - -export const CommonModelScopesBodyRequest: core.serialization.ObjectSchema< - serializers.accounting.CommonModelScopesBodyRequest.Raw, - Merge.accounting.CommonModelScopesBodyRequest -> = core.serialization.object({ - modelId: core.serialization.property("model_id", core.serialization.string()), - enabledActions: core.serialization.property("enabled_actions", core.serialization.list(EnabledActionsEnum)), - disabledFields: core.serialization.property( - "disabled_fields", - core.serialization.list(core.serialization.string()), - ), -}); - -export declare namespace CommonModelScopesBodyRequest { - export interface Raw { - model_id: string; - enabled_actions: EnabledActionsEnum.Raw[]; - disabled_fields: string[]; - } -} diff --git a/src/serialization/resources/accounting/types/CompanyInfo.ts b/src/serialization/resources/accounting/types/CompanyInfo.ts deleted file mode 100644 index 113d175b9..000000000 --- a/src/serialization/resources/accounting/types/CompanyInfo.ts +++ /dev/null @@ -1,60 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { AccountingPhoneNumber } from "./AccountingPhoneNumber"; -import { Address } from "./Address"; -import { CompanyInfoCurrency } from "./CompanyInfoCurrency"; -import { RemoteData } from "./RemoteData"; - -export const CompanyInfo: core.serialization.ObjectSchema< - serializers.accounting.CompanyInfo.Raw, - Merge.accounting.CompanyInfo -> = core.serialization.object({ - id: core.serialization.string().optional(), - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - createdAt: core.serialization.property("created_at", core.serialization.date().optional()), - modifiedAt: core.serialization.property("modified_at", core.serialization.date().optional()), - name: core.serialization.string().optional(), - legalName: core.serialization.property("legal_name", core.serialization.string().optional()), - taxNumber: core.serialization.property("tax_number", core.serialization.string().optional()), - fiscalYearEndMonth: core.serialization.property("fiscal_year_end_month", core.serialization.number().optional()), - fiscalYearEndDay: core.serialization.property("fiscal_year_end_day", core.serialization.number().optional()), - currency: CompanyInfoCurrency.optional(), - remoteCreatedAt: core.serialization.property("remote_created_at", core.serialization.date().optional()), - urls: core.serialization.list(core.serialization.string().optional()).optional(), - addresses: core.serialization.list(Address).optional(), - phoneNumbers: core.serialization.property( - "phone_numbers", - core.serialization.list(AccountingPhoneNumber).optional(), - ), - remoteWasDeleted: core.serialization.property("remote_was_deleted", core.serialization.boolean().optional()), - fieldMappings: core.serialization.property( - "field_mappings", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - remoteData: core.serialization.property("remote_data", core.serialization.list(RemoteData).optional()), -}); - -export declare namespace CompanyInfo { - export interface Raw { - id?: string | null; - remote_id?: string | null; - created_at?: string | null; - modified_at?: string | null; - name?: string | null; - legal_name?: string | null; - tax_number?: string | null; - fiscal_year_end_month?: number | null; - fiscal_year_end_day?: number | null; - currency?: CompanyInfoCurrency.Raw | null; - remote_created_at?: string | null; - urls?: (string | null | undefined)[] | null; - addresses?: Address.Raw[] | null; - phone_numbers?: AccountingPhoneNumber.Raw[] | null; - remote_was_deleted?: boolean | null; - field_mappings?: Record | null; - remote_data?: RemoteData.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/CompanyInfoCurrency.ts b/src/serialization/resources/accounting/types/CompanyInfoCurrency.ts deleted file mode 100644 index 12c907017..000000000 --- a/src/serialization/resources/accounting/types/CompanyInfoCurrency.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TransactionCurrencyEnum } from "./TransactionCurrencyEnum"; - -export const CompanyInfoCurrency: core.serialization.Schema< - serializers.accounting.CompanyInfoCurrency.Raw, - Merge.accounting.CompanyInfoCurrency -> = core.serialization.undiscriminatedUnion([TransactionCurrencyEnum, core.serialization.string()]); - -export declare namespace CompanyInfoCurrency { - export type Raw = TransactionCurrencyEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/ComponentTypeEnum.ts b/src/serialization/resources/accounting/types/ComponentTypeEnum.ts deleted file mode 100644 index a1d62ac3b..000000000 --- a/src/serialization/resources/accounting/types/ComponentTypeEnum.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const ComponentTypeEnum: core.serialization.Schema< - serializers.accounting.ComponentTypeEnum.Raw, - Merge.accounting.ComponentTypeEnum -> = core.serialization.enum_(["SALES", "PURCHASE"]); - -export declare namespace ComponentTypeEnum { - export type Raw = "SALES" | "PURCHASE"; -} diff --git a/src/serialization/resources/accounting/types/Contact.ts b/src/serialization/resources/accounting/types/Contact.ts deleted file mode 100644 index a877e7ef0..000000000 --- a/src/serialization/resources/accounting/types/Contact.ts +++ /dev/null @@ -1,63 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { AccountingPhoneNumber } from "./AccountingPhoneNumber"; -import { ContactAddressesItem } from "./ContactAddressesItem"; -import { ContactStatus } from "./ContactStatus"; -import { RemoteData } from "./RemoteData"; -import { RemoteField } from "./RemoteField"; - -export const Contact: core.serialization.ObjectSchema = - core.serialization.object({ - id: core.serialization.string().optional(), - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - createdAt: core.serialization.property("created_at", core.serialization.date().optional()), - modifiedAt: core.serialization.property("modified_at", core.serialization.date().optional()), - name: core.serialization.string().optional(), - isSupplier: core.serialization.property("is_supplier", core.serialization.boolean().optional()), - isCustomer: core.serialization.property("is_customer", core.serialization.boolean().optional()), - emailAddress: core.serialization.property("email_address", core.serialization.string().optional()), - taxNumber: core.serialization.property("tax_number", core.serialization.string().optional()), - status: ContactStatus.optional(), - currency: core.serialization.string().optional(), - remoteUpdatedAt: core.serialization.property("remote_updated_at", core.serialization.date().optional()), - company: core.serialization.string().optional(), - addresses: core.serialization.list(ContactAddressesItem.optional()).optional(), - phoneNumbers: core.serialization.property( - "phone_numbers", - core.serialization.list(AccountingPhoneNumber).optional(), - ), - remoteWasDeleted: core.serialization.property("remote_was_deleted", core.serialization.boolean().optional()), - fieldMappings: core.serialization.property( - "field_mappings", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - remoteData: core.serialization.property("remote_data", core.serialization.list(RemoteData).optional()), - remoteFields: core.serialization.property("remote_fields", core.serialization.list(RemoteField).optional()), - }); - -export declare namespace Contact { - export interface Raw { - id?: string | null; - remote_id?: string | null; - created_at?: string | null; - modified_at?: string | null; - name?: string | null; - is_supplier?: boolean | null; - is_customer?: boolean | null; - email_address?: string | null; - tax_number?: string | null; - status?: ContactStatus.Raw | null; - currency?: string | null; - remote_updated_at?: string | null; - company?: string | null; - addresses?: (ContactAddressesItem.Raw | null | undefined)[] | null; - phone_numbers?: AccountingPhoneNumber.Raw[] | null; - remote_was_deleted?: boolean | null; - field_mappings?: Record | null; - remote_data?: RemoteData.Raw[] | null; - remote_fields?: RemoteField.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/ContactAddressesItem.ts b/src/serialization/resources/accounting/types/ContactAddressesItem.ts deleted file mode 100644 index 3176312f7..000000000 --- a/src/serialization/resources/accounting/types/ContactAddressesItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Address } from "./Address"; - -export const ContactAddressesItem: core.serialization.Schema< - serializers.accounting.ContactAddressesItem.Raw, - Merge.accounting.ContactAddressesItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Address]); - -export declare namespace ContactAddressesItem { - export type Raw = string | Address.Raw; -} diff --git a/src/serialization/resources/accounting/types/ContactRequest.ts b/src/serialization/resources/accounting/types/ContactRequest.ts deleted file mode 100644 index c907d3c9a..000000000 --- a/src/serialization/resources/accounting/types/ContactRequest.ts +++ /dev/null @@ -1,55 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { AccountingPhoneNumberRequest } from "./AccountingPhoneNumberRequest"; -import { ContactRequestAddressesItem } from "./ContactRequestAddressesItem"; -import { ContactRequestStatus } from "./ContactRequestStatus"; -import { RemoteFieldRequest } from "./RemoteFieldRequest"; - -export const ContactRequest: core.serialization.ObjectSchema< - serializers.accounting.ContactRequest.Raw, - Merge.accounting.ContactRequest -> = core.serialization.object({ - name: core.serialization.string().optional(), - isSupplier: core.serialization.property("is_supplier", core.serialization.boolean().optional()), - isCustomer: core.serialization.property("is_customer", core.serialization.boolean().optional()), - emailAddress: core.serialization.property("email_address", core.serialization.string().optional()), - taxNumber: core.serialization.property("tax_number", core.serialization.string().optional()), - status: ContactRequestStatus.optional(), - currency: core.serialization.string().optional(), - company: core.serialization.string().optional(), - addresses: core.serialization.list(ContactRequestAddressesItem.optional()).optional(), - phoneNumbers: core.serialization.property( - "phone_numbers", - core.serialization.list(AccountingPhoneNumberRequest).optional(), - ), - integrationParams: core.serialization.property( - "integration_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - linkedAccountParams: core.serialization.property( - "linked_account_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - remoteFields: core.serialization.property("remote_fields", core.serialization.list(RemoteFieldRequest).optional()), -}); - -export declare namespace ContactRequest { - export interface Raw { - name?: string | null; - is_supplier?: boolean | null; - is_customer?: boolean | null; - email_address?: string | null; - tax_number?: string | null; - status?: ContactRequestStatus.Raw | null; - currency?: string | null; - company?: string | null; - addresses?: (ContactRequestAddressesItem.Raw | null | undefined)[] | null; - phone_numbers?: AccountingPhoneNumberRequest.Raw[] | null; - integration_params?: Record | null; - linked_account_params?: Record | null; - remote_fields?: RemoteFieldRequest.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/ContactRequestAddressesItem.ts b/src/serialization/resources/accounting/types/ContactRequestAddressesItem.ts deleted file mode 100644 index 111ed8199..000000000 --- a/src/serialization/resources/accounting/types/ContactRequestAddressesItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Address } from "./Address"; - -export const ContactRequestAddressesItem: core.serialization.Schema< - serializers.accounting.ContactRequestAddressesItem.Raw, - Merge.accounting.ContactRequestAddressesItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Address]); - -export declare namespace ContactRequestAddressesItem { - export type Raw = string | Address.Raw; -} diff --git a/src/serialization/resources/accounting/types/ContactRequestStatus.ts b/src/serialization/resources/accounting/types/ContactRequestStatus.ts deleted file mode 100644 index 8bce7e785..000000000 --- a/src/serialization/resources/accounting/types/ContactRequestStatus.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Status7D1Enum } from "./Status7D1Enum"; - -export const ContactRequestStatus: core.serialization.Schema< - serializers.accounting.ContactRequestStatus.Raw, - Merge.accounting.ContactRequestStatus -> = core.serialization.undiscriminatedUnion([Status7D1Enum, core.serialization.string()]); - -export declare namespace ContactRequestStatus { - export type Raw = Status7D1Enum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/ContactResponse.ts b/src/serialization/resources/accounting/types/ContactResponse.ts deleted file mode 100644 index 2ff031b19..000000000 --- a/src/serialization/resources/accounting/types/ContactResponse.ts +++ /dev/null @@ -1,28 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Contact } from "./Contact"; -import { DebugModeLog } from "./DebugModeLog"; -import { ErrorValidationProblem } from "./ErrorValidationProblem"; -import { WarningValidationProblem } from "./WarningValidationProblem"; - -export const ContactResponse: core.serialization.ObjectSchema< - serializers.accounting.ContactResponse.Raw, - Merge.accounting.ContactResponse -> = core.serialization.object({ - model: Contact, - warnings: core.serialization.list(WarningValidationProblem), - errors: core.serialization.list(ErrorValidationProblem), - logs: core.serialization.list(DebugModeLog).optional(), -}); - -export declare namespace ContactResponse { - export interface Raw { - model: Contact.Raw; - warnings: WarningValidationProblem.Raw[]; - errors: ErrorValidationProblem.Raw[]; - logs?: DebugModeLog.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/ContactStatus.ts b/src/serialization/resources/accounting/types/ContactStatus.ts deleted file mode 100644 index 559206d62..000000000 --- a/src/serialization/resources/accounting/types/ContactStatus.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Status7D1Enum } from "./Status7D1Enum"; - -export const ContactStatus: core.serialization.Schema< - serializers.accounting.ContactStatus.Raw, - Merge.accounting.ContactStatus -> = core.serialization.undiscriminatedUnion([Status7D1Enum, core.serialization.string()]); - -export declare namespace ContactStatus { - export type Raw = Status7D1Enum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/CountryEnum.ts b/src/serialization/resources/accounting/types/CountryEnum.ts deleted file mode 100644 index f2ee6a497..000000000 --- a/src/serialization/resources/accounting/types/CountryEnum.ts +++ /dev/null @@ -1,513 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const CountryEnum: core.serialization.Schema< - serializers.accounting.CountryEnum.Raw, - Merge.accounting.CountryEnum -> = core.serialization.enum_([ - "AF", - "AX", - "AL", - "DZ", - "AS", - "AD", - "AO", - "AI", - "AQ", - "AG", - "AR", - "AM", - "AW", - "AU", - "AT", - "AZ", - "BS", - "BH", - "BD", - "BB", - "BY", - "BE", - "BZ", - "BJ", - "BM", - "BT", - "BO", - "BQ", - "BA", - "BW", - "BV", - "BR", - "IO", - "BN", - "BG", - "BF", - "BI", - "CV", - "KH", - "CM", - "CA", - "KY", - "CF", - "TD", - "CL", - "CN", - "CX", - "CC", - "CO", - "KM", - "CG", - "CD", - "CK", - "CR", - "CI", - "HR", - "CU", - "CW", - "CY", - "CZ", - "DK", - "DJ", - "DM", - "DO", - "EC", - "EG", - "SV", - "GQ", - "ER", - "EE", - "SZ", - "ET", - "FK", - "FO", - "FJ", - "FI", - "FR", - "GF", - "PF", - "TF", - "GA", - "GM", - "GE", - "DE", - "GH", - "GI", - "GR", - "GL", - "GD", - "GP", - "GU", - "GT", - "GG", - "GN", - "GW", - "GY", - "HT", - "HM", - "VA", - "HN", - "HK", - "HU", - "IS", - "IN", - "ID", - "IR", - "IQ", - "IE", - "IM", - "IL", - "IT", - "JM", - "JP", - "JE", - "JO", - "KZ", - "KE", - "KI", - "KW", - "KG", - "LA", - "LV", - "LB", - "LS", - "LR", - "LY", - "LI", - "LT", - "LU", - "MO", - "MG", - "MW", - "MY", - "MV", - "ML", - "MT", - "MH", - "MQ", - "MR", - "MU", - "YT", - "MX", - "FM", - "MD", - "MC", - "MN", - "ME", - "MS", - "MA", - "MZ", - "MM", - "NA", - "NR", - "NP", - "NL", - "NC", - "NZ", - "NI", - "NE", - "NG", - "NU", - "NF", - "KP", - "MK", - "MP", - "NO", - "OM", - "PK", - "PW", - "PS", - "PA", - "PG", - "PY", - "PE", - "PH", - "PN", - "PL", - "PT", - "PR", - "QA", - "RE", - "RO", - "RU", - "RW", - "BL", - "SH", - "KN", - "LC", - "MF", - "PM", - "VC", - "WS", - "SM", - "ST", - "SA", - "SN", - "RS", - "SC", - "SL", - "SG", - "SX", - "SK", - "SI", - "SB", - "SO", - "ZA", - "GS", - "KR", - "SS", - "ES", - "LK", - "SD", - "SR", - "SJ", - "SE", - "CH", - "SY", - "TW", - "TJ", - "TZ", - "TH", - "TL", - "TG", - "TK", - "TO", - "TT", - "TN", - "TR", - "TM", - "TC", - "TV", - "UG", - "UA", - "AE", - "GB", - "UM", - "US", - "UY", - "UZ", - "VU", - "VE", - "VN", - "VG", - "VI", - "WF", - "EH", - "YE", - "ZM", - "ZW", -]); - -export declare namespace CountryEnum { - export type Raw = - | "AF" - | "AX" - | "AL" - | "DZ" - | "AS" - | "AD" - | "AO" - | "AI" - | "AQ" - | "AG" - | "AR" - | "AM" - | "AW" - | "AU" - | "AT" - | "AZ" - | "BS" - | "BH" - | "BD" - | "BB" - | "BY" - | "BE" - | "BZ" - | "BJ" - | "BM" - | "BT" - | "BO" - | "BQ" - | "BA" - | "BW" - | "BV" - | "BR" - | "IO" - | "BN" - | "BG" - | "BF" - | "BI" - | "CV" - | "KH" - | "CM" - | "CA" - | "KY" - | "CF" - | "TD" - | "CL" - | "CN" - | "CX" - | "CC" - | "CO" - | "KM" - | "CG" - | "CD" - | "CK" - | "CR" - | "CI" - | "HR" - | "CU" - | "CW" - | "CY" - | "CZ" - | "DK" - | "DJ" - | "DM" - | "DO" - | "EC" - | "EG" - | "SV" - | "GQ" - | "ER" - | "EE" - | "SZ" - | "ET" - | "FK" - | "FO" - | "FJ" - | "FI" - | "FR" - | "GF" - | "PF" - | "TF" - | "GA" - | "GM" - | "GE" - | "DE" - | "GH" - | "GI" - | "GR" - | "GL" - | "GD" - | "GP" - | "GU" - | "GT" - | "GG" - | "GN" - | "GW" - | "GY" - | "HT" - | "HM" - | "VA" - | "HN" - | "HK" - | "HU" - | "IS" - | "IN" - | "ID" - | "IR" - | "IQ" - | "IE" - | "IM" - | "IL" - | "IT" - | "JM" - | "JP" - | "JE" - | "JO" - | "KZ" - | "KE" - | "KI" - | "KW" - | "KG" - | "LA" - | "LV" - | "LB" - | "LS" - | "LR" - | "LY" - | "LI" - | "LT" - | "LU" - | "MO" - | "MG" - | "MW" - | "MY" - | "MV" - | "ML" - | "MT" - | "MH" - | "MQ" - | "MR" - | "MU" - | "YT" - | "MX" - | "FM" - | "MD" - | "MC" - | "MN" - | "ME" - | "MS" - | "MA" - | "MZ" - | "MM" - | "NA" - | "NR" - | "NP" - | "NL" - | "NC" - | "NZ" - | "NI" - | "NE" - | "NG" - | "NU" - | "NF" - | "KP" - | "MK" - | "MP" - | "NO" - | "OM" - | "PK" - | "PW" - | "PS" - | "PA" - | "PG" - | "PY" - | "PE" - | "PH" - | "PN" - | "PL" - | "PT" - | "PR" - | "QA" - | "RE" - | "RO" - | "RU" - | "RW" - | "BL" - | "SH" - | "KN" - | "LC" - | "MF" - | "PM" - | "VC" - | "WS" - | "SM" - | "ST" - | "SA" - | "SN" - | "RS" - | "SC" - | "SL" - | "SG" - | "SX" - | "SK" - | "SI" - | "SB" - | "SO" - | "ZA" - | "GS" - | "KR" - | "SS" - | "ES" - | "LK" - | "SD" - | "SR" - | "SJ" - | "SE" - | "CH" - | "SY" - | "TW" - | "TJ" - | "TZ" - | "TH" - | "TL" - | "TG" - | "TK" - | "TO" - | "TT" - | "TN" - | "TR" - | "TM" - | "TC" - | "TV" - | "UG" - | "UA" - | "AE" - | "GB" - | "UM" - | "US" - | "UY" - | "UZ" - | "VU" - | "VE" - | "VN" - | "VG" - | "VI" - | "WF" - | "EH" - | "YE" - | "ZM" - | "ZW"; -} diff --git a/src/serialization/resources/accounting/types/CreditNote.ts b/src/serialization/resources/accounting/types/CreditNote.ts deleted file mode 100644 index d0d7c699f..000000000 --- a/src/serialization/resources/accounting/types/CreditNote.ts +++ /dev/null @@ -1,90 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import * as serializers from "../../../index"; -import { CreditNoteAccountingPeriod } from "./CreditNoteAccountingPeriod"; -import { CreditNoteAppliedPaymentsItem } from "./CreditNoteAppliedPaymentsItem"; -import { CreditNoteCompany } from "./CreditNoteCompany"; -import { CreditNoteContact } from "./CreditNoteContact"; -import { CreditNoteCurrency } from "./CreditNoteCurrency"; -import { CreditNoteLineItem } from "./CreditNoteLineItem"; -import { CreditNotePaymentsItem } from "./CreditNotePaymentsItem"; -import { CreditNoteStatus } from "./CreditNoteStatus"; -import { CreditNoteTrackingCategoriesItem } from "./CreditNoteTrackingCategoriesItem"; -import { RemoteData } from "./RemoteData"; - -export const CreditNote: core.serialization.ObjectSchema< - serializers.accounting.CreditNote.Raw, - Merge.accounting.CreditNote -> = core.serialization.object({ - id: core.serialization.string().optional(), - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - createdAt: core.serialization.property("created_at", core.serialization.date().optional()), - modifiedAt: core.serialization.property("modified_at", core.serialization.date().optional()), - transactionDate: core.serialization.property("transaction_date", core.serialization.date().optional()), - status: CreditNoteStatus.optional(), - number: core.serialization.string().optional(), - contact: CreditNoteContact.optional(), - company: CreditNoteCompany.optional(), - exchangeRate: core.serialization.property("exchange_rate", core.serialization.string().optional()), - totalAmount: core.serialization.property("total_amount", core.serialization.number().optional()), - remainingCredit: core.serialization.property("remaining_credit", core.serialization.number().optional()), - inclusiveOfTax: core.serialization.property("inclusive_of_tax", core.serialization.boolean().optional()), - lineItems: core.serialization.property("line_items", core.serialization.list(CreditNoteLineItem).optional()), - trackingCategories: core.serialization.property( - "tracking_categories", - core.serialization.list(CreditNoteTrackingCategoriesItem.optional()).optional(), - ), - currency: CreditNoteCurrency.optional(), - remoteCreatedAt: core.serialization.property("remote_created_at", core.serialization.date().optional()), - remoteUpdatedAt: core.serialization.property("remote_updated_at", core.serialization.date().optional()), - payments: core.serialization.list(CreditNotePaymentsItem.optional()).optional(), - appliedPayments: core.serialization.property( - "applied_payments", - core.serialization.list(CreditNoteAppliedPaymentsItem.optional()).optional(), - ), - accountingPeriod: core.serialization.property("accounting_period", CreditNoteAccountingPeriod.optional()), - appliedToLines: core.serialization.property( - "applied_to_lines", - core.serialization - .list(core.serialization.lazyObject(() => serializers.accounting.CreditNoteApplyLineForCreditNote)) - .optional(), - ), - remoteWasDeleted: core.serialization.property("remote_was_deleted", core.serialization.boolean().optional()), - fieldMappings: core.serialization.property( - "field_mappings", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - remoteData: core.serialization.property("remote_data", core.serialization.list(RemoteData).optional()), -}); - -export declare namespace CreditNote { - export interface Raw { - id?: string | null; - remote_id?: string | null; - created_at?: string | null; - modified_at?: string | null; - transaction_date?: string | null; - status?: CreditNoteStatus.Raw | null; - number?: string | null; - contact?: CreditNoteContact.Raw | null; - company?: CreditNoteCompany.Raw | null; - exchange_rate?: string | null; - total_amount?: number | null; - remaining_credit?: number | null; - inclusive_of_tax?: boolean | null; - line_items?: CreditNoteLineItem.Raw[] | null; - tracking_categories?: (CreditNoteTrackingCategoriesItem.Raw | null | undefined)[] | null; - currency?: CreditNoteCurrency.Raw | null; - remote_created_at?: string | null; - remote_updated_at?: string | null; - payments?: (CreditNotePaymentsItem.Raw | null | undefined)[] | null; - applied_payments?: (CreditNoteAppliedPaymentsItem.Raw | null | undefined)[] | null; - accounting_period?: CreditNoteAccountingPeriod.Raw | null; - applied_to_lines?: serializers.accounting.CreditNoteApplyLineForCreditNote.Raw[] | null; - remote_was_deleted?: boolean | null; - field_mappings?: Record | null; - remote_data?: RemoteData.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/CreditNoteAccountingPeriod.ts b/src/serialization/resources/accounting/types/CreditNoteAccountingPeriod.ts deleted file mode 100644 index 3e92138d6..000000000 --- a/src/serialization/resources/accounting/types/CreditNoteAccountingPeriod.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { AccountingPeriod } from "./AccountingPeriod"; - -export const CreditNoteAccountingPeriod: core.serialization.Schema< - serializers.accounting.CreditNoteAccountingPeriod.Raw, - Merge.accounting.CreditNoteAccountingPeriod -> = core.serialization.undiscriminatedUnion([core.serialization.string(), AccountingPeriod]); - -export declare namespace CreditNoteAccountingPeriod { - export type Raw = string | AccountingPeriod.Raw; -} diff --git a/src/serialization/resources/accounting/types/CreditNoteAppliedPaymentsItem.ts b/src/serialization/resources/accounting/types/CreditNoteAppliedPaymentsItem.ts deleted file mode 100644 index 6b545d4a0..000000000 --- a/src/serialization/resources/accounting/types/CreditNoteAppliedPaymentsItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { PaymentLineItem } from "./PaymentLineItem"; - -export const CreditNoteAppliedPaymentsItem: core.serialization.Schema< - serializers.accounting.CreditNoteAppliedPaymentsItem.Raw, - Merge.accounting.CreditNoteAppliedPaymentsItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), PaymentLineItem]); - -export declare namespace CreditNoteAppliedPaymentsItem { - export type Raw = string | PaymentLineItem.Raw; -} diff --git a/src/serialization/resources/accounting/types/CreditNoteApplyLineForCreditNote.ts b/src/serialization/resources/accounting/types/CreditNoteApplyLineForCreditNote.ts deleted file mode 100644 index 96d6dc0b4..000000000 --- a/src/serialization/resources/accounting/types/CreditNoteApplyLineForCreditNote.ts +++ /dev/null @@ -1,30 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import * as serializers from "../../../index"; - -export const CreditNoteApplyLineForCreditNote: core.serialization.ObjectSchema< - serializers.accounting.CreditNoteApplyLineForCreditNote.Raw, - Merge.accounting.CreditNoteApplyLineForCreditNote -> = core.serialization.object({ - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - createdAt: core.serialization.property("created_at", core.serialization.date().optional()), - modifiedAt: core.serialization.property("modified_at", core.serialization.date().optional()), - invoice: core.serialization.lazy(() => serializers.accounting.CreditNoteApplyLineForCreditNoteInvoice).optional(), - appliedDate: core.serialization.property("applied_date", core.serialization.date().optional()), - appliedAmount: core.serialization.property("applied_amount", core.serialization.string().optional()), - remoteWasDeleted: core.serialization.property("remote_was_deleted", core.serialization.boolean().optional()), -}); - -export declare namespace CreditNoteApplyLineForCreditNote { - export interface Raw { - remote_id?: string | null; - created_at?: string | null; - modified_at?: string | null; - invoice?: serializers.accounting.CreditNoteApplyLineForCreditNoteInvoice.Raw | null; - applied_date?: string | null; - applied_amount?: string | null; - remote_was_deleted?: boolean | null; - } -} diff --git a/src/serialization/resources/accounting/types/CreditNoteApplyLineForCreditNoteInvoice.ts b/src/serialization/resources/accounting/types/CreditNoteApplyLineForCreditNoteInvoice.ts deleted file mode 100644 index ed43cd05b..000000000 --- a/src/serialization/resources/accounting/types/CreditNoteApplyLineForCreditNoteInvoice.ts +++ /dev/null @@ -1,17 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import * as serializers from "../../../index"; - -export const CreditNoteApplyLineForCreditNoteInvoice: core.serialization.Schema< - serializers.accounting.CreditNoteApplyLineForCreditNoteInvoice.Raw, - Merge.accounting.CreditNoteApplyLineForCreditNoteInvoice -> = core.serialization.undiscriminatedUnion([ - core.serialization.string(), - core.serialization.lazyObject(() => serializers.accounting.Invoice), -]); - -export declare namespace CreditNoteApplyLineForCreditNoteInvoice { - export type Raw = string | serializers.accounting.Invoice.Raw; -} diff --git a/src/serialization/resources/accounting/types/CreditNoteApplyLineForCreditNoteRequest.ts b/src/serialization/resources/accounting/types/CreditNoteApplyLineForCreditNoteRequest.ts deleted file mode 100644 index 93a9fda30..000000000 --- a/src/serialization/resources/accounting/types/CreditNoteApplyLineForCreditNoteRequest.ts +++ /dev/null @@ -1,35 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CreditNoteApplyLineForCreditNoteRequestInvoice } from "./CreditNoteApplyLineForCreditNoteRequestInvoice"; - -export const CreditNoteApplyLineForCreditNoteRequest: core.serialization.ObjectSchema< - serializers.accounting.CreditNoteApplyLineForCreditNoteRequest.Raw, - Merge.accounting.CreditNoteApplyLineForCreditNoteRequest -> = core.serialization.object({ - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - invoice: CreditNoteApplyLineForCreditNoteRequestInvoice.optional(), - appliedDate: core.serialization.property("applied_date", core.serialization.date().optional()), - appliedAmount: core.serialization.property("applied_amount", core.serialization.string().optional()), - integrationParams: core.serialization.property( - "integration_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - linkedAccountParams: core.serialization.property( - "linked_account_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), -}); - -export declare namespace CreditNoteApplyLineForCreditNoteRequest { - export interface Raw { - remote_id?: string | null; - invoice?: CreditNoteApplyLineForCreditNoteRequestInvoice.Raw | null; - applied_date?: string | null; - applied_amount?: string | null; - integration_params?: Record | null; - linked_account_params?: Record | null; - } -} diff --git a/src/serialization/resources/accounting/types/CreditNoteApplyLineForCreditNoteRequestInvoice.ts b/src/serialization/resources/accounting/types/CreditNoteApplyLineForCreditNoteRequestInvoice.ts deleted file mode 100644 index c05ab3515..000000000 --- a/src/serialization/resources/accounting/types/CreditNoteApplyLineForCreditNoteRequestInvoice.ts +++ /dev/null @@ -1,17 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import * as serializers from "../../../index"; - -export const CreditNoteApplyLineForCreditNoteRequestInvoice: core.serialization.Schema< - serializers.accounting.CreditNoteApplyLineForCreditNoteRequestInvoice.Raw, - Merge.accounting.CreditNoteApplyLineForCreditNoteRequestInvoice -> = core.serialization.undiscriminatedUnion([ - core.serialization.string(), - core.serialization.lazyObject(() => serializers.accounting.Invoice), -]); - -export declare namespace CreditNoteApplyLineForCreditNoteRequestInvoice { - export type Raw = string | serializers.accounting.Invoice.Raw; -} diff --git a/src/serialization/resources/accounting/types/CreditNoteApplyLineForInvoice.ts b/src/serialization/resources/accounting/types/CreditNoteApplyLineForInvoice.ts deleted file mode 100644 index 407c4c990..000000000 --- a/src/serialization/resources/accounting/types/CreditNoteApplyLineForInvoice.ts +++ /dev/null @@ -1,33 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import * as serializers from "../../../index"; - -export const CreditNoteApplyLineForInvoice: core.serialization.ObjectSchema< - serializers.accounting.CreditNoteApplyLineForInvoice.Raw, - Merge.accounting.CreditNoteApplyLineForInvoice -> = core.serialization.object({ - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - createdAt: core.serialization.property("created_at", core.serialization.date().optional()), - modifiedAt: core.serialization.property("modified_at", core.serialization.date().optional()), - creditNote: core.serialization.property( - "credit_note", - core.serialization.lazy(() => serializers.accounting.CreditNoteApplyLineForInvoiceCreditNote).optional(), - ), - appliedDate: core.serialization.property("applied_date", core.serialization.date().optional()), - appliedAmount: core.serialization.property("applied_amount", core.serialization.string().optional()), - remoteWasDeleted: core.serialization.property("remote_was_deleted", core.serialization.boolean().optional()), -}); - -export declare namespace CreditNoteApplyLineForInvoice { - export interface Raw { - remote_id?: string | null; - created_at?: string | null; - modified_at?: string | null; - credit_note?: serializers.accounting.CreditNoteApplyLineForInvoiceCreditNote.Raw | null; - applied_date?: string | null; - applied_amount?: string | null; - remote_was_deleted?: boolean | null; - } -} diff --git a/src/serialization/resources/accounting/types/CreditNoteApplyLineForInvoiceCreditNote.ts b/src/serialization/resources/accounting/types/CreditNoteApplyLineForInvoiceCreditNote.ts deleted file mode 100644 index 324388cb7..000000000 --- a/src/serialization/resources/accounting/types/CreditNoteApplyLineForInvoiceCreditNote.ts +++ /dev/null @@ -1,17 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import * as serializers from "../../../index"; - -export const CreditNoteApplyLineForInvoiceCreditNote: core.serialization.Schema< - serializers.accounting.CreditNoteApplyLineForInvoiceCreditNote.Raw, - Merge.accounting.CreditNoteApplyLineForInvoiceCreditNote -> = core.serialization.undiscriminatedUnion([ - core.serialization.string(), - core.serialization.lazyObject(() => serializers.accounting.CreditNote), -]); - -export declare namespace CreditNoteApplyLineForInvoiceCreditNote { - export type Raw = string | serializers.accounting.CreditNote.Raw; -} diff --git a/src/serialization/resources/accounting/types/CreditNoteCompany.ts b/src/serialization/resources/accounting/types/CreditNoteCompany.ts deleted file mode 100644 index f1c2beb16..000000000 --- a/src/serialization/resources/accounting/types/CreditNoteCompany.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CompanyInfo } from "./CompanyInfo"; - -export const CreditNoteCompany: core.serialization.Schema< - serializers.accounting.CreditNoteCompany.Raw, - Merge.accounting.CreditNoteCompany -> = core.serialization.undiscriminatedUnion([core.serialization.string(), CompanyInfo]); - -export declare namespace CreditNoteCompany { - export type Raw = string | CompanyInfo.Raw; -} diff --git a/src/serialization/resources/accounting/types/CreditNoteContact.ts b/src/serialization/resources/accounting/types/CreditNoteContact.ts deleted file mode 100644 index 8e0a6ef01..000000000 --- a/src/serialization/resources/accounting/types/CreditNoteContact.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Contact } from "./Contact"; - -export const CreditNoteContact: core.serialization.Schema< - serializers.accounting.CreditNoteContact.Raw, - Merge.accounting.CreditNoteContact -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Contact]); - -export declare namespace CreditNoteContact { - export type Raw = string | Contact.Raw; -} diff --git a/src/serialization/resources/accounting/types/CreditNoteCurrency.ts b/src/serialization/resources/accounting/types/CreditNoteCurrency.ts deleted file mode 100644 index 68bf27901..000000000 --- a/src/serialization/resources/accounting/types/CreditNoteCurrency.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TransactionCurrencyEnum } from "./TransactionCurrencyEnum"; - -export const CreditNoteCurrency: core.serialization.Schema< - serializers.accounting.CreditNoteCurrency.Raw, - Merge.accounting.CreditNoteCurrency -> = core.serialization.undiscriminatedUnion([TransactionCurrencyEnum, core.serialization.string()]); - -export declare namespace CreditNoteCurrency { - export type Raw = TransactionCurrencyEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/CreditNoteLineItem.ts b/src/serialization/resources/accounting/types/CreditNoteLineItem.ts deleted file mode 100644 index 6901461cc..000000000 --- a/src/serialization/resources/accounting/types/CreditNoteLineItem.ts +++ /dev/null @@ -1,61 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CreditNoteLineItemCompany } from "./CreditNoteLineItemCompany"; -import { CreditNoteLineItemContact } from "./CreditNoteLineItemContact"; -import { CreditNoteLineItemItem } from "./CreditNoteLineItemItem"; -import { CreditNoteLineItemProject } from "./CreditNoteLineItemProject"; - -export const CreditNoteLineItem: core.serialization.ObjectSchema< - serializers.accounting.CreditNoteLineItem.Raw, - Merge.accounting.CreditNoteLineItem -> = core.serialization.object({ - id: core.serialization.string().optional(), - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - createdAt: core.serialization.property("created_at", core.serialization.date().optional()), - modifiedAt: core.serialization.property("modified_at", core.serialization.date().optional()), - item: CreditNoteLineItemItem.optional(), - name: core.serialization.string().optional(), - description: core.serialization.string().optional(), - quantity: core.serialization.string().optional(), - memo: core.serialization.string().optional(), - unitPrice: core.serialization.property("unit_price", core.serialization.string().optional()), - taxRate: core.serialization.property("tax_rate", core.serialization.string().optional()), - totalLineAmount: core.serialization.property("total_line_amount", core.serialization.string().optional()), - trackingCategory: core.serialization.property("tracking_category", core.serialization.string().optional()), - trackingCategories: core.serialization.property( - "tracking_categories", - core.serialization.list(core.serialization.string().optional()).optional(), - ), - account: core.serialization.string().optional(), - company: CreditNoteLineItemCompany.optional(), - contact: CreditNoteLineItemContact.optional(), - project: CreditNoteLineItemProject.optional(), - remoteWasDeleted: core.serialization.property("remote_was_deleted", core.serialization.boolean().optional()), -}); - -export declare namespace CreditNoteLineItem { - export interface Raw { - id?: string | null; - remote_id?: string | null; - created_at?: string | null; - modified_at?: string | null; - item?: CreditNoteLineItemItem.Raw | null; - name?: string | null; - description?: string | null; - quantity?: string | null; - memo?: string | null; - unit_price?: string | null; - tax_rate?: string | null; - total_line_amount?: string | null; - tracking_category?: string | null; - tracking_categories?: (string | null | undefined)[] | null; - account?: string | null; - company?: CreditNoteLineItemCompany.Raw | null; - contact?: CreditNoteLineItemContact.Raw | null; - project?: CreditNoteLineItemProject.Raw | null; - remote_was_deleted?: boolean | null; - } -} diff --git a/src/serialization/resources/accounting/types/CreditNoteLineItemCompany.ts b/src/serialization/resources/accounting/types/CreditNoteLineItemCompany.ts deleted file mode 100644 index 3de6dda6b..000000000 --- a/src/serialization/resources/accounting/types/CreditNoteLineItemCompany.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CompanyInfo } from "./CompanyInfo"; - -export const CreditNoteLineItemCompany: core.serialization.Schema< - serializers.accounting.CreditNoteLineItemCompany.Raw, - Merge.accounting.CreditNoteLineItemCompany -> = core.serialization.undiscriminatedUnion([core.serialization.string(), CompanyInfo]); - -export declare namespace CreditNoteLineItemCompany { - export type Raw = string | CompanyInfo.Raw; -} diff --git a/src/serialization/resources/accounting/types/CreditNoteLineItemContact.ts b/src/serialization/resources/accounting/types/CreditNoteLineItemContact.ts deleted file mode 100644 index cd675136e..000000000 --- a/src/serialization/resources/accounting/types/CreditNoteLineItemContact.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Contact } from "./Contact"; - -export const CreditNoteLineItemContact: core.serialization.Schema< - serializers.accounting.CreditNoteLineItemContact.Raw, - Merge.accounting.CreditNoteLineItemContact -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Contact]); - -export declare namespace CreditNoteLineItemContact { - export type Raw = string | Contact.Raw; -} diff --git a/src/serialization/resources/accounting/types/CreditNoteLineItemItem.ts b/src/serialization/resources/accounting/types/CreditNoteLineItemItem.ts deleted file mode 100644 index 8655457cf..000000000 --- a/src/serialization/resources/accounting/types/CreditNoteLineItemItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Item } from "./Item"; - -export const CreditNoteLineItemItem: core.serialization.Schema< - serializers.accounting.CreditNoteLineItemItem.Raw, - Merge.accounting.CreditNoteLineItemItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Item]); - -export declare namespace CreditNoteLineItemItem { - export type Raw = string | Item.Raw; -} diff --git a/src/serialization/resources/accounting/types/CreditNoteLineItemProject.ts b/src/serialization/resources/accounting/types/CreditNoteLineItemProject.ts deleted file mode 100644 index 5d7b622ff..000000000 --- a/src/serialization/resources/accounting/types/CreditNoteLineItemProject.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Project } from "./Project"; - -export const CreditNoteLineItemProject: core.serialization.Schema< - serializers.accounting.CreditNoteLineItemProject.Raw, - Merge.accounting.CreditNoteLineItemProject -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Project]); - -export declare namespace CreditNoteLineItemProject { - export type Raw = string | Project.Raw; -} diff --git a/src/serialization/resources/accounting/types/CreditNoteLineItemRequest.ts b/src/serialization/resources/accounting/types/CreditNoteLineItemRequest.ts deleted file mode 100644 index f907b8e7d..000000000 --- a/src/serialization/resources/accounting/types/CreditNoteLineItemRequest.ts +++ /dev/null @@ -1,63 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CreditNoteLineItemRequestCompany } from "./CreditNoteLineItemRequestCompany"; -import { CreditNoteLineItemRequestContact } from "./CreditNoteLineItemRequestContact"; -import { CreditNoteLineItemRequestItem } from "./CreditNoteLineItemRequestItem"; -import { CreditNoteLineItemRequestProject } from "./CreditNoteLineItemRequestProject"; - -export const CreditNoteLineItemRequest: core.serialization.ObjectSchema< - serializers.accounting.CreditNoteLineItemRequest.Raw, - Merge.accounting.CreditNoteLineItemRequest -> = core.serialization.object({ - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - item: CreditNoteLineItemRequestItem.optional(), - name: core.serialization.string().optional(), - description: core.serialization.string().optional(), - quantity: core.serialization.string().optional(), - memo: core.serialization.string().optional(), - unitPrice: core.serialization.property("unit_price", core.serialization.string().optional()), - taxRate: core.serialization.property("tax_rate", core.serialization.string().optional()), - totalLineAmount: core.serialization.property("total_line_amount", core.serialization.string().optional()), - trackingCategory: core.serialization.property("tracking_category", core.serialization.string().optional()), - trackingCategories: core.serialization.property( - "tracking_categories", - core.serialization.list(core.serialization.string().optional()).optional(), - ), - account: core.serialization.string().optional(), - company: CreditNoteLineItemRequestCompany.optional(), - contact: CreditNoteLineItemRequestContact.optional(), - project: CreditNoteLineItemRequestProject.optional(), - integrationParams: core.serialization.property( - "integration_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - linkedAccountParams: core.serialization.property( - "linked_account_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), -}); - -export declare namespace CreditNoteLineItemRequest { - export interface Raw { - remote_id?: string | null; - item?: CreditNoteLineItemRequestItem.Raw | null; - name?: string | null; - description?: string | null; - quantity?: string | null; - memo?: string | null; - unit_price?: string | null; - tax_rate?: string | null; - total_line_amount?: string | null; - tracking_category?: string | null; - tracking_categories?: (string | null | undefined)[] | null; - account?: string | null; - company?: CreditNoteLineItemRequestCompany.Raw | null; - contact?: CreditNoteLineItemRequestContact.Raw | null; - project?: CreditNoteLineItemRequestProject.Raw | null; - integration_params?: Record | null; - linked_account_params?: Record | null; - } -} diff --git a/src/serialization/resources/accounting/types/CreditNoteLineItemRequestCompany.ts b/src/serialization/resources/accounting/types/CreditNoteLineItemRequestCompany.ts deleted file mode 100644 index 109f403b6..000000000 --- a/src/serialization/resources/accounting/types/CreditNoteLineItemRequestCompany.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CompanyInfo } from "./CompanyInfo"; - -export const CreditNoteLineItemRequestCompany: core.serialization.Schema< - serializers.accounting.CreditNoteLineItemRequestCompany.Raw, - Merge.accounting.CreditNoteLineItemRequestCompany -> = core.serialization.undiscriminatedUnion([core.serialization.string(), CompanyInfo]); - -export declare namespace CreditNoteLineItemRequestCompany { - export type Raw = string | CompanyInfo.Raw; -} diff --git a/src/serialization/resources/accounting/types/CreditNoteLineItemRequestContact.ts b/src/serialization/resources/accounting/types/CreditNoteLineItemRequestContact.ts deleted file mode 100644 index 5c16007cb..000000000 --- a/src/serialization/resources/accounting/types/CreditNoteLineItemRequestContact.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Contact } from "./Contact"; - -export const CreditNoteLineItemRequestContact: core.serialization.Schema< - serializers.accounting.CreditNoteLineItemRequestContact.Raw, - Merge.accounting.CreditNoteLineItemRequestContact -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Contact]); - -export declare namespace CreditNoteLineItemRequestContact { - export type Raw = string | Contact.Raw; -} diff --git a/src/serialization/resources/accounting/types/CreditNoteLineItemRequestItem.ts b/src/serialization/resources/accounting/types/CreditNoteLineItemRequestItem.ts deleted file mode 100644 index 895be1251..000000000 --- a/src/serialization/resources/accounting/types/CreditNoteLineItemRequestItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Item } from "./Item"; - -export const CreditNoteLineItemRequestItem: core.serialization.Schema< - serializers.accounting.CreditNoteLineItemRequestItem.Raw, - Merge.accounting.CreditNoteLineItemRequestItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Item]); - -export declare namespace CreditNoteLineItemRequestItem { - export type Raw = string | Item.Raw; -} diff --git a/src/serialization/resources/accounting/types/CreditNoteLineItemRequestProject.ts b/src/serialization/resources/accounting/types/CreditNoteLineItemRequestProject.ts deleted file mode 100644 index 29458087a..000000000 --- a/src/serialization/resources/accounting/types/CreditNoteLineItemRequestProject.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Contact } from "./Contact"; - -export const CreditNoteLineItemRequestProject: core.serialization.Schema< - serializers.accounting.CreditNoteLineItemRequestProject.Raw, - Merge.accounting.CreditNoteLineItemRequestProject -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Contact]); - -export declare namespace CreditNoteLineItemRequestProject { - export type Raw = string | Contact.Raw; -} diff --git a/src/serialization/resources/accounting/types/CreditNotePaymentsItem.ts b/src/serialization/resources/accounting/types/CreditNotePaymentsItem.ts deleted file mode 100644 index 53449e427..000000000 --- a/src/serialization/resources/accounting/types/CreditNotePaymentsItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Payment } from "./Payment"; - -export const CreditNotePaymentsItem: core.serialization.Schema< - serializers.accounting.CreditNotePaymentsItem.Raw, - Merge.accounting.CreditNotePaymentsItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Payment]); - -export declare namespace CreditNotePaymentsItem { - export type Raw = string | Payment.Raw; -} diff --git a/src/serialization/resources/accounting/types/CreditNoteRequest.ts b/src/serialization/resources/accounting/types/CreditNoteRequest.ts deleted file mode 100644 index 228df7186..000000000 --- a/src/serialization/resources/accounting/types/CreditNoteRequest.ts +++ /dev/null @@ -1,80 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CreditNoteApplyLineForCreditNoteRequest } from "./CreditNoteApplyLineForCreditNoteRequest"; -import { CreditNoteRequestAccountingPeriod } from "./CreditNoteRequestAccountingPeriod"; -import { CreditNoteRequestAppliedPaymentsItem } from "./CreditNoteRequestAppliedPaymentsItem"; -import { CreditNoteRequestCompany } from "./CreditNoteRequestCompany"; -import { CreditNoteRequestContact } from "./CreditNoteRequestContact"; -import { CreditNoteRequestCurrency } from "./CreditNoteRequestCurrency"; -import { CreditNoteRequestLineItemsItem } from "./CreditNoteRequestLineItemsItem"; -import { CreditNoteRequestPaymentsItem } from "./CreditNoteRequestPaymentsItem"; -import { CreditNoteRequestStatus } from "./CreditNoteRequestStatus"; -import { CreditNoteRequestTrackingCategoriesItem } from "./CreditNoteRequestTrackingCategoriesItem"; - -export const CreditNoteRequest: core.serialization.ObjectSchema< - serializers.accounting.CreditNoteRequest.Raw, - Merge.accounting.CreditNoteRequest -> = core.serialization.object({ - transactionDate: core.serialization.property("transaction_date", core.serialization.date().optional()), - status: CreditNoteRequestStatus.optional(), - number: core.serialization.string().optional(), - contact: CreditNoteRequestContact.optional(), - company: CreditNoteRequestCompany.optional(), - exchangeRate: core.serialization.property("exchange_rate", core.serialization.string().optional()), - totalAmount: core.serialization.property("total_amount", core.serialization.number().optional()), - remainingCredit: core.serialization.property("remaining_credit", core.serialization.number().optional()), - inclusiveOfTax: core.serialization.property("inclusive_of_tax", core.serialization.boolean().optional()), - lineItems: core.serialization.property( - "line_items", - core.serialization.list(CreditNoteRequestLineItemsItem).optional(), - ), - trackingCategories: core.serialization.property( - "tracking_categories", - core.serialization.list(CreditNoteRequestTrackingCategoriesItem.optional()).optional(), - ), - currency: CreditNoteRequestCurrency.optional(), - payments: core.serialization.list(CreditNoteRequestPaymentsItem.optional()).optional(), - appliedPayments: core.serialization.property( - "applied_payments", - core.serialization.list(CreditNoteRequestAppliedPaymentsItem.optional()).optional(), - ), - accountingPeriod: core.serialization.property("accounting_period", CreditNoteRequestAccountingPeriod.optional()), - appliedToLines: core.serialization.property( - "applied_to_lines", - core.serialization.list(CreditNoteApplyLineForCreditNoteRequest).optional(), - ), - integrationParams: core.serialization.property( - "integration_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - linkedAccountParams: core.serialization.property( - "linked_account_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), -}); - -export declare namespace CreditNoteRequest { - export interface Raw { - transaction_date?: string | null; - status?: CreditNoteRequestStatus.Raw | null; - number?: string | null; - contact?: CreditNoteRequestContact.Raw | null; - company?: CreditNoteRequestCompany.Raw | null; - exchange_rate?: string | null; - total_amount?: number | null; - remaining_credit?: number | null; - inclusive_of_tax?: boolean | null; - line_items?: CreditNoteRequestLineItemsItem.Raw[] | null; - tracking_categories?: (CreditNoteRequestTrackingCategoriesItem.Raw | null | undefined)[] | null; - currency?: CreditNoteRequestCurrency.Raw | null; - payments?: (CreditNoteRequestPaymentsItem.Raw | null | undefined)[] | null; - applied_payments?: (CreditNoteRequestAppliedPaymentsItem.Raw | null | undefined)[] | null; - accounting_period?: CreditNoteRequestAccountingPeriod.Raw | null; - applied_to_lines?: CreditNoteApplyLineForCreditNoteRequest.Raw[] | null; - integration_params?: Record | null; - linked_account_params?: Record | null; - } -} diff --git a/src/serialization/resources/accounting/types/CreditNoteRequestAccountingPeriod.ts b/src/serialization/resources/accounting/types/CreditNoteRequestAccountingPeriod.ts deleted file mode 100644 index 9c5004cfe..000000000 --- a/src/serialization/resources/accounting/types/CreditNoteRequestAccountingPeriod.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { AccountingPeriod } from "./AccountingPeriod"; - -export const CreditNoteRequestAccountingPeriod: core.serialization.Schema< - serializers.accounting.CreditNoteRequestAccountingPeriod.Raw, - Merge.accounting.CreditNoteRequestAccountingPeriod -> = core.serialization.undiscriminatedUnion([core.serialization.string(), AccountingPeriod]); - -export declare namespace CreditNoteRequestAccountingPeriod { - export type Raw = string | AccountingPeriod.Raw; -} diff --git a/src/serialization/resources/accounting/types/CreditNoteRequestAppliedPaymentsItem.ts b/src/serialization/resources/accounting/types/CreditNoteRequestAppliedPaymentsItem.ts deleted file mode 100644 index 37aaea371..000000000 --- a/src/serialization/resources/accounting/types/CreditNoteRequestAppliedPaymentsItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { PaymentLineItem } from "./PaymentLineItem"; - -export const CreditNoteRequestAppliedPaymentsItem: core.serialization.Schema< - serializers.accounting.CreditNoteRequestAppliedPaymentsItem.Raw, - Merge.accounting.CreditNoteRequestAppliedPaymentsItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), PaymentLineItem]); - -export declare namespace CreditNoteRequestAppliedPaymentsItem { - export type Raw = string | PaymentLineItem.Raw; -} diff --git a/src/serialization/resources/accounting/types/CreditNoteRequestCompany.ts b/src/serialization/resources/accounting/types/CreditNoteRequestCompany.ts deleted file mode 100644 index 233208de2..000000000 --- a/src/serialization/resources/accounting/types/CreditNoteRequestCompany.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CompanyInfo } from "./CompanyInfo"; - -export const CreditNoteRequestCompany: core.serialization.Schema< - serializers.accounting.CreditNoteRequestCompany.Raw, - Merge.accounting.CreditNoteRequestCompany -> = core.serialization.undiscriminatedUnion([core.serialization.string(), CompanyInfo]); - -export declare namespace CreditNoteRequestCompany { - export type Raw = string | CompanyInfo.Raw; -} diff --git a/src/serialization/resources/accounting/types/CreditNoteRequestContact.ts b/src/serialization/resources/accounting/types/CreditNoteRequestContact.ts deleted file mode 100644 index 54b98b94b..000000000 --- a/src/serialization/resources/accounting/types/CreditNoteRequestContact.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Contact } from "./Contact"; - -export const CreditNoteRequestContact: core.serialization.Schema< - serializers.accounting.CreditNoteRequestContact.Raw, - Merge.accounting.CreditNoteRequestContact -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Contact]); - -export declare namespace CreditNoteRequestContact { - export type Raw = string | Contact.Raw; -} diff --git a/src/serialization/resources/accounting/types/CreditNoteRequestCurrency.ts b/src/serialization/resources/accounting/types/CreditNoteRequestCurrency.ts deleted file mode 100644 index 6d4b3b3eb..000000000 --- a/src/serialization/resources/accounting/types/CreditNoteRequestCurrency.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TransactionCurrencyEnum } from "./TransactionCurrencyEnum"; - -export const CreditNoteRequestCurrency: core.serialization.Schema< - serializers.accounting.CreditNoteRequestCurrency.Raw, - Merge.accounting.CreditNoteRequestCurrency -> = core.serialization.undiscriminatedUnion([TransactionCurrencyEnum, core.serialization.string()]); - -export declare namespace CreditNoteRequestCurrency { - export type Raw = TransactionCurrencyEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/CreditNoteRequestLineItemsItem.ts b/src/serialization/resources/accounting/types/CreditNoteRequestLineItemsItem.ts deleted file mode 100644 index 384b163d5..000000000 --- a/src/serialization/resources/accounting/types/CreditNoteRequestLineItemsItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CreditNoteLineItemRequest } from "./CreditNoteLineItemRequest"; - -export const CreditNoteRequestLineItemsItem: core.serialization.Schema< - serializers.accounting.CreditNoteRequestLineItemsItem.Raw, - Merge.accounting.CreditNoteRequestLineItemsItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), CreditNoteLineItemRequest]); - -export declare namespace CreditNoteRequestLineItemsItem { - export type Raw = string | CreditNoteLineItemRequest.Raw; -} diff --git a/src/serialization/resources/accounting/types/CreditNoteRequestPaymentsItem.ts b/src/serialization/resources/accounting/types/CreditNoteRequestPaymentsItem.ts deleted file mode 100644 index 2fa6f78c0..000000000 --- a/src/serialization/resources/accounting/types/CreditNoteRequestPaymentsItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Payment } from "./Payment"; - -export const CreditNoteRequestPaymentsItem: core.serialization.Schema< - serializers.accounting.CreditNoteRequestPaymentsItem.Raw, - Merge.accounting.CreditNoteRequestPaymentsItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Payment]); - -export declare namespace CreditNoteRequestPaymentsItem { - export type Raw = string | Payment.Raw; -} diff --git a/src/serialization/resources/accounting/types/CreditNoteRequestStatus.ts b/src/serialization/resources/accounting/types/CreditNoteRequestStatus.ts deleted file mode 100644 index f5556249b..000000000 --- a/src/serialization/resources/accounting/types/CreditNoteRequestStatus.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CreditNoteStatusEnum } from "./CreditNoteStatusEnum"; - -export const CreditNoteRequestStatus: core.serialization.Schema< - serializers.accounting.CreditNoteRequestStatus.Raw, - Merge.accounting.CreditNoteRequestStatus -> = core.serialization.undiscriminatedUnion([CreditNoteStatusEnum, core.serialization.string()]); - -export declare namespace CreditNoteRequestStatus { - export type Raw = CreditNoteStatusEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/CreditNoteRequestTrackingCategoriesItem.ts b/src/serialization/resources/accounting/types/CreditNoteRequestTrackingCategoriesItem.ts deleted file mode 100644 index b939d4100..000000000 --- a/src/serialization/resources/accounting/types/CreditNoteRequestTrackingCategoriesItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TrackingCategory } from "./TrackingCategory"; - -export const CreditNoteRequestTrackingCategoriesItem: core.serialization.Schema< - serializers.accounting.CreditNoteRequestTrackingCategoriesItem.Raw, - Merge.accounting.CreditNoteRequestTrackingCategoriesItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), TrackingCategory]); - -export declare namespace CreditNoteRequestTrackingCategoriesItem { - export type Raw = string | TrackingCategory.Raw; -} diff --git a/src/serialization/resources/accounting/types/CreditNoteResponse.ts b/src/serialization/resources/accounting/types/CreditNoteResponse.ts deleted file mode 100644 index dd208747c..000000000 --- a/src/serialization/resources/accounting/types/CreditNoteResponse.ts +++ /dev/null @@ -1,27 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import * as serializers from "../../../index"; -import { DebugModeLog } from "./DebugModeLog"; -import { ErrorValidationProblem } from "./ErrorValidationProblem"; -import { WarningValidationProblem } from "./WarningValidationProblem"; - -export const CreditNoteResponse: core.serialization.ObjectSchema< - serializers.accounting.CreditNoteResponse.Raw, - Merge.accounting.CreditNoteResponse -> = core.serialization.object({ - model: core.serialization.lazyObject(() => serializers.accounting.CreditNote), - warnings: core.serialization.list(WarningValidationProblem), - errors: core.serialization.list(ErrorValidationProblem), - logs: core.serialization.list(DebugModeLog).optional(), -}); - -export declare namespace CreditNoteResponse { - export interface Raw { - model: serializers.accounting.CreditNote.Raw; - warnings: WarningValidationProblem.Raw[]; - errors: ErrorValidationProblem.Raw[]; - logs?: DebugModeLog.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/CreditNoteStatus.ts b/src/serialization/resources/accounting/types/CreditNoteStatus.ts deleted file mode 100644 index d26df6ddd..000000000 --- a/src/serialization/resources/accounting/types/CreditNoteStatus.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CreditNoteStatusEnum } from "./CreditNoteStatusEnum"; - -export const CreditNoteStatus: core.serialization.Schema< - serializers.accounting.CreditNoteStatus.Raw, - Merge.accounting.CreditNoteStatus -> = core.serialization.undiscriminatedUnion([CreditNoteStatusEnum, core.serialization.string()]); - -export declare namespace CreditNoteStatus { - export type Raw = CreditNoteStatusEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/CreditNoteStatusEnum.ts b/src/serialization/resources/accounting/types/CreditNoteStatusEnum.ts deleted file mode 100644 index 7e7e2dc4a..000000000 --- a/src/serialization/resources/accounting/types/CreditNoteStatusEnum.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const CreditNoteStatusEnum: core.serialization.Schema< - serializers.accounting.CreditNoteStatusEnum.Raw, - Merge.accounting.CreditNoteStatusEnum -> = core.serialization.enum_(["SUBMITTED", "AUTHORIZED", "PAID"]); - -export declare namespace CreditNoteStatusEnum { - export type Raw = "SUBMITTED" | "AUTHORIZED" | "PAID"; -} diff --git a/src/serialization/resources/accounting/types/CreditNoteTrackingCategoriesItem.ts b/src/serialization/resources/accounting/types/CreditNoteTrackingCategoriesItem.ts deleted file mode 100644 index 901f1d3dd..000000000 --- a/src/serialization/resources/accounting/types/CreditNoteTrackingCategoriesItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TrackingCategory } from "./TrackingCategory"; - -export const CreditNoteTrackingCategoriesItem: core.serialization.Schema< - serializers.accounting.CreditNoteTrackingCategoriesItem.Raw, - Merge.accounting.CreditNoteTrackingCategoriesItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), TrackingCategory]); - -export declare namespace CreditNoteTrackingCategoriesItem { - export type Raw = string | TrackingCategory.Raw; -} diff --git a/src/serialization/resources/accounting/types/CreditOrDebitEnum.ts b/src/serialization/resources/accounting/types/CreditOrDebitEnum.ts deleted file mode 100644 index 28550c245..000000000 --- a/src/serialization/resources/accounting/types/CreditOrDebitEnum.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const CreditOrDebitEnum: core.serialization.Schema< - serializers.accounting.CreditOrDebitEnum.Raw, - Merge.accounting.CreditOrDebitEnum -> = core.serialization.enum_(["CREDIT", "DEBIT"]); - -export declare namespace CreditOrDebitEnum { - export type Raw = "CREDIT" | "DEBIT"; -} diff --git a/src/serialization/resources/accounting/types/DataPassthroughRequest.ts b/src/serialization/resources/accounting/types/DataPassthroughRequest.ts deleted file mode 100644 index f7b6734c9..000000000 --- a/src/serialization/resources/accounting/types/DataPassthroughRequest.ts +++ /dev/null @@ -1,38 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { DataPassthroughRequestMethod } from "./DataPassthroughRequestMethod"; -import { MultipartFormFieldRequest } from "./MultipartFormFieldRequest"; -import { RequestFormatEnum } from "./RequestFormatEnum"; - -export const DataPassthroughRequest: core.serialization.ObjectSchema< - serializers.accounting.DataPassthroughRequest.Raw, - Merge.accounting.DataPassthroughRequest -> = core.serialization.object({ - method: DataPassthroughRequestMethod, - path: core.serialization.string(), - baseUrlOverride: core.serialization.property("base_url_override", core.serialization.string().optional()), - data: core.serialization.string().optional(), - multipartFormData: core.serialization.property( - "multipart_form_data", - core.serialization.list(MultipartFormFieldRequest).optional(), - ), - headers: core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - requestFormat: core.serialization.property("request_format", RequestFormatEnum.optional()), - normalizeResponse: core.serialization.property("normalize_response", core.serialization.boolean().optional()), -}); - -export declare namespace DataPassthroughRequest { - export interface Raw { - method: DataPassthroughRequestMethod.Raw; - path: string; - base_url_override?: string | null; - data?: string | null; - multipart_form_data?: MultipartFormFieldRequest.Raw[] | null; - headers?: Record | null; - request_format?: RequestFormatEnum.Raw | null; - normalize_response?: boolean | null; - } -} diff --git a/src/serialization/resources/accounting/types/DataPassthroughRequestMethod.ts b/src/serialization/resources/accounting/types/DataPassthroughRequestMethod.ts deleted file mode 100644 index 137a96e09..000000000 --- a/src/serialization/resources/accounting/types/DataPassthroughRequestMethod.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { MethodEnum } from "./MethodEnum"; - -export const DataPassthroughRequestMethod: core.serialization.Schema< - serializers.accounting.DataPassthroughRequestMethod.Raw, - Merge.accounting.DataPassthroughRequestMethod -> = core.serialization.undiscriminatedUnion([MethodEnum, core.serialization.string()]); - -export declare namespace DataPassthroughRequestMethod { - export type Raw = MethodEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/DebugModeLog.ts b/src/serialization/resources/accounting/types/DebugModeLog.ts deleted file mode 100644 index f342006d6..000000000 --- a/src/serialization/resources/accounting/types/DebugModeLog.ts +++ /dev/null @@ -1,23 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { DebugModelLogSummary } from "./DebugModelLogSummary"; - -export const DebugModeLog: core.serialization.ObjectSchema< - serializers.accounting.DebugModeLog.Raw, - Merge.accounting.DebugModeLog -> = core.serialization.object({ - logId: core.serialization.property("log_id", core.serialization.string()), - dashboardView: core.serialization.property("dashboard_view", core.serialization.string()), - logSummary: core.serialization.property("log_summary", DebugModelLogSummary), -}); - -export declare namespace DebugModeLog { - export interface Raw { - log_id: string; - dashboard_view: string; - log_summary: DebugModelLogSummary.Raw; - } -} diff --git a/src/serialization/resources/accounting/types/DebugModelLogSummary.ts b/src/serialization/resources/accounting/types/DebugModelLogSummary.ts deleted file mode 100644 index e65899bfa..000000000 --- a/src/serialization/resources/accounting/types/DebugModelLogSummary.ts +++ /dev/null @@ -1,22 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const DebugModelLogSummary: core.serialization.ObjectSchema< - serializers.accounting.DebugModelLogSummary.Raw, - Merge.accounting.DebugModelLogSummary -> = core.serialization.object({ - url: core.serialization.string(), - method: core.serialization.string(), - statusCode: core.serialization.property("status_code", core.serialization.number()), -}); - -export declare namespace DebugModelLogSummary { - export interface Raw { - url: string; - method: string; - status_code: number; - } -} diff --git a/src/serialization/resources/accounting/types/Employee.ts b/src/serialization/resources/accounting/types/Employee.ts deleted file mode 100644 index b61e9c48a..000000000 --- a/src/serialization/resources/accounting/types/Employee.ts +++ /dev/null @@ -1,48 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { EmployeeCompany } from "./EmployeeCompany"; -import { EmployeeStatus } from "./EmployeeStatus"; -import { RemoteData } from "./RemoteData"; - -export const Employee: core.serialization.ObjectSchema = - core.serialization.object({ - id: core.serialization.string().optional(), - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - createdAt: core.serialization.property("created_at", core.serialization.date().optional()), - modifiedAt: core.serialization.property("modified_at", core.serialization.date().optional()), - firstName: core.serialization.property("first_name", core.serialization.string().optional()), - lastName: core.serialization.property("last_name", core.serialization.string().optional()), - isContractor: core.serialization.property("is_contractor", core.serialization.boolean().optional()), - employeeNumber: core.serialization.property("employee_number", core.serialization.string().optional()), - emailAddress: core.serialization.property("email_address", core.serialization.string().optional()), - company: EmployeeCompany.optional(), - status: EmployeeStatus, - remoteWasDeleted: core.serialization.property("remote_was_deleted", core.serialization.boolean().optional()), - fieldMappings: core.serialization.property( - "field_mappings", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - remoteData: core.serialization.property("remote_data", core.serialization.list(RemoteData).optional()), - }); - -export declare namespace Employee { - export interface Raw { - id?: string | null; - remote_id?: string | null; - created_at?: string | null; - modified_at?: string | null; - first_name?: string | null; - last_name?: string | null; - is_contractor?: boolean | null; - employee_number?: string | null; - email_address?: string | null; - company?: EmployeeCompany.Raw | null; - status: EmployeeStatus.Raw; - remote_was_deleted?: boolean | null; - field_mappings?: Record | null; - remote_data?: RemoteData.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/EmployeeCompany.ts b/src/serialization/resources/accounting/types/EmployeeCompany.ts deleted file mode 100644 index 0df10217d..000000000 --- a/src/serialization/resources/accounting/types/EmployeeCompany.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CompanyInfo } from "./CompanyInfo"; - -export const EmployeeCompany: core.serialization.Schema< - serializers.accounting.EmployeeCompany.Raw, - Merge.accounting.EmployeeCompany -> = core.serialization.undiscriminatedUnion([core.serialization.string(), CompanyInfo]); - -export declare namespace EmployeeCompany { - export type Raw = string | CompanyInfo.Raw; -} diff --git a/src/serialization/resources/accounting/types/EmployeeStatus.ts b/src/serialization/resources/accounting/types/EmployeeStatus.ts deleted file mode 100644 index e7041057d..000000000 --- a/src/serialization/resources/accounting/types/EmployeeStatus.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Status895Enum } from "./Status895Enum"; - -export const EmployeeStatus: core.serialization.Schema< - serializers.accounting.EmployeeStatus.Raw, - Merge.accounting.EmployeeStatus -> = core.serialization.undiscriminatedUnion([Status895Enum, core.serialization.string()]); - -export declare namespace EmployeeStatus { - export type Raw = Status895Enum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/EnabledActionsEnum.ts b/src/serialization/resources/accounting/types/EnabledActionsEnum.ts deleted file mode 100644 index 2dde38841..000000000 --- a/src/serialization/resources/accounting/types/EnabledActionsEnum.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const EnabledActionsEnum: core.serialization.Schema< - serializers.accounting.EnabledActionsEnum.Raw, - Merge.accounting.EnabledActionsEnum -> = core.serialization.enum_(["READ", "WRITE"]); - -export declare namespace EnabledActionsEnum { - export type Raw = "READ" | "WRITE"; -} diff --git a/src/serialization/resources/accounting/types/EncodingEnum.ts b/src/serialization/resources/accounting/types/EncodingEnum.ts deleted file mode 100644 index b99335d36..000000000 --- a/src/serialization/resources/accounting/types/EncodingEnum.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const EncodingEnum: core.serialization.Schema< - serializers.accounting.EncodingEnum.Raw, - Merge.accounting.EncodingEnum -> = core.serialization.enum_(["RAW", "BASE64", "GZIP_BASE64"]); - -export declare namespace EncodingEnum { - export type Raw = "RAW" | "BASE64" | "GZIP_BASE64"; -} diff --git a/src/serialization/resources/accounting/types/ErrorValidationProblem.ts b/src/serialization/resources/accounting/types/ErrorValidationProblem.ts deleted file mode 100644 index bfaef8d71..000000000 --- a/src/serialization/resources/accounting/types/ErrorValidationProblem.ts +++ /dev/null @@ -1,25 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { ValidationProblemSource } from "./ValidationProblemSource"; - -export const ErrorValidationProblem: core.serialization.ObjectSchema< - serializers.accounting.ErrorValidationProblem.Raw, - Merge.accounting.ErrorValidationProblem -> = core.serialization.object({ - source: ValidationProblemSource.optional(), - title: core.serialization.string(), - detail: core.serialization.string(), - problemType: core.serialization.property("problem_type", core.serialization.string()), -}); - -export declare namespace ErrorValidationProblem { - export interface Raw { - source?: ValidationProblemSource.Raw | null; - title: string; - detail: string; - problem_type: string; - } -} diff --git a/src/serialization/resources/accounting/types/EventTypeEnum.ts b/src/serialization/resources/accounting/types/EventTypeEnum.ts deleted file mode 100644 index 711ce4321..000000000 --- a/src/serialization/resources/accounting/types/EventTypeEnum.ts +++ /dev/null @@ -1,101 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const EventTypeEnum: core.serialization.Schema< - serializers.accounting.EventTypeEnum.Raw, - Merge.accounting.EventTypeEnum -> = core.serialization.enum_([ - "CREATED_REMOTE_PRODUCTION_API_KEY", - "DELETED_REMOTE_PRODUCTION_API_KEY", - "CREATED_TEST_API_KEY", - "DELETED_TEST_API_KEY", - "REGENERATED_PRODUCTION_API_KEY", - "REGENERATED_WEBHOOK_SIGNATURE", - "INVITED_USER", - "TWO_FACTOR_AUTH_ENABLED", - "TWO_FACTOR_AUTH_DISABLED", - "DELETED_LINKED_ACCOUNT", - "DELETED_ALL_COMMON_MODELS_FOR_LINKED_ACCOUNT", - "CREATED_DESTINATION", - "DELETED_DESTINATION", - "CHANGED_DESTINATION", - "CHANGED_SCOPES", - "CHANGED_PERSONAL_INFORMATION", - "CHANGED_ORGANIZATION_SETTINGS", - "ENABLED_INTEGRATION", - "DISABLED_INTEGRATION", - "ENABLED_CATEGORY", - "DISABLED_CATEGORY", - "CHANGED_PASSWORD", - "RESET_PASSWORD", - "ENABLED_REDACT_UNMAPPED_DATA_FOR_ORGANIZATION", - "ENABLED_REDACT_UNMAPPED_DATA_FOR_LINKED_ACCOUNT", - "DISABLED_REDACT_UNMAPPED_DATA_FOR_ORGANIZATION", - "DISABLED_REDACT_UNMAPPED_DATA_FOR_LINKED_ACCOUNT", - "CREATED_INTEGRATION_WIDE_FIELD_MAPPING", - "CREATED_LINKED_ACCOUNT_FIELD_MAPPING", - "CHANGED_INTEGRATION_WIDE_FIELD_MAPPING", - "CHANGED_LINKED_ACCOUNT_FIELD_MAPPING", - "DELETED_INTEGRATION_WIDE_FIELD_MAPPING", - "DELETED_LINKED_ACCOUNT_FIELD_MAPPING", - "CREATED_LINKED_ACCOUNT_COMMON_MODEL_OVERRIDE", - "CHANGED_LINKED_ACCOUNT_COMMON_MODEL_OVERRIDE", - "DELETED_LINKED_ACCOUNT_COMMON_MODEL_OVERRIDE", - "FORCED_LINKED_ACCOUNT_RESYNC", - "MUTED_ISSUE", - "GENERATED_MAGIC_LINK", - "ENABLED_MERGE_WEBHOOK", - "DISABLED_MERGE_WEBHOOK", - "MERGE_WEBHOOK_TARGET_CHANGED", - "END_USER_CREDENTIALS_ACCESSED", -]); - -export declare namespace EventTypeEnum { - export type Raw = - | "CREATED_REMOTE_PRODUCTION_API_KEY" - | "DELETED_REMOTE_PRODUCTION_API_KEY" - | "CREATED_TEST_API_KEY" - | "DELETED_TEST_API_KEY" - | "REGENERATED_PRODUCTION_API_KEY" - | "REGENERATED_WEBHOOK_SIGNATURE" - | "INVITED_USER" - | "TWO_FACTOR_AUTH_ENABLED" - | "TWO_FACTOR_AUTH_DISABLED" - | "DELETED_LINKED_ACCOUNT" - | "DELETED_ALL_COMMON_MODELS_FOR_LINKED_ACCOUNT" - | "CREATED_DESTINATION" - | "DELETED_DESTINATION" - | "CHANGED_DESTINATION" - | "CHANGED_SCOPES" - | "CHANGED_PERSONAL_INFORMATION" - | "CHANGED_ORGANIZATION_SETTINGS" - | "ENABLED_INTEGRATION" - | "DISABLED_INTEGRATION" - | "ENABLED_CATEGORY" - | "DISABLED_CATEGORY" - | "CHANGED_PASSWORD" - | "RESET_PASSWORD" - | "ENABLED_REDACT_UNMAPPED_DATA_FOR_ORGANIZATION" - | "ENABLED_REDACT_UNMAPPED_DATA_FOR_LINKED_ACCOUNT" - | "DISABLED_REDACT_UNMAPPED_DATA_FOR_ORGANIZATION" - | "DISABLED_REDACT_UNMAPPED_DATA_FOR_LINKED_ACCOUNT" - | "CREATED_INTEGRATION_WIDE_FIELD_MAPPING" - | "CREATED_LINKED_ACCOUNT_FIELD_MAPPING" - | "CHANGED_INTEGRATION_WIDE_FIELD_MAPPING" - | "CHANGED_LINKED_ACCOUNT_FIELD_MAPPING" - | "DELETED_INTEGRATION_WIDE_FIELD_MAPPING" - | "DELETED_LINKED_ACCOUNT_FIELD_MAPPING" - | "CREATED_LINKED_ACCOUNT_COMMON_MODEL_OVERRIDE" - | "CHANGED_LINKED_ACCOUNT_COMMON_MODEL_OVERRIDE" - | "DELETED_LINKED_ACCOUNT_COMMON_MODEL_OVERRIDE" - | "FORCED_LINKED_ACCOUNT_RESYNC" - | "MUTED_ISSUE" - | "GENERATED_MAGIC_LINK" - | "ENABLED_MERGE_WEBHOOK" - | "DISABLED_MERGE_WEBHOOK" - | "MERGE_WEBHOOK_TARGET_CHANGED" - | "END_USER_CREDENTIALS_ACCESSED"; -} diff --git a/src/serialization/resources/accounting/types/Expense.ts b/src/serialization/resources/accounting/types/Expense.ts deleted file mode 100644 index f5cb61a45..000000000 --- a/src/serialization/resources/accounting/types/Expense.ts +++ /dev/null @@ -1,78 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { ExpenseAccount } from "./ExpenseAccount"; -import { ExpenseAccountingPeriod } from "./ExpenseAccountingPeriod"; -import { ExpenseCompany } from "./ExpenseCompany"; -import { ExpenseContact } from "./ExpenseContact"; -import { ExpenseCurrency } from "./ExpenseCurrency"; -import { ExpenseEmployee } from "./ExpenseEmployee"; -import { ExpenseLine } from "./ExpenseLine"; -import { ExpenseTrackingCategoriesItem } from "./ExpenseTrackingCategoriesItem"; -import { RemoteData } from "./RemoteData"; -import { RemoteField } from "./RemoteField"; - -export const Expense: core.serialization.ObjectSchema = - core.serialization.object({ - id: core.serialization.string().optional(), - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - createdAt: core.serialization.property("created_at", core.serialization.date().optional()), - modifiedAt: core.serialization.property("modified_at", core.serialization.date().optional()), - transactionDate: core.serialization.property("transaction_date", core.serialization.date().optional()), - remoteCreatedAt: core.serialization.property("remote_created_at", core.serialization.date().optional()), - account: ExpenseAccount.optional(), - contact: ExpenseContact.optional(), - totalAmount: core.serialization.property("total_amount", core.serialization.number().optional()), - subTotal: core.serialization.property("sub_total", core.serialization.number().optional()), - totalTaxAmount: core.serialization.property("total_tax_amount", core.serialization.number().optional()), - currency: ExpenseCurrency.optional(), - exchangeRate: core.serialization.property("exchange_rate", core.serialization.string().optional()), - inclusiveOfTax: core.serialization.property("inclusive_of_tax", core.serialization.boolean().optional()), - company: ExpenseCompany.optional(), - employee: ExpenseEmployee.optional(), - memo: core.serialization.string().optional(), - lines: core.serialization.list(ExpenseLine).optional(), - trackingCategories: core.serialization.property( - "tracking_categories", - core.serialization.list(ExpenseTrackingCategoriesItem.optional()).optional(), - ), - remoteWasDeleted: core.serialization.property("remote_was_deleted", core.serialization.boolean().optional()), - accountingPeriod: core.serialization.property("accounting_period", ExpenseAccountingPeriod.optional()), - fieldMappings: core.serialization.property( - "field_mappings", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - remoteData: core.serialization.property("remote_data", core.serialization.list(RemoteData).optional()), - remoteFields: core.serialization.property("remote_fields", core.serialization.list(RemoteField).optional()), - }); - -export declare namespace Expense { - export interface Raw { - id?: string | null; - remote_id?: string | null; - created_at?: string | null; - modified_at?: string | null; - transaction_date?: string | null; - remote_created_at?: string | null; - account?: ExpenseAccount.Raw | null; - contact?: ExpenseContact.Raw | null; - total_amount?: number | null; - sub_total?: number | null; - total_tax_amount?: number | null; - currency?: ExpenseCurrency.Raw | null; - exchange_rate?: string | null; - inclusive_of_tax?: boolean | null; - company?: ExpenseCompany.Raw | null; - employee?: ExpenseEmployee.Raw | null; - memo?: string | null; - lines?: ExpenseLine.Raw[] | null; - tracking_categories?: (ExpenseTrackingCategoriesItem.Raw | null | undefined)[] | null; - remote_was_deleted?: boolean | null; - accounting_period?: ExpenseAccountingPeriod.Raw | null; - field_mappings?: Record | null; - remote_data?: RemoteData.Raw[] | null; - remote_fields?: RemoteField.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/ExpenseAccount.ts b/src/serialization/resources/accounting/types/ExpenseAccount.ts deleted file mode 100644 index 939308b28..000000000 --- a/src/serialization/resources/accounting/types/ExpenseAccount.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Account } from "./Account"; - -export const ExpenseAccount: core.serialization.Schema< - serializers.accounting.ExpenseAccount.Raw, - Merge.accounting.ExpenseAccount -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Account]); - -export declare namespace ExpenseAccount { - export type Raw = string | Account.Raw; -} diff --git a/src/serialization/resources/accounting/types/ExpenseAccountingPeriod.ts b/src/serialization/resources/accounting/types/ExpenseAccountingPeriod.ts deleted file mode 100644 index 941950839..000000000 --- a/src/serialization/resources/accounting/types/ExpenseAccountingPeriod.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { AccountingPeriod } from "./AccountingPeriod"; - -export const ExpenseAccountingPeriod: core.serialization.Schema< - serializers.accounting.ExpenseAccountingPeriod.Raw, - Merge.accounting.ExpenseAccountingPeriod -> = core.serialization.undiscriminatedUnion([core.serialization.string(), AccountingPeriod]); - -export declare namespace ExpenseAccountingPeriod { - export type Raw = string | AccountingPeriod.Raw; -} diff --git a/src/serialization/resources/accounting/types/ExpenseCompany.ts b/src/serialization/resources/accounting/types/ExpenseCompany.ts deleted file mode 100644 index 1a6636e5a..000000000 --- a/src/serialization/resources/accounting/types/ExpenseCompany.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CompanyInfo } from "./CompanyInfo"; - -export const ExpenseCompany: core.serialization.Schema< - serializers.accounting.ExpenseCompany.Raw, - Merge.accounting.ExpenseCompany -> = core.serialization.undiscriminatedUnion([core.serialization.string(), CompanyInfo]); - -export declare namespace ExpenseCompany { - export type Raw = string | CompanyInfo.Raw; -} diff --git a/src/serialization/resources/accounting/types/ExpenseContact.ts b/src/serialization/resources/accounting/types/ExpenseContact.ts deleted file mode 100644 index 938971d5b..000000000 --- a/src/serialization/resources/accounting/types/ExpenseContact.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Contact } from "./Contact"; - -export const ExpenseContact: core.serialization.Schema< - serializers.accounting.ExpenseContact.Raw, - Merge.accounting.ExpenseContact -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Contact]); - -export declare namespace ExpenseContact { - export type Raw = string | Contact.Raw; -} diff --git a/src/serialization/resources/accounting/types/ExpenseCurrency.ts b/src/serialization/resources/accounting/types/ExpenseCurrency.ts deleted file mode 100644 index 493019af5..000000000 --- a/src/serialization/resources/accounting/types/ExpenseCurrency.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TransactionCurrencyEnum } from "./TransactionCurrencyEnum"; - -export const ExpenseCurrency: core.serialization.Schema< - serializers.accounting.ExpenseCurrency.Raw, - Merge.accounting.ExpenseCurrency -> = core.serialization.undiscriminatedUnion([TransactionCurrencyEnum, core.serialization.string()]); - -export declare namespace ExpenseCurrency { - export type Raw = TransactionCurrencyEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/ExpenseEmployee.ts b/src/serialization/resources/accounting/types/ExpenseEmployee.ts deleted file mode 100644 index 10fbfb253..000000000 --- a/src/serialization/resources/accounting/types/ExpenseEmployee.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Employee } from "./Employee"; - -export const ExpenseEmployee: core.serialization.Schema< - serializers.accounting.ExpenseEmployee.Raw, - Merge.accounting.ExpenseEmployee -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Employee]); - -export declare namespace ExpenseEmployee { - export type Raw = string | Employee.Raw; -} diff --git a/src/serialization/resources/accounting/types/ExpenseLine.ts b/src/serialization/resources/accounting/types/ExpenseLine.ts deleted file mode 100644 index 880be54cd..000000000 --- a/src/serialization/resources/accounting/types/ExpenseLine.ts +++ /dev/null @@ -1,67 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { ExpenseLineAccount } from "./ExpenseLineAccount"; -import { ExpenseLineContact } from "./ExpenseLineContact"; -import { ExpenseLineCurrency } from "./ExpenseLineCurrency"; -import { ExpenseLineEmployee } from "./ExpenseLineEmployee"; -import { ExpenseLineItem } from "./ExpenseLineItem"; -import { ExpenseLineProject } from "./ExpenseLineProject"; -import { ExpenseLineTrackingCategoriesItem } from "./ExpenseLineTrackingCategoriesItem"; -import { ExpenseLineTrackingCategory } from "./ExpenseLineTrackingCategory"; - -export const ExpenseLine: core.serialization.ObjectSchema< - serializers.accounting.ExpenseLine.Raw, - Merge.accounting.ExpenseLine -> = core.serialization.object({ - id: core.serialization.string().optional(), - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - createdAt: core.serialization.property("created_at", core.serialization.date().optional()), - modifiedAt: core.serialization.property("modified_at", core.serialization.date().optional()), - item: ExpenseLineItem.optional(), - netAmount: core.serialization.property("net_amount", core.serialization.number().optional()), - trackingCategory: core.serialization.property("tracking_category", ExpenseLineTrackingCategory.optional()), - trackingCategories: core.serialization.property( - "tracking_categories", - core.serialization.list(ExpenseLineTrackingCategoriesItem.optional()).optional(), - ), - company: core.serialization.string().optional(), - employee: ExpenseLineEmployee.optional(), - currency: ExpenseLineCurrency.optional(), - account: ExpenseLineAccount.optional(), - contact: ExpenseLineContact.optional(), - project: ExpenseLineProject.optional(), - description: core.serialization.string().optional(), - exchangeRate: core.serialization.property("exchange_rate", core.serialization.string().optional()), - taxRate: core.serialization.property("tax_rate", core.serialization.string().optional()), - quantity: core.serialization.string().optional(), - unitPrice: core.serialization.property("unit_price", core.serialization.string().optional()), - remoteWasDeleted: core.serialization.property("remote_was_deleted", core.serialization.boolean().optional()), -}); - -export declare namespace ExpenseLine { - export interface Raw { - id?: string | null; - remote_id?: string | null; - created_at?: string | null; - modified_at?: string | null; - item?: ExpenseLineItem.Raw | null; - net_amount?: number | null; - tracking_category?: ExpenseLineTrackingCategory.Raw | null; - tracking_categories?: (ExpenseLineTrackingCategoriesItem.Raw | null | undefined)[] | null; - company?: string | null; - employee?: ExpenseLineEmployee.Raw | null; - currency?: ExpenseLineCurrency.Raw | null; - account?: ExpenseLineAccount.Raw | null; - contact?: ExpenseLineContact.Raw | null; - project?: ExpenseLineProject.Raw | null; - description?: string | null; - exchange_rate?: string | null; - tax_rate?: string | null; - quantity?: string | null; - unit_price?: string | null; - remote_was_deleted?: boolean | null; - } -} diff --git a/src/serialization/resources/accounting/types/ExpenseLineAccount.ts b/src/serialization/resources/accounting/types/ExpenseLineAccount.ts deleted file mode 100644 index fa5656072..000000000 --- a/src/serialization/resources/accounting/types/ExpenseLineAccount.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Account } from "./Account"; - -export const ExpenseLineAccount: core.serialization.Schema< - serializers.accounting.ExpenseLineAccount.Raw, - Merge.accounting.ExpenseLineAccount -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Account]); - -export declare namespace ExpenseLineAccount { - export type Raw = string | Account.Raw; -} diff --git a/src/serialization/resources/accounting/types/ExpenseLineContact.ts b/src/serialization/resources/accounting/types/ExpenseLineContact.ts deleted file mode 100644 index cf6be225d..000000000 --- a/src/serialization/resources/accounting/types/ExpenseLineContact.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Contact } from "./Contact"; - -export const ExpenseLineContact: core.serialization.Schema< - serializers.accounting.ExpenseLineContact.Raw, - Merge.accounting.ExpenseLineContact -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Contact]); - -export declare namespace ExpenseLineContact { - export type Raw = string | Contact.Raw; -} diff --git a/src/serialization/resources/accounting/types/ExpenseLineCurrency.ts b/src/serialization/resources/accounting/types/ExpenseLineCurrency.ts deleted file mode 100644 index cd7161afa..000000000 --- a/src/serialization/resources/accounting/types/ExpenseLineCurrency.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TransactionCurrencyEnum } from "./TransactionCurrencyEnum"; - -export const ExpenseLineCurrency: core.serialization.Schema< - serializers.accounting.ExpenseLineCurrency.Raw, - Merge.accounting.ExpenseLineCurrency -> = core.serialization.undiscriminatedUnion([TransactionCurrencyEnum, core.serialization.string()]); - -export declare namespace ExpenseLineCurrency { - export type Raw = TransactionCurrencyEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/ExpenseLineEmployee.ts b/src/serialization/resources/accounting/types/ExpenseLineEmployee.ts deleted file mode 100644 index f45285451..000000000 --- a/src/serialization/resources/accounting/types/ExpenseLineEmployee.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Employee } from "./Employee"; - -export const ExpenseLineEmployee: core.serialization.Schema< - serializers.accounting.ExpenseLineEmployee.Raw, - Merge.accounting.ExpenseLineEmployee -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Employee]); - -export declare namespace ExpenseLineEmployee { - export type Raw = string | Employee.Raw; -} diff --git a/src/serialization/resources/accounting/types/ExpenseLineItem.ts b/src/serialization/resources/accounting/types/ExpenseLineItem.ts deleted file mode 100644 index d8c858786..000000000 --- a/src/serialization/resources/accounting/types/ExpenseLineItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Item } from "./Item"; - -export const ExpenseLineItem: core.serialization.Schema< - serializers.accounting.ExpenseLineItem.Raw, - Merge.accounting.ExpenseLineItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Item]); - -export declare namespace ExpenseLineItem { - export type Raw = string | Item.Raw; -} diff --git a/src/serialization/resources/accounting/types/ExpenseLineProject.ts b/src/serialization/resources/accounting/types/ExpenseLineProject.ts deleted file mode 100644 index 1bab4ef4a..000000000 --- a/src/serialization/resources/accounting/types/ExpenseLineProject.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Project } from "./Project"; - -export const ExpenseLineProject: core.serialization.Schema< - serializers.accounting.ExpenseLineProject.Raw, - Merge.accounting.ExpenseLineProject -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Project]); - -export declare namespace ExpenseLineProject { - export type Raw = string | Project.Raw; -} diff --git a/src/serialization/resources/accounting/types/ExpenseLineRequest.ts b/src/serialization/resources/accounting/types/ExpenseLineRequest.ts deleted file mode 100644 index f1f857947..000000000 --- a/src/serialization/resources/accounting/types/ExpenseLineRequest.ts +++ /dev/null @@ -1,72 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { ExpenseLineRequestAccount } from "./ExpenseLineRequestAccount"; -import { ExpenseLineRequestContact } from "./ExpenseLineRequestContact"; -import { ExpenseLineRequestCurrency } from "./ExpenseLineRequestCurrency"; -import { ExpenseLineRequestEmployee } from "./ExpenseLineRequestEmployee"; -import { ExpenseLineRequestItem } from "./ExpenseLineRequestItem"; -import { ExpenseLineRequestProject } from "./ExpenseLineRequestProject"; -import { ExpenseLineRequestTrackingCategoriesItem } from "./ExpenseLineRequestTrackingCategoriesItem"; -import { ExpenseLineRequestTrackingCategory } from "./ExpenseLineRequestTrackingCategory"; -import { RemoteFieldRequest } from "./RemoteFieldRequest"; - -export const ExpenseLineRequest: core.serialization.ObjectSchema< - serializers.accounting.ExpenseLineRequest.Raw, - Merge.accounting.ExpenseLineRequest -> = core.serialization.object({ - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - item: ExpenseLineRequestItem.optional(), - netAmount: core.serialization.property("net_amount", core.serialization.number().optional()), - trackingCategory: core.serialization.property("tracking_category", ExpenseLineRequestTrackingCategory.optional()), - trackingCategories: core.serialization.property( - "tracking_categories", - core.serialization.list(ExpenseLineRequestTrackingCategoriesItem.optional()).optional(), - ), - company: core.serialization.string().optional(), - employee: ExpenseLineRequestEmployee.optional(), - currency: ExpenseLineRequestCurrency.optional(), - account: ExpenseLineRequestAccount.optional(), - contact: ExpenseLineRequestContact.optional(), - project: ExpenseLineRequestProject.optional(), - description: core.serialization.string().optional(), - exchangeRate: core.serialization.property("exchange_rate", core.serialization.string().optional()), - taxRate: core.serialization.property("tax_rate", core.serialization.string().optional()), - quantity: core.serialization.string().optional(), - unitPrice: core.serialization.property("unit_price", core.serialization.string().optional()), - integrationParams: core.serialization.property( - "integration_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - linkedAccountParams: core.serialization.property( - "linked_account_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - remoteFields: core.serialization.property("remote_fields", core.serialization.list(RemoteFieldRequest).optional()), -}); - -export declare namespace ExpenseLineRequest { - export interface Raw { - remote_id?: string | null; - item?: ExpenseLineRequestItem.Raw | null; - net_amount?: number | null; - tracking_category?: ExpenseLineRequestTrackingCategory.Raw | null; - tracking_categories?: (ExpenseLineRequestTrackingCategoriesItem.Raw | null | undefined)[] | null; - company?: string | null; - employee?: ExpenseLineRequestEmployee.Raw | null; - currency?: ExpenseLineRequestCurrency.Raw | null; - account?: ExpenseLineRequestAccount.Raw | null; - contact?: ExpenseLineRequestContact.Raw | null; - project?: ExpenseLineRequestProject.Raw | null; - description?: string | null; - exchange_rate?: string | null; - tax_rate?: string | null; - quantity?: string | null; - unit_price?: string | null; - integration_params?: Record | null; - linked_account_params?: Record | null; - remote_fields?: RemoteFieldRequest.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/ExpenseLineRequestAccount.ts b/src/serialization/resources/accounting/types/ExpenseLineRequestAccount.ts deleted file mode 100644 index f8b5a75dd..000000000 --- a/src/serialization/resources/accounting/types/ExpenseLineRequestAccount.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Account } from "./Account"; - -export const ExpenseLineRequestAccount: core.serialization.Schema< - serializers.accounting.ExpenseLineRequestAccount.Raw, - Merge.accounting.ExpenseLineRequestAccount -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Account]); - -export declare namespace ExpenseLineRequestAccount { - export type Raw = string | Account.Raw; -} diff --git a/src/serialization/resources/accounting/types/ExpenseLineRequestContact.ts b/src/serialization/resources/accounting/types/ExpenseLineRequestContact.ts deleted file mode 100644 index fcde8338c..000000000 --- a/src/serialization/resources/accounting/types/ExpenseLineRequestContact.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Contact } from "./Contact"; - -export const ExpenseLineRequestContact: core.serialization.Schema< - serializers.accounting.ExpenseLineRequestContact.Raw, - Merge.accounting.ExpenseLineRequestContact -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Contact]); - -export declare namespace ExpenseLineRequestContact { - export type Raw = string | Contact.Raw; -} diff --git a/src/serialization/resources/accounting/types/ExpenseLineRequestCurrency.ts b/src/serialization/resources/accounting/types/ExpenseLineRequestCurrency.ts deleted file mode 100644 index bb65cbe3b..000000000 --- a/src/serialization/resources/accounting/types/ExpenseLineRequestCurrency.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TransactionCurrencyEnum } from "./TransactionCurrencyEnum"; - -export const ExpenseLineRequestCurrency: core.serialization.Schema< - serializers.accounting.ExpenseLineRequestCurrency.Raw, - Merge.accounting.ExpenseLineRequestCurrency -> = core.serialization.undiscriminatedUnion([TransactionCurrencyEnum, core.serialization.string()]); - -export declare namespace ExpenseLineRequestCurrency { - export type Raw = TransactionCurrencyEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/ExpenseLineRequestEmployee.ts b/src/serialization/resources/accounting/types/ExpenseLineRequestEmployee.ts deleted file mode 100644 index a7f5920d7..000000000 --- a/src/serialization/resources/accounting/types/ExpenseLineRequestEmployee.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Employee } from "./Employee"; - -export const ExpenseLineRequestEmployee: core.serialization.Schema< - serializers.accounting.ExpenseLineRequestEmployee.Raw, - Merge.accounting.ExpenseLineRequestEmployee -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Employee]); - -export declare namespace ExpenseLineRequestEmployee { - export type Raw = string | Employee.Raw; -} diff --git a/src/serialization/resources/accounting/types/ExpenseLineRequestItem.ts b/src/serialization/resources/accounting/types/ExpenseLineRequestItem.ts deleted file mode 100644 index 65d7d0923..000000000 --- a/src/serialization/resources/accounting/types/ExpenseLineRequestItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Item } from "./Item"; - -export const ExpenseLineRequestItem: core.serialization.Schema< - serializers.accounting.ExpenseLineRequestItem.Raw, - Merge.accounting.ExpenseLineRequestItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Item]); - -export declare namespace ExpenseLineRequestItem { - export type Raw = string | Item.Raw; -} diff --git a/src/serialization/resources/accounting/types/ExpenseLineRequestProject.ts b/src/serialization/resources/accounting/types/ExpenseLineRequestProject.ts deleted file mode 100644 index 10a989f23..000000000 --- a/src/serialization/resources/accounting/types/ExpenseLineRequestProject.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Contact } from "./Contact"; - -export const ExpenseLineRequestProject: core.serialization.Schema< - serializers.accounting.ExpenseLineRequestProject.Raw, - Merge.accounting.ExpenseLineRequestProject -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Contact]); - -export declare namespace ExpenseLineRequestProject { - export type Raw = string | Contact.Raw; -} diff --git a/src/serialization/resources/accounting/types/ExpenseLineRequestTrackingCategoriesItem.ts b/src/serialization/resources/accounting/types/ExpenseLineRequestTrackingCategoriesItem.ts deleted file mode 100644 index 4db783559..000000000 --- a/src/serialization/resources/accounting/types/ExpenseLineRequestTrackingCategoriesItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TrackingCategory } from "./TrackingCategory"; - -export const ExpenseLineRequestTrackingCategoriesItem: core.serialization.Schema< - serializers.accounting.ExpenseLineRequestTrackingCategoriesItem.Raw, - Merge.accounting.ExpenseLineRequestTrackingCategoriesItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), TrackingCategory]); - -export declare namespace ExpenseLineRequestTrackingCategoriesItem { - export type Raw = string | TrackingCategory.Raw; -} diff --git a/src/serialization/resources/accounting/types/ExpenseLineRequestTrackingCategory.ts b/src/serialization/resources/accounting/types/ExpenseLineRequestTrackingCategory.ts deleted file mode 100644 index 964687be9..000000000 --- a/src/serialization/resources/accounting/types/ExpenseLineRequestTrackingCategory.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TrackingCategory } from "./TrackingCategory"; - -export const ExpenseLineRequestTrackingCategory: core.serialization.Schema< - serializers.accounting.ExpenseLineRequestTrackingCategory.Raw, - Merge.accounting.ExpenseLineRequestTrackingCategory -> = core.serialization.undiscriminatedUnion([core.serialization.string(), TrackingCategory]); - -export declare namespace ExpenseLineRequestTrackingCategory { - export type Raw = string | TrackingCategory.Raw; -} diff --git a/src/serialization/resources/accounting/types/ExpenseLineTrackingCategoriesItem.ts b/src/serialization/resources/accounting/types/ExpenseLineTrackingCategoriesItem.ts deleted file mode 100644 index 89afc4508..000000000 --- a/src/serialization/resources/accounting/types/ExpenseLineTrackingCategoriesItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TrackingCategory } from "./TrackingCategory"; - -export const ExpenseLineTrackingCategoriesItem: core.serialization.Schema< - serializers.accounting.ExpenseLineTrackingCategoriesItem.Raw, - Merge.accounting.ExpenseLineTrackingCategoriesItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), TrackingCategory]); - -export declare namespace ExpenseLineTrackingCategoriesItem { - export type Raw = string | TrackingCategory.Raw; -} diff --git a/src/serialization/resources/accounting/types/ExpenseLineTrackingCategory.ts b/src/serialization/resources/accounting/types/ExpenseLineTrackingCategory.ts deleted file mode 100644 index f4b122858..000000000 --- a/src/serialization/resources/accounting/types/ExpenseLineTrackingCategory.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TrackingCategory } from "./TrackingCategory"; - -export const ExpenseLineTrackingCategory: core.serialization.Schema< - serializers.accounting.ExpenseLineTrackingCategory.Raw, - Merge.accounting.ExpenseLineTrackingCategory -> = core.serialization.undiscriminatedUnion([core.serialization.string(), TrackingCategory]); - -export declare namespace ExpenseLineTrackingCategory { - export type Raw = string | TrackingCategory.Raw; -} diff --git a/src/serialization/resources/accounting/types/ExpenseReport.ts b/src/serialization/resources/accounting/types/ExpenseReport.ts deleted file mode 100644 index 6c1899c0a..000000000 --- a/src/serialization/resources/accounting/types/ExpenseReport.ts +++ /dev/null @@ -1,66 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { ExpenseReportCompany } from "./ExpenseReportCompany"; -import { ExpenseReportLine } from "./ExpenseReportLine"; -import { ExpenseReportStatus } from "./ExpenseReportStatus"; -import { RemoteData } from "./RemoteData"; -import { RemoteField } from "./RemoteField"; -import { TransactionCurrencyEnum } from "./TransactionCurrencyEnum"; - -export const ExpenseReport: core.serialization.ObjectSchema< - serializers.accounting.ExpenseReport.Raw, - Merge.accounting.ExpenseReport -> = core.serialization.object({ - id: core.serialization.string().optional(), - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - createdAt: core.serialization.property("created_at", core.serialization.date().optional()), - modifiedAt: core.serialization.property("modified_at", core.serialization.date().optional()), - reportDate: core.serialization.property("report_date", core.serialization.date().optional()), - reportIdentifier: core.serialization.property("report_identifier", core.serialization.string().optional()), - employee: core.serialization.string().optional(), - status: ExpenseReportStatus.optional(), - totalAmount: core.serialization.property("total_amount", core.serialization.number().optional()), - lines: core.serialization.list(ExpenseReportLine).optional(), - currency: TransactionCurrencyEnum.optional(), - description: core.serialization.string().optional(), - accountingPeriod: core.serialization.property("accounting_period", core.serialization.string().optional()), - company: ExpenseReportCompany.optional(), - trackingCategories: core.serialization.property( - "tracking_categories", - core.serialization.list(core.serialization.string()), - ), - remoteWasDeleted: core.serialization.property("remote_was_deleted", core.serialization.boolean().optional()), - fieldMappings: core.serialization.property( - "field_mappings", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - remoteData: core.serialization.property("remote_data", core.serialization.list(RemoteData).optional()), - remoteFields: core.serialization.property("remote_fields", core.serialization.list(RemoteField).optional()), -}); - -export declare namespace ExpenseReport { - export interface Raw { - id?: string | null; - remote_id?: string | null; - created_at?: string | null; - modified_at?: string | null; - report_date?: string | null; - report_identifier?: string | null; - employee?: string | null; - status?: ExpenseReportStatus.Raw | null; - total_amount?: number | null; - lines?: ExpenseReportLine.Raw[] | null; - currency?: TransactionCurrencyEnum.Raw | null; - description?: string | null; - accounting_period?: string | null; - company?: ExpenseReportCompany.Raw | null; - tracking_categories: string[]; - remote_was_deleted?: boolean | null; - field_mappings?: Record | null; - remote_data?: RemoteData.Raw[] | null; - remote_fields?: RemoteField.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/ExpenseReportCompany.ts b/src/serialization/resources/accounting/types/ExpenseReportCompany.ts deleted file mode 100644 index 30a0c5efb..000000000 --- a/src/serialization/resources/accounting/types/ExpenseReportCompany.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CompanyInfo } from "./CompanyInfo"; - -export const ExpenseReportCompany: core.serialization.Schema< - serializers.accounting.ExpenseReportCompany.Raw, - Merge.accounting.ExpenseReportCompany -> = core.serialization.undiscriminatedUnion([core.serialization.string(), CompanyInfo]); - -export declare namespace ExpenseReportCompany { - export type Raw = string | CompanyInfo.Raw; -} diff --git a/src/serialization/resources/accounting/types/ExpenseReportLine.ts b/src/serialization/resources/accounting/types/ExpenseReportLine.ts deleted file mode 100644 index 13c09c188..000000000 --- a/src/serialization/resources/accounting/types/ExpenseReportLine.ts +++ /dev/null @@ -1,75 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { ExpenseReportLineAccount } from "./ExpenseReportLineAccount"; -import { ExpenseReportLineCompany } from "./ExpenseReportLineCompany"; -import { ExpenseReportLineContact } from "./ExpenseReportLineContact"; -import { ExpenseReportLineEmployee } from "./ExpenseReportLineEmployee"; -import { ExpenseReportLineProject } from "./ExpenseReportLineProject"; -import { ExpenseReportLineTaxRate } from "./ExpenseReportLineTaxRate"; -import { RemoteField } from "./RemoteField"; -import { TransactionCurrencyEnum } from "./TransactionCurrencyEnum"; - -export const ExpenseReportLine: core.serialization.ObjectSchema< - serializers.accounting.ExpenseReportLine.Raw, - Merge.accounting.ExpenseReportLine -> = core.serialization.object({ - id: core.serialization.string().optional(), - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - createdAt: core.serialization.property("created_at", core.serialization.date().optional()), - modifiedAt: core.serialization.property("modified_at", core.serialization.date().optional()), - account: ExpenseReportLineAccount.optional(), - description: core.serialization.string().optional(), - expenseDate: core.serialization.property("expense_date", core.serialization.date().optional()), - amount: core.serialization.number().optional(), - currency: TransactionCurrencyEnum.optional(), - exchangeRate: core.serialization.property("exchange_rate", core.serialization.string().optional()), - isBillable: core.serialization.property("is_billable", core.serialization.boolean().optional()), - trackingCategories: core.serialization.property( - "tracking_categories", - core.serialization.list(core.serialization.string()), - ), - employee: ExpenseReportLineEmployee.optional(), - project: ExpenseReportLineProject.optional(), - company: ExpenseReportLineCompany.optional(), - contact: ExpenseReportLineContact.optional(), - quantity: core.serialization.number().optional(), - unitPrice: core.serialization.property("unit_price", core.serialization.number().optional()), - nonReimbursable: core.serialization.property("non_reimbursable", core.serialization.boolean().optional()), - taxAmount: core.serialization.property("tax_amount", core.serialization.number().optional()), - inclusiveOfTax: core.serialization.property("inclusive_of_tax", core.serialization.boolean().optional()), - taxRate: core.serialization.property("tax_rate", ExpenseReportLineTaxRate.optional()), - remoteWasDeleted: core.serialization.property("remote_was_deleted", core.serialization.boolean().optional()), - remoteFields: core.serialization.property("remote_fields", core.serialization.list(RemoteField).optional()), -}); - -export declare namespace ExpenseReportLine { - export interface Raw { - id?: string | null; - remote_id?: string | null; - created_at?: string | null; - modified_at?: string | null; - account?: ExpenseReportLineAccount.Raw | null; - description?: string | null; - expense_date?: string | null; - amount?: number | null; - currency?: TransactionCurrencyEnum.Raw | null; - exchange_rate?: string | null; - is_billable?: boolean | null; - tracking_categories: string[]; - employee?: ExpenseReportLineEmployee.Raw | null; - project?: ExpenseReportLineProject.Raw | null; - company?: ExpenseReportLineCompany.Raw | null; - contact?: ExpenseReportLineContact.Raw | null; - quantity?: number | null; - unit_price?: number | null; - non_reimbursable?: boolean | null; - tax_amount?: number | null; - inclusive_of_tax?: boolean | null; - tax_rate?: ExpenseReportLineTaxRate.Raw | null; - remote_was_deleted?: boolean | null; - remote_fields?: RemoteField.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/ExpenseReportLineAccount.ts b/src/serialization/resources/accounting/types/ExpenseReportLineAccount.ts deleted file mode 100644 index 9e665812d..000000000 --- a/src/serialization/resources/accounting/types/ExpenseReportLineAccount.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Account } from "./Account"; - -export const ExpenseReportLineAccount: core.serialization.Schema< - serializers.accounting.ExpenseReportLineAccount.Raw, - Merge.accounting.ExpenseReportLineAccount -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Account]); - -export declare namespace ExpenseReportLineAccount { - export type Raw = string | Account.Raw; -} diff --git a/src/serialization/resources/accounting/types/ExpenseReportLineCompany.ts b/src/serialization/resources/accounting/types/ExpenseReportLineCompany.ts deleted file mode 100644 index 8fdd9568a..000000000 --- a/src/serialization/resources/accounting/types/ExpenseReportLineCompany.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CompanyInfo } from "./CompanyInfo"; - -export const ExpenseReportLineCompany: core.serialization.Schema< - serializers.accounting.ExpenseReportLineCompany.Raw, - Merge.accounting.ExpenseReportLineCompany -> = core.serialization.undiscriminatedUnion([core.serialization.string(), CompanyInfo]); - -export declare namespace ExpenseReportLineCompany { - export type Raw = string | CompanyInfo.Raw; -} diff --git a/src/serialization/resources/accounting/types/ExpenseReportLineContact.ts b/src/serialization/resources/accounting/types/ExpenseReportLineContact.ts deleted file mode 100644 index 886eca626..000000000 --- a/src/serialization/resources/accounting/types/ExpenseReportLineContact.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Contact } from "./Contact"; - -export const ExpenseReportLineContact: core.serialization.Schema< - serializers.accounting.ExpenseReportLineContact.Raw, - Merge.accounting.ExpenseReportLineContact -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Contact]); - -export declare namespace ExpenseReportLineContact { - export type Raw = string | Contact.Raw; -} diff --git a/src/serialization/resources/accounting/types/ExpenseReportLineEmployee.ts b/src/serialization/resources/accounting/types/ExpenseReportLineEmployee.ts deleted file mode 100644 index cc4f33a83..000000000 --- a/src/serialization/resources/accounting/types/ExpenseReportLineEmployee.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Employee } from "./Employee"; - -export const ExpenseReportLineEmployee: core.serialization.Schema< - serializers.accounting.ExpenseReportLineEmployee.Raw, - Merge.accounting.ExpenseReportLineEmployee -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Employee]); - -export declare namespace ExpenseReportLineEmployee { - export type Raw = string | Employee.Raw; -} diff --git a/src/serialization/resources/accounting/types/ExpenseReportLineProject.ts b/src/serialization/resources/accounting/types/ExpenseReportLineProject.ts deleted file mode 100644 index 0612d5873..000000000 --- a/src/serialization/resources/accounting/types/ExpenseReportLineProject.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Project } from "./Project"; - -export const ExpenseReportLineProject: core.serialization.Schema< - serializers.accounting.ExpenseReportLineProject.Raw, - Merge.accounting.ExpenseReportLineProject -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Project]); - -export declare namespace ExpenseReportLineProject { - export type Raw = string | Project.Raw; -} diff --git a/src/serialization/resources/accounting/types/ExpenseReportLineRequest.ts b/src/serialization/resources/accounting/types/ExpenseReportLineRequest.ts deleted file mode 100644 index b7b4d0696..000000000 --- a/src/serialization/resources/accounting/types/ExpenseReportLineRequest.ts +++ /dev/null @@ -1,77 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { ExpenseReportLineRequestAccount } from "./ExpenseReportLineRequestAccount"; -import { ExpenseReportLineRequestCompany } from "./ExpenseReportLineRequestCompany"; -import { ExpenseReportLineRequestContact } from "./ExpenseReportLineRequestContact"; -import { ExpenseReportLineRequestEmployee } from "./ExpenseReportLineRequestEmployee"; -import { ExpenseReportLineRequestProject } from "./ExpenseReportLineRequestProject"; -import { ExpenseReportLineRequestTaxRate } from "./ExpenseReportLineRequestTaxRate"; -import { RemoteFieldRequest } from "./RemoteFieldRequest"; -import { TransactionCurrencyEnum } from "./TransactionCurrencyEnum"; - -export const ExpenseReportLineRequest: core.serialization.ObjectSchema< - serializers.accounting.ExpenseReportLineRequest.Raw, - Merge.accounting.ExpenseReportLineRequest -> = core.serialization.object({ - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - account: ExpenseReportLineRequestAccount.optional(), - description: core.serialization.string().optional(), - expenseDate: core.serialization.property("expense_date", core.serialization.date().optional()), - amount: core.serialization.number().optional(), - currency: TransactionCurrencyEnum.optional(), - exchangeRate: core.serialization.property("exchange_rate", core.serialization.string().optional()), - isBillable: core.serialization.property("is_billable", core.serialization.boolean().optional()), - trackingCategories: core.serialization.property( - "tracking_categories", - core.serialization.list(core.serialization.string()), - ), - employee: ExpenseReportLineRequestEmployee.optional(), - project: ExpenseReportLineRequestProject.optional(), - company: ExpenseReportLineRequestCompany.optional(), - contact: ExpenseReportLineRequestContact.optional(), - quantity: core.serialization.number().optional(), - unitPrice: core.serialization.property("unit_price", core.serialization.number().optional()), - nonReimbursable: core.serialization.property("non_reimbursable", core.serialization.boolean().optional()), - taxAmount: core.serialization.property("tax_amount", core.serialization.number().optional()), - inclusiveOfTax: core.serialization.property("inclusive_of_tax", core.serialization.boolean().optional()), - taxRate: core.serialization.property("tax_rate", ExpenseReportLineRequestTaxRate.optional()), - integrationParams: core.serialization.property( - "integration_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - linkedAccountParams: core.serialization.property( - "linked_account_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - remoteFields: core.serialization.property("remote_fields", core.serialization.list(RemoteFieldRequest).optional()), -}); - -export declare namespace ExpenseReportLineRequest { - export interface Raw { - remote_id?: string | null; - account?: ExpenseReportLineRequestAccount.Raw | null; - description?: string | null; - expense_date?: string | null; - amount?: number | null; - currency?: TransactionCurrencyEnum.Raw | null; - exchange_rate?: string | null; - is_billable?: boolean | null; - tracking_categories: string[]; - employee?: ExpenseReportLineRequestEmployee.Raw | null; - project?: ExpenseReportLineRequestProject.Raw | null; - company?: ExpenseReportLineRequestCompany.Raw | null; - contact?: ExpenseReportLineRequestContact.Raw | null; - quantity?: number | null; - unit_price?: number | null; - non_reimbursable?: boolean | null; - tax_amount?: number | null; - inclusive_of_tax?: boolean | null; - tax_rate?: ExpenseReportLineRequestTaxRate.Raw | null; - integration_params?: Record | null; - linked_account_params?: Record | null; - remote_fields?: RemoteFieldRequest.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/ExpenseReportLineRequestAccount.ts b/src/serialization/resources/accounting/types/ExpenseReportLineRequestAccount.ts deleted file mode 100644 index ffbd60667..000000000 --- a/src/serialization/resources/accounting/types/ExpenseReportLineRequestAccount.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Account } from "./Account"; - -export const ExpenseReportLineRequestAccount: core.serialization.Schema< - serializers.accounting.ExpenseReportLineRequestAccount.Raw, - Merge.accounting.ExpenseReportLineRequestAccount -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Account]); - -export declare namespace ExpenseReportLineRequestAccount { - export type Raw = string | Account.Raw; -} diff --git a/src/serialization/resources/accounting/types/ExpenseReportLineRequestCompany.ts b/src/serialization/resources/accounting/types/ExpenseReportLineRequestCompany.ts deleted file mode 100644 index 3b4546924..000000000 --- a/src/serialization/resources/accounting/types/ExpenseReportLineRequestCompany.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CompanyInfo } from "./CompanyInfo"; - -export const ExpenseReportLineRequestCompany: core.serialization.Schema< - serializers.accounting.ExpenseReportLineRequestCompany.Raw, - Merge.accounting.ExpenseReportLineRequestCompany -> = core.serialization.undiscriminatedUnion([core.serialization.string(), CompanyInfo]); - -export declare namespace ExpenseReportLineRequestCompany { - export type Raw = string | CompanyInfo.Raw; -} diff --git a/src/serialization/resources/accounting/types/ExpenseReportLineRequestContact.ts b/src/serialization/resources/accounting/types/ExpenseReportLineRequestContact.ts deleted file mode 100644 index 6a773b555..000000000 --- a/src/serialization/resources/accounting/types/ExpenseReportLineRequestContact.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Contact } from "./Contact"; - -export const ExpenseReportLineRequestContact: core.serialization.Schema< - serializers.accounting.ExpenseReportLineRequestContact.Raw, - Merge.accounting.ExpenseReportLineRequestContact -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Contact]); - -export declare namespace ExpenseReportLineRequestContact { - export type Raw = string | Contact.Raw; -} diff --git a/src/serialization/resources/accounting/types/ExpenseReportLineRequestEmployee.ts b/src/serialization/resources/accounting/types/ExpenseReportLineRequestEmployee.ts deleted file mode 100644 index 06e1adb99..000000000 --- a/src/serialization/resources/accounting/types/ExpenseReportLineRequestEmployee.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Employee } from "./Employee"; - -export const ExpenseReportLineRequestEmployee: core.serialization.Schema< - serializers.accounting.ExpenseReportLineRequestEmployee.Raw, - Merge.accounting.ExpenseReportLineRequestEmployee -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Employee]); - -export declare namespace ExpenseReportLineRequestEmployee { - export type Raw = string | Employee.Raw; -} diff --git a/src/serialization/resources/accounting/types/ExpenseReportLineRequestProject.ts b/src/serialization/resources/accounting/types/ExpenseReportLineRequestProject.ts deleted file mode 100644 index ae422d749..000000000 --- a/src/serialization/resources/accounting/types/ExpenseReportLineRequestProject.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Project } from "./Project"; - -export const ExpenseReportLineRequestProject: core.serialization.Schema< - serializers.accounting.ExpenseReportLineRequestProject.Raw, - Merge.accounting.ExpenseReportLineRequestProject -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Project]); - -export declare namespace ExpenseReportLineRequestProject { - export type Raw = string | Project.Raw; -} diff --git a/src/serialization/resources/accounting/types/ExpenseReportLineRequestTaxRate.ts b/src/serialization/resources/accounting/types/ExpenseReportLineRequestTaxRate.ts deleted file mode 100644 index e2b530c07..000000000 --- a/src/serialization/resources/accounting/types/ExpenseReportLineRequestTaxRate.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TaxRate } from "./TaxRate"; - -export const ExpenseReportLineRequestTaxRate: core.serialization.Schema< - serializers.accounting.ExpenseReportLineRequestTaxRate.Raw, - Merge.accounting.ExpenseReportLineRequestTaxRate -> = core.serialization.undiscriminatedUnion([core.serialization.string(), TaxRate]); - -export declare namespace ExpenseReportLineRequestTaxRate { - export type Raw = string | TaxRate.Raw; -} diff --git a/src/serialization/resources/accounting/types/ExpenseReportLineTaxRate.ts b/src/serialization/resources/accounting/types/ExpenseReportLineTaxRate.ts deleted file mode 100644 index cb556c9b2..000000000 --- a/src/serialization/resources/accounting/types/ExpenseReportLineTaxRate.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TaxRate } from "./TaxRate"; - -export const ExpenseReportLineTaxRate: core.serialization.Schema< - serializers.accounting.ExpenseReportLineTaxRate.Raw, - Merge.accounting.ExpenseReportLineTaxRate -> = core.serialization.undiscriminatedUnion([core.serialization.string(), TaxRate]); - -export declare namespace ExpenseReportLineTaxRate { - export type Raw = string | TaxRate.Raw; -} diff --git a/src/serialization/resources/accounting/types/ExpenseReportRequest.ts b/src/serialization/resources/accounting/types/ExpenseReportRequest.ts deleted file mode 100644 index 1bda9470d..000000000 --- a/src/serialization/resources/accounting/types/ExpenseReportRequest.ts +++ /dev/null @@ -1,57 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { ExpenseReportRequestAccountingPeriod } from "./ExpenseReportRequestAccountingPeriod"; -import { ExpenseReportRequestCompany } from "./ExpenseReportRequestCompany"; -import { ExpenseReportRequestEmployee } from "./ExpenseReportRequestEmployee"; -import { ExpenseReportStatusEnum } from "./ExpenseReportStatusEnum"; -import { RemoteFieldRequest } from "./RemoteFieldRequest"; -import { TransactionCurrencyEnum } from "./TransactionCurrencyEnum"; - -export const ExpenseReportRequest: core.serialization.ObjectSchema< - serializers.accounting.ExpenseReportRequest.Raw, - Merge.accounting.ExpenseReportRequest -> = core.serialization.object({ - reportDate: core.serialization.property("report_date", core.serialization.date().optional()), - reportIdentifier: core.serialization.property("report_identifier", core.serialization.string().optional()), - employee: ExpenseReportRequestEmployee.optional(), - status: ExpenseReportStatusEnum.optional(), - totalAmount: core.serialization.property("total_amount", core.serialization.number().optional()), - currency: TransactionCurrencyEnum.optional(), - description: core.serialization.string().optional(), - accountingPeriod: core.serialization.property("accounting_period", ExpenseReportRequestAccountingPeriod.optional()), - company: ExpenseReportRequestCompany.optional(), - trackingCategories: core.serialization.property( - "tracking_categories", - core.serialization.list(core.serialization.string()), - ), - integrationParams: core.serialization.property( - "integration_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - linkedAccountParams: core.serialization.property( - "linked_account_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - remoteFields: core.serialization.property("remote_fields", core.serialization.list(RemoteFieldRequest).optional()), -}); - -export declare namespace ExpenseReportRequest { - export interface Raw { - report_date?: string | null; - report_identifier?: string | null; - employee?: ExpenseReportRequestEmployee.Raw | null; - status?: ExpenseReportStatusEnum.Raw | null; - total_amount?: number | null; - currency?: TransactionCurrencyEnum.Raw | null; - description?: string | null; - accounting_period?: ExpenseReportRequestAccountingPeriod.Raw | null; - company?: ExpenseReportRequestCompany.Raw | null; - tracking_categories: string[]; - integration_params?: Record | null; - linked_account_params?: Record | null; - remote_fields?: RemoteFieldRequest.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/ExpenseReportRequestAccountingPeriod.ts b/src/serialization/resources/accounting/types/ExpenseReportRequestAccountingPeriod.ts deleted file mode 100644 index 90f32df38..000000000 --- a/src/serialization/resources/accounting/types/ExpenseReportRequestAccountingPeriod.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { AccountingPeriod } from "./AccountingPeriod"; - -export const ExpenseReportRequestAccountingPeriod: core.serialization.Schema< - serializers.accounting.ExpenseReportRequestAccountingPeriod.Raw, - Merge.accounting.ExpenseReportRequestAccountingPeriod -> = core.serialization.undiscriminatedUnion([core.serialization.string(), AccountingPeriod]); - -export declare namespace ExpenseReportRequestAccountingPeriod { - export type Raw = string | AccountingPeriod.Raw; -} diff --git a/src/serialization/resources/accounting/types/ExpenseReportRequestCompany.ts b/src/serialization/resources/accounting/types/ExpenseReportRequestCompany.ts deleted file mode 100644 index faaa74e14..000000000 --- a/src/serialization/resources/accounting/types/ExpenseReportRequestCompany.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CompanyInfo } from "./CompanyInfo"; - -export const ExpenseReportRequestCompany: core.serialization.Schema< - serializers.accounting.ExpenseReportRequestCompany.Raw, - Merge.accounting.ExpenseReportRequestCompany -> = core.serialization.undiscriminatedUnion([core.serialization.string(), CompanyInfo]); - -export declare namespace ExpenseReportRequestCompany { - export type Raw = string | CompanyInfo.Raw; -} diff --git a/src/serialization/resources/accounting/types/ExpenseReportRequestEmployee.ts b/src/serialization/resources/accounting/types/ExpenseReportRequestEmployee.ts deleted file mode 100644 index 2841465fb..000000000 --- a/src/serialization/resources/accounting/types/ExpenseReportRequestEmployee.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Employee } from "./Employee"; - -export const ExpenseReportRequestEmployee: core.serialization.Schema< - serializers.accounting.ExpenseReportRequestEmployee.Raw, - Merge.accounting.ExpenseReportRequestEmployee -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Employee]); - -export declare namespace ExpenseReportRequestEmployee { - export type Raw = string | Employee.Raw; -} diff --git a/src/serialization/resources/accounting/types/ExpenseReportResponse.ts b/src/serialization/resources/accounting/types/ExpenseReportResponse.ts deleted file mode 100644 index 7be0c3b91..000000000 --- a/src/serialization/resources/accounting/types/ExpenseReportResponse.ts +++ /dev/null @@ -1,28 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { DebugModeLog } from "./DebugModeLog"; -import { ErrorValidationProblem } from "./ErrorValidationProblem"; -import { ExpenseReport } from "./ExpenseReport"; -import { WarningValidationProblem } from "./WarningValidationProblem"; - -export const ExpenseReportResponse: core.serialization.ObjectSchema< - serializers.accounting.ExpenseReportResponse.Raw, - Merge.accounting.ExpenseReportResponse -> = core.serialization.object({ - model: ExpenseReport, - warnings: core.serialization.list(WarningValidationProblem), - errors: core.serialization.list(ErrorValidationProblem), - logs: core.serialization.list(DebugModeLog).optional(), -}); - -export declare namespace ExpenseReportResponse { - export interface Raw { - model: ExpenseReport.Raw; - warnings: WarningValidationProblem.Raw[]; - errors: ErrorValidationProblem.Raw[]; - logs?: DebugModeLog.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/ExpenseReportStatus.ts b/src/serialization/resources/accounting/types/ExpenseReportStatus.ts deleted file mode 100644 index 5be71dee5..000000000 --- a/src/serialization/resources/accounting/types/ExpenseReportStatus.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { ExpenseReportStatusEnum } from "./ExpenseReportStatusEnum"; - -export const ExpenseReportStatus: core.serialization.Schema< - serializers.accounting.ExpenseReportStatus.Raw, - Merge.accounting.ExpenseReportStatus -> = core.serialization.undiscriminatedUnion([ExpenseReportStatusEnum, core.serialization.string()]); - -export declare namespace ExpenseReportStatus { - export type Raw = ExpenseReportStatusEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/ExpenseReportStatusEnum.ts b/src/serialization/resources/accounting/types/ExpenseReportStatusEnum.ts deleted file mode 100644 index 7f18ed599..000000000 --- a/src/serialization/resources/accounting/types/ExpenseReportStatusEnum.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const ExpenseReportStatusEnum: core.serialization.Schema< - serializers.accounting.ExpenseReportStatusEnum.Raw, - Merge.accounting.ExpenseReportStatusEnum -> = core.serialization.enum_(["DRAFT", "SUBMITTED", "APPROVED", "REJECTED"]); - -export declare namespace ExpenseReportStatusEnum { - export type Raw = "DRAFT" | "SUBMITTED" | "APPROVED" | "REJECTED"; -} diff --git a/src/serialization/resources/accounting/types/ExpenseRequest.ts b/src/serialization/resources/accounting/types/ExpenseRequest.ts deleted file mode 100644 index be5577043..000000000 --- a/src/serialization/resources/accounting/types/ExpenseRequest.ts +++ /dev/null @@ -1,70 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { ExpenseLineRequest } from "./ExpenseLineRequest"; -import { ExpenseRequestAccount } from "./ExpenseRequestAccount"; -import { ExpenseRequestAccountingPeriod } from "./ExpenseRequestAccountingPeriod"; -import { ExpenseRequestCompany } from "./ExpenseRequestCompany"; -import { ExpenseRequestContact } from "./ExpenseRequestContact"; -import { ExpenseRequestCurrency } from "./ExpenseRequestCurrency"; -import { ExpenseRequestEmployee } from "./ExpenseRequestEmployee"; -import { ExpenseRequestTrackingCategoriesItem } from "./ExpenseRequestTrackingCategoriesItem"; -import { RemoteFieldRequest } from "./RemoteFieldRequest"; - -export const ExpenseRequest: core.serialization.ObjectSchema< - serializers.accounting.ExpenseRequest.Raw, - Merge.accounting.ExpenseRequest -> = core.serialization.object({ - transactionDate: core.serialization.property("transaction_date", core.serialization.date().optional()), - account: ExpenseRequestAccount.optional(), - contact: ExpenseRequestContact.optional(), - totalAmount: core.serialization.property("total_amount", core.serialization.number().optional()), - subTotal: core.serialization.property("sub_total", core.serialization.number().optional()), - totalTaxAmount: core.serialization.property("total_tax_amount", core.serialization.number().optional()), - currency: ExpenseRequestCurrency.optional(), - exchangeRate: core.serialization.property("exchange_rate", core.serialization.string().optional()), - inclusiveOfTax: core.serialization.property("inclusive_of_tax", core.serialization.boolean().optional()), - company: ExpenseRequestCompany.optional(), - employee: ExpenseRequestEmployee.optional(), - memo: core.serialization.string().optional(), - lines: core.serialization.list(ExpenseLineRequest).optional(), - trackingCategories: core.serialization.property( - "tracking_categories", - core.serialization.list(ExpenseRequestTrackingCategoriesItem.optional()).optional(), - ), - accountingPeriod: core.serialization.property("accounting_period", ExpenseRequestAccountingPeriod.optional()), - integrationParams: core.serialization.property( - "integration_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - linkedAccountParams: core.serialization.property( - "linked_account_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - remoteFields: core.serialization.property("remote_fields", core.serialization.list(RemoteFieldRequest).optional()), -}); - -export declare namespace ExpenseRequest { - export interface Raw { - transaction_date?: string | null; - account?: ExpenseRequestAccount.Raw | null; - contact?: ExpenseRequestContact.Raw | null; - total_amount?: number | null; - sub_total?: number | null; - total_tax_amount?: number | null; - currency?: ExpenseRequestCurrency.Raw | null; - exchange_rate?: string | null; - inclusive_of_tax?: boolean | null; - company?: ExpenseRequestCompany.Raw | null; - employee?: ExpenseRequestEmployee.Raw | null; - memo?: string | null; - lines?: ExpenseLineRequest.Raw[] | null; - tracking_categories?: (ExpenseRequestTrackingCategoriesItem.Raw | null | undefined)[] | null; - accounting_period?: ExpenseRequestAccountingPeriod.Raw | null; - integration_params?: Record | null; - linked_account_params?: Record | null; - remote_fields?: RemoteFieldRequest.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/ExpenseRequestAccount.ts b/src/serialization/resources/accounting/types/ExpenseRequestAccount.ts deleted file mode 100644 index a439907cf..000000000 --- a/src/serialization/resources/accounting/types/ExpenseRequestAccount.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Account } from "./Account"; - -export const ExpenseRequestAccount: core.serialization.Schema< - serializers.accounting.ExpenseRequestAccount.Raw, - Merge.accounting.ExpenseRequestAccount -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Account]); - -export declare namespace ExpenseRequestAccount { - export type Raw = string | Account.Raw; -} diff --git a/src/serialization/resources/accounting/types/ExpenseRequestAccountingPeriod.ts b/src/serialization/resources/accounting/types/ExpenseRequestAccountingPeriod.ts deleted file mode 100644 index 8d37295a1..000000000 --- a/src/serialization/resources/accounting/types/ExpenseRequestAccountingPeriod.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { AccountingPeriod } from "./AccountingPeriod"; - -export const ExpenseRequestAccountingPeriod: core.serialization.Schema< - serializers.accounting.ExpenseRequestAccountingPeriod.Raw, - Merge.accounting.ExpenseRequestAccountingPeriod -> = core.serialization.undiscriminatedUnion([core.serialization.string(), AccountingPeriod]); - -export declare namespace ExpenseRequestAccountingPeriod { - export type Raw = string | AccountingPeriod.Raw; -} diff --git a/src/serialization/resources/accounting/types/ExpenseRequestCompany.ts b/src/serialization/resources/accounting/types/ExpenseRequestCompany.ts deleted file mode 100644 index 826ef443e..000000000 --- a/src/serialization/resources/accounting/types/ExpenseRequestCompany.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CompanyInfo } from "./CompanyInfo"; - -export const ExpenseRequestCompany: core.serialization.Schema< - serializers.accounting.ExpenseRequestCompany.Raw, - Merge.accounting.ExpenseRequestCompany -> = core.serialization.undiscriminatedUnion([core.serialization.string(), CompanyInfo]); - -export declare namespace ExpenseRequestCompany { - export type Raw = string | CompanyInfo.Raw; -} diff --git a/src/serialization/resources/accounting/types/ExpenseRequestContact.ts b/src/serialization/resources/accounting/types/ExpenseRequestContact.ts deleted file mode 100644 index 188b3355b..000000000 --- a/src/serialization/resources/accounting/types/ExpenseRequestContact.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Contact } from "./Contact"; - -export const ExpenseRequestContact: core.serialization.Schema< - serializers.accounting.ExpenseRequestContact.Raw, - Merge.accounting.ExpenseRequestContact -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Contact]); - -export declare namespace ExpenseRequestContact { - export type Raw = string | Contact.Raw; -} diff --git a/src/serialization/resources/accounting/types/ExpenseRequestCurrency.ts b/src/serialization/resources/accounting/types/ExpenseRequestCurrency.ts deleted file mode 100644 index 43412bbd3..000000000 --- a/src/serialization/resources/accounting/types/ExpenseRequestCurrency.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TransactionCurrencyEnum } from "./TransactionCurrencyEnum"; - -export const ExpenseRequestCurrency: core.serialization.Schema< - serializers.accounting.ExpenseRequestCurrency.Raw, - Merge.accounting.ExpenseRequestCurrency -> = core.serialization.undiscriminatedUnion([TransactionCurrencyEnum, core.serialization.string()]); - -export declare namespace ExpenseRequestCurrency { - export type Raw = TransactionCurrencyEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/ExpenseRequestEmployee.ts b/src/serialization/resources/accounting/types/ExpenseRequestEmployee.ts deleted file mode 100644 index ea3532fa1..000000000 --- a/src/serialization/resources/accounting/types/ExpenseRequestEmployee.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Employee } from "./Employee"; - -export const ExpenseRequestEmployee: core.serialization.Schema< - serializers.accounting.ExpenseRequestEmployee.Raw, - Merge.accounting.ExpenseRequestEmployee -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Employee]); - -export declare namespace ExpenseRequestEmployee { - export type Raw = string | Employee.Raw; -} diff --git a/src/serialization/resources/accounting/types/ExpenseRequestTrackingCategoriesItem.ts b/src/serialization/resources/accounting/types/ExpenseRequestTrackingCategoriesItem.ts deleted file mode 100644 index 760753d7f..000000000 --- a/src/serialization/resources/accounting/types/ExpenseRequestTrackingCategoriesItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TrackingCategory } from "./TrackingCategory"; - -export const ExpenseRequestTrackingCategoriesItem: core.serialization.Schema< - serializers.accounting.ExpenseRequestTrackingCategoriesItem.Raw, - Merge.accounting.ExpenseRequestTrackingCategoriesItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), TrackingCategory]); - -export declare namespace ExpenseRequestTrackingCategoriesItem { - export type Raw = string | TrackingCategory.Raw; -} diff --git a/src/serialization/resources/accounting/types/ExpenseResponse.ts b/src/serialization/resources/accounting/types/ExpenseResponse.ts deleted file mode 100644 index 952d54b8c..000000000 --- a/src/serialization/resources/accounting/types/ExpenseResponse.ts +++ /dev/null @@ -1,28 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { DebugModeLog } from "./DebugModeLog"; -import { ErrorValidationProblem } from "./ErrorValidationProblem"; -import { Expense } from "./Expense"; -import { WarningValidationProblem } from "./WarningValidationProblem"; - -export const ExpenseResponse: core.serialization.ObjectSchema< - serializers.accounting.ExpenseResponse.Raw, - Merge.accounting.ExpenseResponse -> = core.serialization.object({ - model: Expense, - warnings: core.serialization.list(WarningValidationProblem), - errors: core.serialization.list(ErrorValidationProblem), - logs: core.serialization.list(DebugModeLog).optional(), -}); - -export declare namespace ExpenseResponse { - export interface Raw { - model: Expense.Raw; - warnings: WarningValidationProblem.Raw[]; - errors: ErrorValidationProblem.Raw[]; - logs?: DebugModeLog.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/ExpenseTrackingCategoriesItem.ts b/src/serialization/resources/accounting/types/ExpenseTrackingCategoriesItem.ts deleted file mode 100644 index fb861d8c8..000000000 --- a/src/serialization/resources/accounting/types/ExpenseTrackingCategoriesItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TrackingCategory } from "./TrackingCategory"; - -export const ExpenseTrackingCategoriesItem: core.serialization.Schema< - serializers.accounting.ExpenseTrackingCategoriesItem.Raw, - Merge.accounting.ExpenseTrackingCategoriesItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), TrackingCategory]); - -export declare namespace ExpenseTrackingCategoriesItem { - export type Raw = string | TrackingCategory.Raw; -} diff --git a/src/serialization/resources/accounting/types/ExternalTargetFieldApi.ts b/src/serialization/resources/accounting/types/ExternalTargetFieldApi.ts deleted file mode 100644 index f1845d080..000000000 --- a/src/serialization/resources/accounting/types/ExternalTargetFieldApi.ts +++ /dev/null @@ -1,22 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const ExternalTargetFieldApi: core.serialization.ObjectSchema< - serializers.accounting.ExternalTargetFieldApi.Raw, - Merge.accounting.ExternalTargetFieldApi -> = core.serialization.object({ - name: core.serialization.string().optional(), - description: core.serialization.string().optional(), - isMapped: core.serialization.property("is_mapped", core.serialization.string().optional()), -}); - -export declare namespace ExternalTargetFieldApi { - export interface Raw { - name?: string | null; - description?: string | null; - is_mapped?: string | null; - } -} diff --git a/src/serialization/resources/accounting/types/ExternalTargetFieldApiResponse.ts b/src/serialization/resources/accounting/types/ExternalTargetFieldApiResponse.ts deleted file mode 100644 index 7a5a88cf3..000000000 --- a/src/serialization/resources/accounting/types/ExternalTargetFieldApiResponse.ts +++ /dev/null @@ -1,108 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { ExternalTargetFieldApi } from "./ExternalTargetFieldApi"; - -export const ExternalTargetFieldApiResponse: core.serialization.ObjectSchema< - serializers.accounting.ExternalTargetFieldApiResponse.Raw, - Merge.accounting.ExternalTargetFieldApiResponse -> = core.serialization.object({ - account: core.serialization.property("Account", core.serialization.list(ExternalTargetFieldApi).optional()), - accountingAttachment: core.serialization.property( - "AccountingAttachment", - core.serialization.list(ExternalTargetFieldApi).optional(), - ), - balanceSheet: core.serialization.property( - "BalanceSheet", - core.serialization.list(ExternalTargetFieldApi).optional(), - ), - cashFlowStatement: core.serialization.property( - "CashFlowStatement", - core.serialization.list(ExternalTargetFieldApi).optional(), - ), - companyInfo: core.serialization.property("CompanyInfo", core.serialization.list(ExternalTargetFieldApi).optional()), - contact: core.serialization.property("Contact", core.serialization.list(ExternalTargetFieldApi).optional()), - incomeStatement: core.serialization.property( - "IncomeStatement", - core.serialization.list(ExternalTargetFieldApi).optional(), - ), - creditNote: core.serialization.property("CreditNote", core.serialization.list(ExternalTargetFieldApi).optional()), - item: core.serialization.property("Item", core.serialization.list(ExternalTargetFieldApi).optional()), - purchaseOrder: core.serialization.property( - "PurchaseOrder", - core.serialization.list(ExternalTargetFieldApi).optional(), - ), - expenseReport: core.serialization.property( - "ExpenseReport", - core.serialization.list(ExternalTargetFieldApi).optional(), - ), - trackingCategory: core.serialization.property( - "TrackingCategory", - core.serialization.list(ExternalTargetFieldApi).optional(), - ), - journalEntry: core.serialization.property( - "JournalEntry", - core.serialization.list(ExternalTargetFieldApi).optional(), - ), - taxRate: core.serialization.property("TaxRate", core.serialization.list(ExternalTargetFieldApi).optional()), - invoice: core.serialization.property("Invoice", core.serialization.list(ExternalTargetFieldApi).optional()), - payment: core.serialization.property("Payment", core.serialization.list(ExternalTargetFieldApi).optional()), - expense: core.serialization.property("Expense", core.serialization.list(ExternalTargetFieldApi).optional()), - vendorCredit: core.serialization.property( - "VendorCredit", - core.serialization.list(ExternalTargetFieldApi).optional(), - ), - transaction: core.serialization.property("Transaction", core.serialization.list(ExternalTargetFieldApi).optional()), - accountingPeriod: core.serialization.property( - "AccountingPeriod", - core.serialization.list(ExternalTargetFieldApi).optional(), - ), - generalLedgerTransaction: core.serialization.property( - "GeneralLedgerTransaction", - core.serialization.list(ExternalTargetFieldApi).optional(), - ), - bankFeedAccount: core.serialization.property( - "BankFeedAccount", - core.serialization.list(ExternalTargetFieldApi).optional(), - ), - employee: core.serialization.property("Employee", core.serialization.list(ExternalTargetFieldApi).optional()), - paymentMethod: core.serialization.property( - "PaymentMethod", - core.serialization.list(ExternalTargetFieldApi).optional(), - ), - project: core.serialization.property("Project", core.serialization.list(ExternalTargetFieldApi).optional()), - paymentTerm: core.serialization.property("PaymentTerm", core.serialization.list(ExternalTargetFieldApi).optional()), -}); - -export declare namespace ExternalTargetFieldApiResponse { - export interface Raw { - Account?: ExternalTargetFieldApi.Raw[] | null; - AccountingAttachment?: ExternalTargetFieldApi.Raw[] | null; - BalanceSheet?: ExternalTargetFieldApi.Raw[] | null; - CashFlowStatement?: ExternalTargetFieldApi.Raw[] | null; - CompanyInfo?: ExternalTargetFieldApi.Raw[] | null; - Contact?: ExternalTargetFieldApi.Raw[] | null; - IncomeStatement?: ExternalTargetFieldApi.Raw[] | null; - CreditNote?: ExternalTargetFieldApi.Raw[] | null; - Item?: ExternalTargetFieldApi.Raw[] | null; - PurchaseOrder?: ExternalTargetFieldApi.Raw[] | null; - ExpenseReport?: ExternalTargetFieldApi.Raw[] | null; - TrackingCategory?: ExternalTargetFieldApi.Raw[] | null; - JournalEntry?: ExternalTargetFieldApi.Raw[] | null; - TaxRate?: ExternalTargetFieldApi.Raw[] | null; - Invoice?: ExternalTargetFieldApi.Raw[] | null; - Payment?: ExternalTargetFieldApi.Raw[] | null; - Expense?: ExternalTargetFieldApi.Raw[] | null; - VendorCredit?: ExternalTargetFieldApi.Raw[] | null; - Transaction?: ExternalTargetFieldApi.Raw[] | null; - AccountingPeriod?: ExternalTargetFieldApi.Raw[] | null; - GeneralLedgerTransaction?: ExternalTargetFieldApi.Raw[] | null; - BankFeedAccount?: ExternalTargetFieldApi.Raw[] | null; - Employee?: ExternalTargetFieldApi.Raw[] | null; - PaymentMethod?: ExternalTargetFieldApi.Raw[] | null; - Project?: ExternalTargetFieldApi.Raw[] | null; - PaymentTerm?: ExternalTargetFieldApi.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/FeedStatusEnum.ts b/src/serialization/resources/accounting/types/FeedStatusEnum.ts deleted file mode 100644 index 21f93de3d..000000000 --- a/src/serialization/resources/accounting/types/FeedStatusEnum.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const FeedStatusEnum: core.serialization.Schema< - serializers.accounting.FeedStatusEnum.Raw, - Merge.accounting.FeedStatusEnum -> = core.serialization.enum_(["ACTIVE", "INACTIVE"]); - -export declare namespace FeedStatusEnum { - export type Raw = "ACTIVE" | "INACTIVE"; -} diff --git a/src/serialization/resources/accounting/types/FieldFormatEnum.ts b/src/serialization/resources/accounting/types/FieldFormatEnum.ts deleted file mode 100644 index eb5b33671..000000000 --- a/src/serialization/resources/accounting/types/FieldFormatEnum.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const FieldFormatEnum: core.serialization.Schema< - serializers.accounting.FieldFormatEnum.Raw, - Merge.accounting.FieldFormatEnum -> = core.serialization.enum_(["string", "number", "date", "datetime", "bool", "list"]); - -export declare namespace FieldFormatEnum { - export type Raw = "string" | "number" | "date" | "datetime" | "bool" | "list"; -} diff --git a/src/serialization/resources/accounting/types/FieldMappingApiInstance.ts b/src/serialization/resources/accounting/types/FieldMappingApiInstance.ts deleted file mode 100644 index 15eb7e9dd..000000000 --- a/src/serialization/resources/accounting/types/FieldMappingApiInstance.ts +++ /dev/null @@ -1,26 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { FieldMappingApiInstanceRemoteField } from "./FieldMappingApiInstanceRemoteField"; -import { FieldMappingApiInstanceTargetField } from "./FieldMappingApiInstanceTargetField"; - -export const FieldMappingApiInstance: core.serialization.ObjectSchema< - serializers.accounting.FieldMappingApiInstance.Raw, - Merge.accounting.FieldMappingApiInstance -> = core.serialization.object({ - id: core.serialization.string().optional(), - isIntegrationWide: core.serialization.property("is_integration_wide", core.serialization.boolean().optional()), - targetField: core.serialization.property("target_field", FieldMappingApiInstanceTargetField.optional()), - remoteField: core.serialization.property("remote_field", FieldMappingApiInstanceRemoteField.optional()), -}); - -export declare namespace FieldMappingApiInstance { - export interface Raw { - id?: string | null; - is_integration_wide?: boolean | null; - target_field?: FieldMappingApiInstanceTargetField.Raw | null; - remote_field?: FieldMappingApiInstanceRemoteField.Raw | null; - } -} diff --git a/src/serialization/resources/accounting/types/FieldMappingApiInstanceRemoteField.ts b/src/serialization/resources/accounting/types/FieldMappingApiInstanceRemoteField.ts deleted file mode 100644 index 0d827614d..000000000 --- a/src/serialization/resources/accounting/types/FieldMappingApiInstanceRemoteField.ts +++ /dev/null @@ -1,26 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { FieldMappingApiInstanceRemoteFieldRemoteEndpointInfo } from "./FieldMappingApiInstanceRemoteFieldRemoteEndpointInfo"; - -export const FieldMappingApiInstanceRemoteField: core.serialization.ObjectSchema< - serializers.accounting.FieldMappingApiInstanceRemoteField.Raw, - Merge.accounting.FieldMappingApiInstanceRemoteField -> = core.serialization.object({ - remoteKeyName: core.serialization.property("remote_key_name", core.serialization.string().optional()), - schema: core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - remoteEndpointInfo: core.serialization.property( - "remote_endpoint_info", - FieldMappingApiInstanceRemoteFieldRemoteEndpointInfo, - ), -}); - -export declare namespace FieldMappingApiInstanceRemoteField { - export interface Raw { - remote_key_name?: string | null; - schema?: Record | null; - remote_endpoint_info: FieldMappingApiInstanceRemoteFieldRemoteEndpointInfo.Raw; - } -} diff --git a/src/serialization/resources/accounting/types/FieldMappingApiInstanceRemoteFieldRemoteEndpointInfo.ts b/src/serialization/resources/accounting/types/FieldMappingApiInstanceRemoteFieldRemoteEndpointInfo.ts deleted file mode 100644 index f06c585d5..000000000 --- a/src/serialization/resources/accounting/types/FieldMappingApiInstanceRemoteFieldRemoteEndpointInfo.ts +++ /dev/null @@ -1,25 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const FieldMappingApiInstanceRemoteFieldRemoteEndpointInfo: core.serialization.ObjectSchema< - serializers.accounting.FieldMappingApiInstanceRemoteFieldRemoteEndpointInfo.Raw, - Merge.accounting.FieldMappingApiInstanceRemoteFieldRemoteEndpointInfo -> = core.serialization.object({ - method: core.serialization.string().optional(), - urlPath: core.serialization.property("url_path", core.serialization.string().optional()), - fieldTraversalPath: core.serialization.property( - "field_traversal_path", - core.serialization.list(core.serialization.string()).optional(), - ), -}); - -export declare namespace FieldMappingApiInstanceRemoteFieldRemoteEndpointInfo { - export interface Raw { - method?: string | null; - url_path?: string | null; - field_traversal_path?: string[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/FieldMappingApiInstanceResponse.ts b/src/serialization/resources/accounting/types/FieldMappingApiInstanceResponse.ts deleted file mode 100644 index 736070bd8..000000000 --- a/src/serialization/resources/accounting/types/FieldMappingApiInstanceResponse.ts +++ /dev/null @@ -1,117 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { FieldMappingApiInstance } from "./FieldMappingApiInstance"; - -export const FieldMappingApiInstanceResponse: core.serialization.ObjectSchema< - serializers.accounting.FieldMappingApiInstanceResponse.Raw, - Merge.accounting.FieldMappingApiInstanceResponse -> = core.serialization.object({ - account: core.serialization.property("Account", core.serialization.list(FieldMappingApiInstance).optional()), - accountingAttachment: core.serialization.property( - "AccountingAttachment", - core.serialization.list(FieldMappingApiInstance).optional(), - ), - balanceSheet: core.serialization.property( - "BalanceSheet", - core.serialization.list(FieldMappingApiInstance).optional(), - ), - cashFlowStatement: core.serialization.property( - "CashFlowStatement", - core.serialization.list(FieldMappingApiInstance).optional(), - ), - companyInfo: core.serialization.property( - "CompanyInfo", - core.serialization.list(FieldMappingApiInstance).optional(), - ), - contact: core.serialization.property("Contact", core.serialization.list(FieldMappingApiInstance).optional()), - incomeStatement: core.serialization.property( - "IncomeStatement", - core.serialization.list(FieldMappingApiInstance).optional(), - ), - creditNote: core.serialization.property("CreditNote", core.serialization.list(FieldMappingApiInstance).optional()), - item: core.serialization.property("Item", core.serialization.list(FieldMappingApiInstance).optional()), - purchaseOrder: core.serialization.property( - "PurchaseOrder", - core.serialization.list(FieldMappingApiInstance).optional(), - ), - expenseReport: core.serialization.property( - "ExpenseReport", - core.serialization.list(FieldMappingApiInstance).optional(), - ), - trackingCategory: core.serialization.property( - "TrackingCategory", - core.serialization.list(FieldMappingApiInstance).optional(), - ), - journalEntry: core.serialization.property( - "JournalEntry", - core.serialization.list(FieldMappingApiInstance).optional(), - ), - taxRate: core.serialization.property("TaxRate", core.serialization.list(FieldMappingApiInstance).optional()), - invoice: core.serialization.property("Invoice", core.serialization.list(FieldMappingApiInstance).optional()), - payment: core.serialization.property("Payment", core.serialization.list(FieldMappingApiInstance).optional()), - expense: core.serialization.property("Expense", core.serialization.list(FieldMappingApiInstance).optional()), - vendorCredit: core.serialization.property( - "VendorCredit", - core.serialization.list(FieldMappingApiInstance).optional(), - ), - transaction: core.serialization.property( - "Transaction", - core.serialization.list(FieldMappingApiInstance).optional(), - ), - accountingPeriod: core.serialization.property( - "AccountingPeriod", - core.serialization.list(FieldMappingApiInstance).optional(), - ), - generalLedgerTransaction: core.serialization.property( - "GeneralLedgerTransaction", - core.serialization.list(FieldMappingApiInstance).optional(), - ), - bankFeedAccount: core.serialization.property( - "BankFeedAccount", - core.serialization.list(FieldMappingApiInstance).optional(), - ), - employee: core.serialization.property("Employee", core.serialization.list(FieldMappingApiInstance).optional()), - paymentMethod: core.serialization.property( - "PaymentMethod", - core.serialization.list(FieldMappingApiInstance).optional(), - ), - project: core.serialization.property("Project", core.serialization.list(FieldMappingApiInstance).optional()), - paymentTerm: core.serialization.property( - "PaymentTerm", - core.serialization.list(FieldMappingApiInstance).optional(), - ), -}); - -export declare namespace FieldMappingApiInstanceResponse { - export interface Raw { - Account?: FieldMappingApiInstance.Raw[] | null; - AccountingAttachment?: FieldMappingApiInstance.Raw[] | null; - BalanceSheet?: FieldMappingApiInstance.Raw[] | null; - CashFlowStatement?: FieldMappingApiInstance.Raw[] | null; - CompanyInfo?: FieldMappingApiInstance.Raw[] | null; - Contact?: FieldMappingApiInstance.Raw[] | null; - IncomeStatement?: FieldMappingApiInstance.Raw[] | null; - CreditNote?: FieldMappingApiInstance.Raw[] | null; - Item?: FieldMappingApiInstance.Raw[] | null; - PurchaseOrder?: FieldMappingApiInstance.Raw[] | null; - ExpenseReport?: FieldMappingApiInstance.Raw[] | null; - TrackingCategory?: FieldMappingApiInstance.Raw[] | null; - JournalEntry?: FieldMappingApiInstance.Raw[] | null; - TaxRate?: FieldMappingApiInstance.Raw[] | null; - Invoice?: FieldMappingApiInstance.Raw[] | null; - Payment?: FieldMappingApiInstance.Raw[] | null; - Expense?: FieldMappingApiInstance.Raw[] | null; - VendorCredit?: FieldMappingApiInstance.Raw[] | null; - Transaction?: FieldMappingApiInstance.Raw[] | null; - AccountingPeriod?: FieldMappingApiInstance.Raw[] | null; - GeneralLedgerTransaction?: FieldMappingApiInstance.Raw[] | null; - BankFeedAccount?: FieldMappingApiInstance.Raw[] | null; - Employee?: FieldMappingApiInstance.Raw[] | null; - PaymentMethod?: FieldMappingApiInstance.Raw[] | null; - Project?: FieldMappingApiInstance.Raw[] | null; - PaymentTerm?: FieldMappingApiInstance.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/FieldMappingApiInstanceTargetField.ts b/src/serialization/resources/accounting/types/FieldMappingApiInstanceTargetField.ts deleted file mode 100644 index 1ffdccbae..000000000 --- a/src/serialization/resources/accounting/types/FieldMappingApiInstanceTargetField.ts +++ /dev/null @@ -1,22 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const FieldMappingApiInstanceTargetField: core.serialization.ObjectSchema< - serializers.accounting.FieldMappingApiInstanceTargetField.Raw, - Merge.accounting.FieldMappingApiInstanceTargetField -> = core.serialization.object({ - name: core.serialization.string(), - description: core.serialization.string(), - isOrganizationWide: core.serialization.property("is_organization_wide", core.serialization.boolean()), -}); - -export declare namespace FieldMappingApiInstanceTargetField { - export interface Raw { - name: string; - description: string; - is_organization_wide: boolean; - } -} diff --git a/src/serialization/resources/accounting/types/FieldMappingInstanceResponse.ts b/src/serialization/resources/accounting/types/FieldMappingInstanceResponse.ts deleted file mode 100644 index 511ed7f66..000000000 --- a/src/serialization/resources/accounting/types/FieldMappingInstanceResponse.ts +++ /dev/null @@ -1,28 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { DebugModeLog } from "./DebugModeLog"; -import { ErrorValidationProblem } from "./ErrorValidationProblem"; -import { FieldMappingApiInstance } from "./FieldMappingApiInstance"; -import { WarningValidationProblem } from "./WarningValidationProblem"; - -export const FieldMappingInstanceResponse: core.serialization.ObjectSchema< - serializers.accounting.FieldMappingInstanceResponse.Raw, - Merge.accounting.FieldMappingInstanceResponse -> = core.serialization.object({ - model: FieldMappingApiInstance, - warnings: core.serialization.list(WarningValidationProblem), - errors: core.serialization.list(ErrorValidationProblem), - logs: core.serialization.list(DebugModeLog).optional(), -}); - -export declare namespace FieldMappingInstanceResponse { - export interface Raw { - model: FieldMappingApiInstance.Raw; - warnings: WarningValidationProblem.Raw[]; - errors: ErrorValidationProblem.Raw[]; - logs?: DebugModeLog.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/FieldPermissionDeserializer.ts b/src/serialization/resources/accounting/types/FieldPermissionDeserializer.ts deleted file mode 100644 index 46cf7073e..000000000 --- a/src/serialization/resources/accounting/types/FieldPermissionDeserializer.ts +++ /dev/null @@ -1,26 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const FieldPermissionDeserializer: core.serialization.ObjectSchema< - serializers.accounting.FieldPermissionDeserializer.Raw, - Merge.accounting.FieldPermissionDeserializer -> = core.serialization.object({ - enabledFields: core.serialization.property( - "enabled_fields", - core.serialization.list(core.serialization.unknown()).optional(), - ), - disabledFields: core.serialization.property( - "disabled_fields", - core.serialization.list(core.serialization.unknown()).optional(), - ), -}); - -export declare namespace FieldPermissionDeserializer { - export interface Raw { - enabled_fields?: unknown[] | null; - disabled_fields?: unknown[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/FieldPermissionDeserializerRequest.ts b/src/serialization/resources/accounting/types/FieldPermissionDeserializerRequest.ts deleted file mode 100644 index a33ced7b0..000000000 --- a/src/serialization/resources/accounting/types/FieldPermissionDeserializerRequest.ts +++ /dev/null @@ -1,26 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const FieldPermissionDeserializerRequest: core.serialization.ObjectSchema< - serializers.accounting.FieldPermissionDeserializerRequest.Raw, - Merge.accounting.FieldPermissionDeserializerRequest -> = core.serialization.object({ - enabledFields: core.serialization.property( - "enabled_fields", - core.serialization.list(core.serialization.unknown()).optional(), - ), - disabledFields: core.serialization.property( - "disabled_fields", - core.serialization.list(core.serialization.unknown()).optional(), - ), -}); - -export declare namespace FieldPermissionDeserializerRequest { - export interface Raw { - enabled_fields?: unknown[] | null; - disabled_fields?: unknown[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/FieldTypeEnum.ts b/src/serialization/resources/accounting/types/FieldTypeEnum.ts deleted file mode 100644 index 389b82791..000000000 --- a/src/serialization/resources/accounting/types/FieldTypeEnum.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const FieldTypeEnum: core.serialization.Schema< - serializers.accounting.FieldTypeEnum.Raw, - Merge.accounting.FieldTypeEnum -> = core.serialization.enum_(["string", "number", "date", "datetime", "bool", "list"]); - -export declare namespace FieldTypeEnum { - export type Raw = "string" | "number" | "date" | "datetime" | "bool" | "list"; -} diff --git a/src/serialization/resources/accounting/types/GeneralLedgerTransaction.ts b/src/serialization/resources/accounting/types/GeneralLedgerTransaction.ts deleted file mode 100644 index 8881295c0..000000000 --- a/src/serialization/resources/accounting/types/GeneralLedgerTransaction.ts +++ /dev/null @@ -1,72 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { GeneralLedgerTransactionAccountingPeriod } from "./GeneralLedgerTransactionAccountingPeriod"; -import { GeneralLedgerTransactionCompany } from "./GeneralLedgerTransactionCompany"; -import { GeneralLedgerTransactionGeneralLedgerTransactionLinesItem } from "./GeneralLedgerTransactionGeneralLedgerTransactionLinesItem"; -import { GeneralLedgerTransactionTrackingCategoriesItem } from "./GeneralLedgerTransactionTrackingCategoriesItem"; -import { GeneralLedgerTransactionUnderlyingTransactionType } from "./GeneralLedgerTransactionUnderlyingTransactionType"; -import { RemoteData } from "./RemoteData"; - -export const GeneralLedgerTransaction: core.serialization.ObjectSchema< - serializers.accounting.GeneralLedgerTransaction.Raw, - Merge.accounting.GeneralLedgerTransaction -> = core.serialization.object({ - id: core.serialization.string().optional(), - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - createdAt: core.serialization.property("created_at", core.serialization.date().optional()), - modifiedAt: core.serialization.property("modified_at", core.serialization.date().optional()), - underlyingTransactionRemoteId: core.serialization.property( - "underlying_transaction_remote_id", - core.serialization.string().optional(), - ), - underlyingTransactionType: core.serialization.property( - "underlying_transaction_type", - GeneralLedgerTransactionUnderlyingTransactionType.optional(), - ), - accountingPeriod: core.serialization.property( - "accounting_period", - GeneralLedgerTransactionAccountingPeriod.optional(), - ), - company: GeneralLedgerTransactionCompany.optional(), - remoteUpdatedAt: core.serialization.property("remote_updated_at", core.serialization.date().optional()), - remoteCreatedAt: core.serialization.property("remote_created_at", core.serialization.date().optional()), - trackingCategories: core.serialization.property( - "tracking_categories", - core.serialization.list(GeneralLedgerTransactionTrackingCategoriesItem.optional()).optional(), - ), - postingDate: core.serialization.property("posting_date", core.serialization.date().optional()), - generalLedgerTransactionLines: core.serialization.property( - "general_ledger_transaction_lines", - core.serialization.list(GeneralLedgerTransactionGeneralLedgerTransactionLinesItem).optional(), - ), - remoteWasDeleted: core.serialization.property("remote_was_deleted", core.serialization.boolean().optional()), - fieldMappings: core.serialization.property( - "field_mappings", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - remoteData: core.serialization.property("remote_data", core.serialization.list(RemoteData).optional()), -}); - -export declare namespace GeneralLedgerTransaction { - export interface Raw { - id?: string | null; - remote_id?: string | null; - created_at?: string | null; - modified_at?: string | null; - underlying_transaction_remote_id?: string | null; - underlying_transaction_type?: GeneralLedgerTransactionUnderlyingTransactionType.Raw | null; - accounting_period?: GeneralLedgerTransactionAccountingPeriod.Raw | null; - company?: GeneralLedgerTransactionCompany.Raw | null; - remote_updated_at?: string | null; - remote_created_at?: string | null; - tracking_categories?: (GeneralLedgerTransactionTrackingCategoriesItem.Raw | null | undefined)[] | null; - posting_date?: string | null; - general_ledger_transaction_lines?: GeneralLedgerTransactionGeneralLedgerTransactionLinesItem.Raw[] | null; - remote_was_deleted?: boolean | null; - field_mappings?: Record | null; - remote_data?: RemoteData.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/GeneralLedgerTransactionAccountingPeriod.ts b/src/serialization/resources/accounting/types/GeneralLedgerTransactionAccountingPeriod.ts deleted file mode 100644 index e7fbc3b96..000000000 --- a/src/serialization/resources/accounting/types/GeneralLedgerTransactionAccountingPeriod.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { AccountingPeriod } from "./AccountingPeriod"; - -export const GeneralLedgerTransactionAccountingPeriod: core.serialization.Schema< - serializers.accounting.GeneralLedgerTransactionAccountingPeriod.Raw, - Merge.accounting.GeneralLedgerTransactionAccountingPeriod -> = core.serialization.undiscriminatedUnion([core.serialization.string(), AccountingPeriod]); - -export declare namespace GeneralLedgerTransactionAccountingPeriod { - export type Raw = string | AccountingPeriod.Raw; -} diff --git a/src/serialization/resources/accounting/types/GeneralLedgerTransactionCompany.ts b/src/serialization/resources/accounting/types/GeneralLedgerTransactionCompany.ts deleted file mode 100644 index d18f8aa13..000000000 --- a/src/serialization/resources/accounting/types/GeneralLedgerTransactionCompany.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CompanyInfo } from "./CompanyInfo"; - -export const GeneralLedgerTransactionCompany: core.serialization.Schema< - serializers.accounting.GeneralLedgerTransactionCompany.Raw, - Merge.accounting.GeneralLedgerTransactionCompany -> = core.serialization.undiscriminatedUnion([core.serialization.string(), CompanyInfo]); - -export declare namespace GeneralLedgerTransactionCompany { - export type Raw = string | CompanyInfo.Raw; -} diff --git a/src/serialization/resources/accounting/types/GeneralLedgerTransactionGeneralLedgerTransactionLinesItem.ts b/src/serialization/resources/accounting/types/GeneralLedgerTransactionGeneralLedgerTransactionLinesItem.ts deleted file mode 100644 index 7e5c54e97..000000000 --- a/src/serialization/resources/accounting/types/GeneralLedgerTransactionGeneralLedgerTransactionLinesItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { GeneralLedgerTransactionLine } from "./GeneralLedgerTransactionLine"; - -export const GeneralLedgerTransactionGeneralLedgerTransactionLinesItem: core.serialization.Schema< - serializers.accounting.GeneralLedgerTransactionGeneralLedgerTransactionLinesItem.Raw, - Merge.accounting.GeneralLedgerTransactionGeneralLedgerTransactionLinesItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), GeneralLedgerTransactionLine]); - -export declare namespace GeneralLedgerTransactionGeneralLedgerTransactionLinesItem { - export type Raw = string | GeneralLedgerTransactionLine.Raw; -} diff --git a/src/serialization/resources/accounting/types/GeneralLedgerTransactionLine.ts b/src/serialization/resources/accounting/types/GeneralLedgerTransactionLine.ts deleted file mode 100644 index e9c9eedc6..000000000 --- a/src/serialization/resources/accounting/types/GeneralLedgerTransactionLine.ts +++ /dev/null @@ -1,76 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { GeneralLedgerTransactionLineAccount } from "./GeneralLedgerTransactionLineAccount"; -import { GeneralLedgerTransactionLineBaseCurrency } from "./GeneralLedgerTransactionLineBaseCurrency"; -import { GeneralLedgerTransactionLineCompany } from "./GeneralLedgerTransactionLineCompany"; -import { GeneralLedgerTransactionLineContact } from "./GeneralLedgerTransactionLineContact"; -import { GeneralLedgerTransactionLineEmployee } from "./GeneralLedgerTransactionLineEmployee"; -import { GeneralLedgerTransactionLineItem } from "./GeneralLedgerTransactionLineItem"; -import { GeneralLedgerTransactionLineProject } from "./GeneralLedgerTransactionLineProject"; -import { GeneralLedgerTransactionLineTrackingCategoriesItem } from "./GeneralLedgerTransactionLineTrackingCategoriesItem"; -import { GeneralLedgerTransactionLineTransactionCurrency } from "./GeneralLedgerTransactionLineTransactionCurrency"; - -export const GeneralLedgerTransactionLine: core.serialization.ObjectSchema< - serializers.accounting.GeneralLedgerTransactionLine.Raw, - Merge.accounting.GeneralLedgerTransactionLine -> = core.serialization.object({ - id: core.serialization.string().optional(), - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - createdAt: core.serialization.property("created_at", core.serialization.date().optional()), - modifiedAt: core.serialization.property("modified_at", core.serialization.date().optional()), - account: GeneralLedgerTransactionLineAccount.optional(), - company: GeneralLedgerTransactionLineCompany.optional(), - employee: GeneralLedgerTransactionLineEmployee.optional(), - contact: GeneralLedgerTransactionLineContact.optional(), - project: GeneralLedgerTransactionLineProject.optional(), - baseCurrency: core.serialization.property("base_currency", GeneralLedgerTransactionLineBaseCurrency.optional()), - transactionCurrency: core.serialization.property( - "transaction_currency", - GeneralLedgerTransactionLineTransactionCurrency.optional(), - ), - exchangeRate: core.serialization.property("exchange_rate", core.serialization.string().optional()), - description: core.serialization.string().optional(), - trackingCategories: core.serialization.property( - "tracking_categories", - core.serialization.list(GeneralLedgerTransactionLineTrackingCategoriesItem).optional(), - ), - debitAmount: core.serialization.property("debit_amount", core.serialization.string()), - creditAmount: core.serialization.property("credit_amount", core.serialization.string()), - item: GeneralLedgerTransactionLineItem.optional(), - foreignDebitAmount: core.serialization.property("foreign_debit_amount", core.serialization.string()), - foreignCreditAmount: core.serialization.property("foreign_credit_amount", core.serialization.string()), - remoteWasDeleted: core.serialization.property("remote_was_deleted", core.serialization.boolean().optional()), - fieldMappings: core.serialization.property( - "field_mappings", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), -}); - -export declare namespace GeneralLedgerTransactionLine { - export interface Raw { - id?: string | null; - remote_id?: string | null; - created_at?: string | null; - modified_at?: string | null; - account?: GeneralLedgerTransactionLineAccount.Raw | null; - company?: GeneralLedgerTransactionLineCompany.Raw | null; - employee?: GeneralLedgerTransactionLineEmployee.Raw | null; - contact?: GeneralLedgerTransactionLineContact.Raw | null; - project?: GeneralLedgerTransactionLineProject.Raw | null; - base_currency?: GeneralLedgerTransactionLineBaseCurrency.Raw | null; - transaction_currency?: GeneralLedgerTransactionLineTransactionCurrency.Raw | null; - exchange_rate?: string | null; - description?: string | null; - tracking_categories?: GeneralLedgerTransactionLineTrackingCategoriesItem.Raw[] | null; - debit_amount: string; - credit_amount: string; - item?: GeneralLedgerTransactionLineItem.Raw | null; - foreign_debit_amount: string; - foreign_credit_amount: string; - remote_was_deleted?: boolean | null; - field_mappings?: Record | null; - } -} diff --git a/src/serialization/resources/accounting/types/GeneralLedgerTransactionLineAccount.ts b/src/serialization/resources/accounting/types/GeneralLedgerTransactionLineAccount.ts deleted file mode 100644 index cdfe2a438..000000000 --- a/src/serialization/resources/accounting/types/GeneralLedgerTransactionLineAccount.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Account } from "./Account"; - -export const GeneralLedgerTransactionLineAccount: core.serialization.Schema< - serializers.accounting.GeneralLedgerTransactionLineAccount.Raw, - Merge.accounting.GeneralLedgerTransactionLineAccount -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Account]); - -export declare namespace GeneralLedgerTransactionLineAccount { - export type Raw = string | Account.Raw; -} diff --git a/src/serialization/resources/accounting/types/GeneralLedgerTransactionLineBaseCurrency.ts b/src/serialization/resources/accounting/types/GeneralLedgerTransactionLineBaseCurrency.ts deleted file mode 100644 index baa902498..000000000 --- a/src/serialization/resources/accounting/types/GeneralLedgerTransactionLineBaseCurrency.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TransactionCurrencyEnum } from "./TransactionCurrencyEnum"; - -export const GeneralLedgerTransactionLineBaseCurrency: core.serialization.Schema< - serializers.accounting.GeneralLedgerTransactionLineBaseCurrency.Raw, - Merge.accounting.GeneralLedgerTransactionLineBaseCurrency -> = core.serialization.undiscriminatedUnion([TransactionCurrencyEnum, core.serialization.string()]); - -export declare namespace GeneralLedgerTransactionLineBaseCurrency { - export type Raw = TransactionCurrencyEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/GeneralLedgerTransactionLineCompany.ts b/src/serialization/resources/accounting/types/GeneralLedgerTransactionLineCompany.ts deleted file mode 100644 index 75b46d146..000000000 --- a/src/serialization/resources/accounting/types/GeneralLedgerTransactionLineCompany.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CompanyInfo } from "./CompanyInfo"; - -export const GeneralLedgerTransactionLineCompany: core.serialization.Schema< - serializers.accounting.GeneralLedgerTransactionLineCompany.Raw, - Merge.accounting.GeneralLedgerTransactionLineCompany -> = core.serialization.undiscriminatedUnion([core.serialization.string(), CompanyInfo]); - -export declare namespace GeneralLedgerTransactionLineCompany { - export type Raw = string | CompanyInfo.Raw; -} diff --git a/src/serialization/resources/accounting/types/GeneralLedgerTransactionLineContact.ts b/src/serialization/resources/accounting/types/GeneralLedgerTransactionLineContact.ts deleted file mode 100644 index ce5ca8e2d..000000000 --- a/src/serialization/resources/accounting/types/GeneralLedgerTransactionLineContact.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Contact } from "./Contact"; - -export const GeneralLedgerTransactionLineContact: core.serialization.Schema< - serializers.accounting.GeneralLedgerTransactionLineContact.Raw, - Merge.accounting.GeneralLedgerTransactionLineContact -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Contact]); - -export declare namespace GeneralLedgerTransactionLineContact { - export type Raw = string | Contact.Raw; -} diff --git a/src/serialization/resources/accounting/types/GeneralLedgerTransactionLineEmployee.ts b/src/serialization/resources/accounting/types/GeneralLedgerTransactionLineEmployee.ts deleted file mode 100644 index 7aa4a3a31..000000000 --- a/src/serialization/resources/accounting/types/GeneralLedgerTransactionLineEmployee.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Employee } from "./Employee"; - -export const GeneralLedgerTransactionLineEmployee: core.serialization.Schema< - serializers.accounting.GeneralLedgerTransactionLineEmployee.Raw, - Merge.accounting.GeneralLedgerTransactionLineEmployee -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Employee]); - -export declare namespace GeneralLedgerTransactionLineEmployee { - export type Raw = string | Employee.Raw; -} diff --git a/src/serialization/resources/accounting/types/GeneralLedgerTransactionLineItem.ts b/src/serialization/resources/accounting/types/GeneralLedgerTransactionLineItem.ts deleted file mode 100644 index 3e17b5e4f..000000000 --- a/src/serialization/resources/accounting/types/GeneralLedgerTransactionLineItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Item } from "./Item"; - -export const GeneralLedgerTransactionLineItem: core.serialization.Schema< - serializers.accounting.GeneralLedgerTransactionLineItem.Raw, - Merge.accounting.GeneralLedgerTransactionLineItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Item]); - -export declare namespace GeneralLedgerTransactionLineItem { - export type Raw = string | Item.Raw; -} diff --git a/src/serialization/resources/accounting/types/GeneralLedgerTransactionLineProject.ts b/src/serialization/resources/accounting/types/GeneralLedgerTransactionLineProject.ts deleted file mode 100644 index 208fc41bb..000000000 --- a/src/serialization/resources/accounting/types/GeneralLedgerTransactionLineProject.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Project } from "./Project"; - -export const GeneralLedgerTransactionLineProject: core.serialization.Schema< - serializers.accounting.GeneralLedgerTransactionLineProject.Raw, - Merge.accounting.GeneralLedgerTransactionLineProject -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Project]); - -export declare namespace GeneralLedgerTransactionLineProject { - export type Raw = string | Project.Raw; -} diff --git a/src/serialization/resources/accounting/types/GeneralLedgerTransactionLineTrackingCategoriesItem.ts b/src/serialization/resources/accounting/types/GeneralLedgerTransactionLineTrackingCategoriesItem.ts deleted file mode 100644 index 7a512c649..000000000 --- a/src/serialization/resources/accounting/types/GeneralLedgerTransactionLineTrackingCategoriesItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TrackingCategory } from "./TrackingCategory"; - -export const GeneralLedgerTransactionLineTrackingCategoriesItem: core.serialization.Schema< - serializers.accounting.GeneralLedgerTransactionLineTrackingCategoriesItem.Raw, - Merge.accounting.GeneralLedgerTransactionLineTrackingCategoriesItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), TrackingCategory]); - -export declare namespace GeneralLedgerTransactionLineTrackingCategoriesItem { - export type Raw = string | TrackingCategory.Raw; -} diff --git a/src/serialization/resources/accounting/types/GeneralLedgerTransactionLineTransactionCurrency.ts b/src/serialization/resources/accounting/types/GeneralLedgerTransactionLineTransactionCurrency.ts deleted file mode 100644 index 9223e9a6a..000000000 --- a/src/serialization/resources/accounting/types/GeneralLedgerTransactionLineTransactionCurrency.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TransactionCurrencyEnum } from "./TransactionCurrencyEnum"; - -export const GeneralLedgerTransactionLineTransactionCurrency: core.serialization.Schema< - serializers.accounting.GeneralLedgerTransactionLineTransactionCurrency.Raw, - Merge.accounting.GeneralLedgerTransactionLineTransactionCurrency -> = core.serialization.undiscriminatedUnion([TransactionCurrencyEnum, core.serialization.string()]); - -export declare namespace GeneralLedgerTransactionLineTransactionCurrency { - export type Raw = TransactionCurrencyEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/GeneralLedgerTransactionTrackingCategoriesItem.ts b/src/serialization/resources/accounting/types/GeneralLedgerTransactionTrackingCategoriesItem.ts deleted file mode 100644 index ffddb8d8a..000000000 --- a/src/serialization/resources/accounting/types/GeneralLedgerTransactionTrackingCategoriesItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TrackingCategory } from "./TrackingCategory"; - -export const GeneralLedgerTransactionTrackingCategoriesItem: core.serialization.Schema< - serializers.accounting.GeneralLedgerTransactionTrackingCategoriesItem.Raw, - Merge.accounting.GeneralLedgerTransactionTrackingCategoriesItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), TrackingCategory]); - -export declare namespace GeneralLedgerTransactionTrackingCategoriesItem { - export type Raw = string | TrackingCategory.Raw; -} diff --git a/src/serialization/resources/accounting/types/GeneralLedgerTransactionUnderlyingTransactionType.ts b/src/serialization/resources/accounting/types/GeneralLedgerTransactionUnderlyingTransactionType.ts deleted file mode 100644 index 550428a7d..000000000 --- a/src/serialization/resources/accounting/types/GeneralLedgerTransactionUnderlyingTransactionType.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { UnderlyingTransactionTypeEnum } from "./UnderlyingTransactionTypeEnum"; - -export const GeneralLedgerTransactionUnderlyingTransactionType: core.serialization.Schema< - serializers.accounting.GeneralLedgerTransactionUnderlyingTransactionType.Raw, - Merge.accounting.GeneralLedgerTransactionUnderlyingTransactionType -> = core.serialization.undiscriminatedUnion([UnderlyingTransactionTypeEnum, core.serialization.string()]); - -export declare namespace GeneralLedgerTransactionUnderlyingTransactionType { - export type Raw = UnderlyingTransactionTypeEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/IncomeStatement.ts b/src/serialization/resources/accounting/types/IncomeStatement.ts deleted file mode 100644 index 73e9e127b..000000000 --- a/src/serialization/resources/accounting/types/IncomeStatement.ts +++ /dev/null @@ -1,67 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { IncomeStatementCompany } from "./IncomeStatementCompany"; -import { IncomeStatementCurrency } from "./IncomeStatementCurrency"; -import { RemoteData } from "./RemoteData"; -import { ReportItem } from "./ReportItem"; - -export const IncomeStatement: core.serialization.ObjectSchema< - serializers.accounting.IncomeStatement.Raw, - Merge.accounting.IncomeStatement -> = core.serialization.object({ - id: core.serialization.string().optional(), - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - createdAt: core.serialization.property("created_at", core.serialization.date().optional()), - modifiedAt: core.serialization.property("modified_at", core.serialization.date().optional()), - name: core.serialization.string().optional(), - currency: IncomeStatementCurrency.optional(), - company: IncomeStatementCompany.optional(), - startPeriod: core.serialization.property("start_period", core.serialization.date().optional()), - endPeriod: core.serialization.property("end_period", core.serialization.date().optional()), - income: core.serialization.list(ReportItem).optional(), - costOfSales: core.serialization.property("cost_of_sales", core.serialization.list(ReportItem).optional()), - grossProfit: core.serialization.property("gross_profit", core.serialization.number().optional()), - operatingExpenses: core.serialization.property( - "operating_expenses", - core.serialization.list(ReportItem).optional(), - ), - netOperatingIncome: core.serialization.property("net_operating_income", core.serialization.number().optional()), - nonOperatingExpenses: core.serialization.property( - "non_operating_expenses", - core.serialization.list(ReportItem).optional(), - ), - netIncome: core.serialization.property("net_income", core.serialization.number().optional()), - remoteWasDeleted: core.serialization.property("remote_was_deleted", core.serialization.boolean().optional()), - fieldMappings: core.serialization.property( - "field_mappings", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - remoteData: core.serialization.property("remote_data", core.serialization.list(RemoteData).optional()), -}); - -export declare namespace IncomeStatement { - export interface Raw { - id?: string | null; - remote_id?: string | null; - created_at?: string | null; - modified_at?: string | null; - name?: string | null; - currency?: IncomeStatementCurrency.Raw | null; - company?: IncomeStatementCompany.Raw | null; - start_period?: string | null; - end_period?: string | null; - income?: ReportItem.Raw[] | null; - cost_of_sales?: ReportItem.Raw[] | null; - gross_profit?: number | null; - operating_expenses?: ReportItem.Raw[] | null; - net_operating_income?: number | null; - non_operating_expenses?: ReportItem.Raw[] | null; - net_income?: number | null; - remote_was_deleted?: boolean | null; - field_mappings?: Record | null; - remote_data?: RemoteData.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/IncomeStatementCompany.ts b/src/serialization/resources/accounting/types/IncomeStatementCompany.ts deleted file mode 100644 index 309be4100..000000000 --- a/src/serialization/resources/accounting/types/IncomeStatementCompany.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CompanyInfo } from "./CompanyInfo"; - -export const IncomeStatementCompany: core.serialization.Schema< - serializers.accounting.IncomeStatementCompany.Raw, - Merge.accounting.IncomeStatementCompany -> = core.serialization.undiscriminatedUnion([core.serialization.string(), CompanyInfo]); - -export declare namespace IncomeStatementCompany { - export type Raw = string | CompanyInfo.Raw; -} diff --git a/src/serialization/resources/accounting/types/IncomeStatementCurrency.ts b/src/serialization/resources/accounting/types/IncomeStatementCurrency.ts deleted file mode 100644 index f86af63ed..000000000 --- a/src/serialization/resources/accounting/types/IncomeStatementCurrency.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TransactionCurrencyEnum } from "./TransactionCurrencyEnum"; - -export const IncomeStatementCurrency: core.serialization.Schema< - serializers.accounting.IncomeStatementCurrency.Raw, - Merge.accounting.IncomeStatementCurrency -> = core.serialization.undiscriminatedUnion([TransactionCurrencyEnum, core.serialization.string()]); - -export declare namespace IncomeStatementCurrency { - export type Raw = TransactionCurrencyEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/IndividualCommonModelScopeDeserializer.ts b/src/serialization/resources/accounting/types/IndividualCommonModelScopeDeserializer.ts deleted file mode 100644 index 063824368..000000000 --- a/src/serialization/resources/accounting/types/IndividualCommonModelScopeDeserializer.ts +++ /dev/null @@ -1,27 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { FieldPermissionDeserializer } from "./FieldPermissionDeserializer"; -import { ModelPermissionDeserializer } from "./ModelPermissionDeserializer"; - -export const IndividualCommonModelScopeDeserializer: core.serialization.ObjectSchema< - serializers.accounting.IndividualCommonModelScopeDeserializer.Raw, - Merge.accounting.IndividualCommonModelScopeDeserializer -> = core.serialization.object({ - modelName: core.serialization.property("model_name", core.serialization.string()), - modelPermissions: core.serialization.property( - "model_permissions", - core.serialization.record(core.serialization.string(), ModelPermissionDeserializer).optional(), - ), - fieldPermissions: core.serialization.property("field_permissions", FieldPermissionDeserializer.optional()), -}); - -export declare namespace IndividualCommonModelScopeDeserializer { - export interface Raw { - model_name: string; - model_permissions?: Record | null; - field_permissions?: FieldPermissionDeserializer.Raw | null; - } -} diff --git a/src/serialization/resources/accounting/types/IndividualCommonModelScopeDeserializerRequest.ts b/src/serialization/resources/accounting/types/IndividualCommonModelScopeDeserializerRequest.ts deleted file mode 100644 index 8feda9987..000000000 --- a/src/serialization/resources/accounting/types/IndividualCommonModelScopeDeserializerRequest.ts +++ /dev/null @@ -1,27 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { FieldPermissionDeserializerRequest } from "./FieldPermissionDeserializerRequest"; -import { ModelPermissionDeserializerRequest } from "./ModelPermissionDeserializerRequest"; - -export const IndividualCommonModelScopeDeserializerRequest: core.serialization.ObjectSchema< - serializers.accounting.IndividualCommonModelScopeDeserializerRequest.Raw, - Merge.accounting.IndividualCommonModelScopeDeserializerRequest -> = core.serialization.object({ - modelName: core.serialization.property("model_name", core.serialization.string()), - modelPermissions: core.serialization.property( - "model_permissions", - core.serialization.record(core.serialization.string(), ModelPermissionDeserializerRequest).optional(), - ), - fieldPermissions: core.serialization.property("field_permissions", FieldPermissionDeserializerRequest.optional()), -}); - -export declare namespace IndividualCommonModelScopeDeserializerRequest { - export interface Raw { - model_name: string; - model_permissions?: Record | null; - field_permissions?: FieldPermissionDeserializerRequest.Raw | null; - } -} diff --git a/src/serialization/resources/accounting/types/Invoice.ts b/src/serialization/resources/accounting/types/Invoice.ts deleted file mode 100644 index 9a9405c23..000000000 --- a/src/serialization/resources/accounting/types/Invoice.ts +++ /dev/null @@ -1,123 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import * as serializers from "../../../index"; -import { InvoiceAccountingPeriod } from "./InvoiceAccountingPeriod"; -import { InvoiceAppliedPaymentsItem } from "./InvoiceAppliedPaymentsItem"; -import { InvoiceCompany } from "./InvoiceCompany"; -import { InvoiceContact } from "./InvoiceContact"; -import { InvoiceCurrency } from "./InvoiceCurrency"; -import { InvoiceEmployee } from "./InvoiceEmployee"; -import { InvoiceLineItem } from "./InvoiceLineItem"; -import { InvoicePaymentsItem } from "./InvoicePaymentsItem"; -import { InvoicePaymentTerm } from "./InvoicePaymentTerm"; -import { InvoicePurchaseOrdersItem } from "./InvoicePurchaseOrdersItem"; -import { InvoiceStatus } from "./InvoiceStatus"; -import { InvoiceTrackingCategoriesItem } from "./InvoiceTrackingCategoriesItem"; -import { InvoiceType } from "./InvoiceType"; -import { RemoteData } from "./RemoteData"; -import { RemoteField } from "./RemoteField"; - -export const Invoice: core.serialization.ObjectSchema = - core.serialization.object({ - id: core.serialization.string().optional(), - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - createdAt: core.serialization.property("created_at", core.serialization.date().optional()), - modifiedAt: core.serialization.property("modified_at", core.serialization.date().optional()), - type: InvoiceType.optional(), - contact: InvoiceContact.optional(), - number: core.serialization.string().optional(), - issueDate: core.serialization.property("issue_date", core.serialization.date().optional()), - dueDate: core.serialization.property("due_date", core.serialization.date().optional()), - paidOnDate: core.serialization.property("paid_on_date", core.serialization.date().optional()), - memo: core.serialization.string().optional(), - company: InvoiceCompany.optional(), - employee: InvoiceEmployee.optional(), - currency: InvoiceCurrency.optional(), - exchangeRate: core.serialization.property("exchange_rate", core.serialization.string().optional()), - paymentTerm: core.serialization.property("payment_term", InvoicePaymentTerm.optional()), - totalDiscount: core.serialization.property("total_discount", core.serialization.number().optional()), - subTotal: core.serialization.property("sub_total", core.serialization.number().optional()), - status: InvoiceStatus.optional(), - totalTaxAmount: core.serialization.property("total_tax_amount", core.serialization.number().optional()), - totalAmount: core.serialization.property("total_amount", core.serialization.number().optional()), - balance: core.serialization.number().optional(), - remoteUpdatedAt: core.serialization.property("remote_updated_at", core.serialization.date().optional()), - trackingCategories: core.serialization.property( - "tracking_categories", - core.serialization.list(InvoiceTrackingCategoriesItem.optional()).optional(), - ), - accountingPeriod: core.serialization.property("accounting_period", InvoiceAccountingPeriod.optional()), - purchaseOrders: core.serialization.property( - "purchase_orders", - core.serialization.list(InvoicePurchaseOrdersItem.optional()).optional(), - ), - payments: core.serialization.list(InvoicePaymentsItem.optional()).optional(), - appliedPayments: core.serialization.property( - "applied_payments", - core.serialization.list(InvoiceAppliedPaymentsItem.optional()).optional(), - ), - lineItems: core.serialization.property("line_items", core.serialization.list(InvoiceLineItem).optional()), - appliedCreditNotes: core.serialization.property( - "applied_credit_notes", - core.serialization - .list(core.serialization.lazy(() => serializers.accounting.InvoiceAppliedCreditNotesItem)) - .optional(), - ), - appliedVendorCredits: core.serialization.property( - "applied_vendor_credits", - core.serialization - .list(core.serialization.lazy(() => serializers.accounting.InvoiceAppliedVendorCreditsItem)) - .optional(), - ), - inclusiveOfTax: core.serialization.property("inclusive_of_tax", core.serialization.boolean().optional()), - remoteWasDeleted: core.serialization.property("remote_was_deleted", core.serialization.boolean().optional()), - fieldMappings: core.serialization.property( - "field_mappings", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - remoteData: core.serialization.property("remote_data", core.serialization.list(RemoteData).optional()), - remoteFields: core.serialization.property("remote_fields", core.serialization.list(RemoteField).optional()), - }); - -export declare namespace Invoice { - export interface Raw { - id?: string | null; - remote_id?: string | null; - created_at?: string | null; - modified_at?: string | null; - type?: InvoiceType.Raw | null; - contact?: InvoiceContact.Raw | null; - number?: string | null; - issue_date?: string | null; - due_date?: string | null; - paid_on_date?: string | null; - memo?: string | null; - company?: InvoiceCompany.Raw | null; - employee?: InvoiceEmployee.Raw | null; - currency?: InvoiceCurrency.Raw | null; - exchange_rate?: string | null; - payment_term?: InvoicePaymentTerm.Raw | null; - total_discount?: number | null; - sub_total?: number | null; - status?: InvoiceStatus.Raw | null; - total_tax_amount?: number | null; - total_amount?: number | null; - balance?: number | null; - remote_updated_at?: string | null; - tracking_categories?: (InvoiceTrackingCategoriesItem.Raw | null | undefined)[] | null; - accounting_period?: InvoiceAccountingPeriod.Raw | null; - purchase_orders?: (InvoicePurchaseOrdersItem.Raw | null | undefined)[] | null; - payments?: (InvoicePaymentsItem.Raw | null | undefined)[] | null; - applied_payments?: (InvoiceAppliedPaymentsItem.Raw | null | undefined)[] | null; - line_items?: InvoiceLineItem.Raw[] | null; - applied_credit_notes?: serializers.accounting.InvoiceAppliedCreditNotesItem.Raw[] | null; - applied_vendor_credits?: serializers.accounting.InvoiceAppliedVendorCreditsItem.Raw[] | null; - inclusive_of_tax?: boolean | null; - remote_was_deleted?: boolean | null; - field_mappings?: Record | null; - remote_data?: RemoteData.Raw[] | null; - remote_fields?: RemoteField.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/InvoiceAccountingPeriod.ts b/src/serialization/resources/accounting/types/InvoiceAccountingPeriod.ts deleted file mode 100644 index f36def7c6..000000000 --- a/src/serialization/resources/accounting/types/InvoiceAccountingPeriod.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { AccountingPeriod } from "./AccountingPeriod"; - -export const InvoiceAccountingPeriod: core.serialization.Schema< - serializers.accounting.InvoiceAccountingPeriod.Raw, - Merge.accounting.InvoiceAccountingPeriod -> = core.serialization.undiscriminatedUnion([core.serialization.string(), AccountingPeriod]); - -export declare namespace InvoiceAccountingPeriod { - export type Raw = string | AccountingPeriod.Raw; -} diff --git a/src/serialization/resources/accounting/types/InvoiceAppliedCreditNotesItem.ts b/src/serialization/resources/accounting/types/InvoiceAppliedCreditNotesItem.ts deleted file mode 100644 index dc195457c..000000000 --- a/src/serialization/resources/accounting/types/InvoiceAppliedCreditNotesItem.ts +++ /dev/null @@ -1,17 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import * as serializers from "../../../index"; - -export const InvoiceAppliedCreditNotesItem: core.serialization.Schema< - serializers.accounting.InvoiceAppliedCreditNotesItem.Raw, - Merge.accounting.InvoiceAppliedCreditNotesItem -> = core.serialization.undiscriminatedUnion([ - core.serialization.string(), - core.serialization.lazyObject(() => serializers.accounting.CreditNoteApplyLineForInvoice), -]); - -export declare namespace InvoiceAppliedCreditNotesItem { - export type Raw = string | serializers.accounting.CreditNoteApplyLineForInvoice.Raw; -} diff --git a/src/serialization/resources/accounting/types/InvoiceAppliedPaymentsItem.ts b/src/serialization/resources/accounting/types/InvoiceAppliedPaymentsItem.ts deleted file mode 100644 index c4de06c43..000000000 --- a/src/serialization/resources/accounting/types/InvoiceAppliedPaymentsItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { PaymentLineItem } from "./PaymentLineItem"; - -export const InvoiceAppliedPaymentsItem: core.serialization.Schema< - serializers.accounting.InvoiceAppliedPaymentsItem.Raw, - Merge.accounting.InvoiceAppliedPaymentsItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), PaymentLineItem]); - -export declare namespace InvoiceAppliedPaymentsItem { - export type Raw = string | PaymentLineItem.Raw; -} diff --git a/src/serialization/resources/accounting/types/InvoiceAppliedVendorCreditsItem.ts b/src/serialization/resources/accounting/types/InvoiceAppliedVendorCreditsItem.ts deleted file mode 100644 index 51ce77fa6..000000000 --- a/src/serialization/resources/accounting/types/InvoiceAppliedVendorCreditsItem.ts +++ /dev/null @@ -1,17 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import * as serializers from "../../../index"; - -export const InvoiceAppliedVendorCreditsItem: core.serialization.Schema< - serializers.accounting.InvoiceAppliedVendorCreditsItem.Raw, - Merge.accounting.InvoiceAppliedVendorCreditsItem -> = core.serialization.undiscriminatedUnion([ - core.serialization.string(), - core.serialization.lazyObject(() => serializers.accounting.VendorCreditApplyLineForInvoice), -]); - -export declare namespace InvoiceAppliedVendorCreditsItem { - export type Raw = string | serializers.accounting.VendorCreditApplyLineForInvoice.Raw; -} diff --git a/src/serialization/resources/accounting/types/InvoiceCompany.ts b/src/serialization/resources/accounting/types/InvoiceCompany.ts deleted file mode 100644 index a2371a8a0..000000000 --- a/src/serialization/resources/accounting/types/InvoiceCompany.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CompanyInfo } from "./CompanyInfo"; - -export const InvoiceCompany: core.serialization.Schema< - serializers.accounting.InvoiceCompany.Raw, - Merge.accounting.InvoiceCompany -> = core.serialization.undiscriminatedUnion([core.serialization.string(), CompanyInfo]); - -export declare namespace InvoiceCompany { - export type Raw = string | CompanyInfo.Raw; -} diff --git a/src/serialization/resources/accounting/types/InvoiceContact.ts b/src/serialization/resources/accounting/types/InvoiceContact.ts deleted file mode 100644 index 20e911901..000000000 --- a/src/serialization/resources/accounting/types/InvoiceContact.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Contact } from "./Contact"; - -export const InvoiceContact: core.serialization.Schema< - serializers.accounting.InvoiceContact.Raw, - Merge.accounting.InvoiceContact -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Contact]); - -export declare namespace InvoiceContact { - export type Raw = string | Contact.Raw; -} diff --git a/src/serialization/resources/accounting/types/InvoiceCurrency.ts b/src/serialization/resources/accounting/types/InvoiceCurrency.ts deleted file mode 100644 index 3ce8bb09e..000000000 --- a/src/serialization/resources/accounting/types/InvoiceCurrency.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TransactionCurrencyEnum } from "./TransactionCurrencyEnum"; - -export const InvoiceCurrency: core.serialization.Schema< - serializers.accounting.InvoiceCurrency.Raw, - Merge.accounting.InvoiceCurrency -> = core.serialization.undiscriminatedUnion([TransactionCurrencyEnum, core.serialization.string()]); - -export declare namespace InvoiceCurrency { - export type Raw = TransactionCurrencyEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/InvoiceEmployee.ts b/src/serialization/resources/accounting/types/InvoiceEmployee.ts deleted file mode 100644 index f9eef8f43..000000000 --- a/src/serialization/resources/accounting/types/InvoiceEmployee.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Employee } from "./Employee"; - -export const InvoiceEmployee: core.serialization.Schema< - serializers.accounting.InvoiceEmployee.Raw, - Merge.accounting.InvoiceEmployee -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Employee]); - -export declare namespace InvoiceEmployee { - export type Raw = string | Employee.Raw; -} diff --git a/src/serialization/resources/accounting/types/InvoiceLineItem.ts b/src/serialization/resources/accounting/types/InvoiceLineItem.ts deleted file mode 100644 index 884b7f3da..000000000 --- a/src/serialization/resources/accounting/types/InvoiceLineItem.ts +++ /dev/null @@ -1,75 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { InvoiceLineItemAccount } from "./InvoiceLineItemAccount"; -import { InvoiceLineItemContact } from "./InvoiceLineItemContact"; -import { InvoiceLineItemCurrency } from "./InvoiceLineItemCurrency"; -import { InvoiceLineItemEmployee } from "./InvoiceLineItemEmployee"; -import { InvoiceLineItemItem } from "./InvoiceLineItemItem"; -import { InvoiceLineItemProject } from "./InvoiceLineItemProject"; -import { InvoiceLineItemTrackingCategoriesItem } from "./InvoiceLineItemTrackingCategoriesItem"; -import { InvoiceLineItemTrackingCategory } from "./InvoiceLineItemTrackingCategory"; -import { RemoteField } from "./RemoteField"; - -export const InvoiceLineItem: core.serialization.ObjectSchema< - serializers.accounting.InvoiceLineItem.Raw, - Merge.accounting.InvoiceLineItem -> = core.serialization.object({ - id: core.serialization.string().optional(), - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - createdAt: core.serialization.property("created_at", core.serialization.date().optional()), - modifiedAt: core.serialization.property("modified_at", core.serialization.date().optional()), - description: core.serialization.string().optional(), - unitPrice: core.serialization.property("unit_price", core.serialization.number().optional()), - quantity: core.serialization.number().optional(), - totalAmount: core.serialization.property("total_amount", core.serialization.number().optional()), - employee: InvoiceLineItemEmployee.optional(), - project: InvoiceLineItemProject.optional(), - contact: InvoiceLineItemContact.optional(), - currency: InvoiceLineItemCurrency.optional(), - exchangeRate: core.serialization.property("exchange_rate", core.serialization.string().optional()), - item: InvoiceLineItemItem.optional(), - account: InvoiceLineItemAccount.optional(), - taxRate: core.serialization.property("tax_rate", core.serialization.string().optional()), - trackingCategory: core.serialization.property("tracking_category", InvoiceLineItemTrackingCategory.optional()), - trackingCategories: core.serialization.property( - "tracking_categories", - core.serialization.list(InvoiceLineItemTrackingCategoriesItem.optional()).optional(), - ), - company: core.serialization.string().optional(), - remoteWasDeleted: core.serialization.property("remote_was_deleted", core.serialization.boolean().optional()), - fieldMappings: core.serialization.property( - "field_mappings", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - remoteFields: core.serialization.property("remote_fields", core.serialization.list(RemoteField).optional()), -}); - -export declare namespace InvoiceLineItem { - export interface Raw { - id?: string | null; - remote_id?: string | null; - created_at?: string | null; - modified_at?: string | null; - description?: string | null; - unit_price?: number | null; - quantity?: number | null; - total_amount?: number | null; - employee?: InvoiceLineItemEmployee.Raw | null; - project?: InvoiceLineItemProject.Raw | null; - contact?: InvoiceLineItemContact.Raw | null; - currency?: InvoiceLineItemCurrency.Raw | null; - exchange_rate?: string | null; - item?: InvoiceLineItemItem.Raw | null; - account?: InvoiceLineItemAccount.Raw | null; - tax_rate?: string | null; - tracking_category?: InvoiceLineItemTrackingCategory.Raw | null; - tracking_categories?: (InvoiceLineItemTrackingCategoriesItem.Raw | null | undefined)[] | null; - company?: string | null; - remote_was_deleted?: boolean | null; - field_mappings?: Record | null; - remote_fields?: RemoteField.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/InvoiceLineItemAccount.ts b/src/serialization/resources/accounting/types/InvoiceLineItemAccount.ts deleted file mode 100644 index 5ddea3201..000000000 --- a/src/serialization/resources/accounting/types/InvoiceLineItemAccount.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Account } from "./Account"; - -export const InvoiceLineItemAccount: core.serialization.Schema< - serializers.accounting.InvoiceLineItemAccount.Raw, - Merge.accounting.InvoiceLineItemAccount -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Account]); - -export declare namespace InvoiceLineItemAccount { - export type Raw = string | Account.Raw; -} diff --git a/src/serialization/resources/accounting/types/InvoiceLineItemContact.ts b/src/serialization/resources/accounting/types/InvoiceLineItemContact.ts deleted file mode 100644 index d5cc744f9..000000000 --- a/src/serialization/resources/accounting/types/InvoiceLineItemContact.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Contact } from "./Contact"; - -export const InvoiceLineItemContact: core.serialization.Schema< - serializers.accounting.InvoiceLineItemContact.Raw, - Merge.accounting.InvoiceLineItemContact -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Contact]); - -export declare namespace InvoiceLineItemContact { - export type Raw = string | Contact.Raw; -} diff --git a/src/serialization/resources/accounting/types/InvoiceLineItemCurrency.ts b/src/serialization/resources/accounting/types/InvoiceLineItemCurrency.ts deleted file mode 100644 index db8e59d26..000000000 --- a/src/serialization/resources/accounting/types/InvoiceLineItemCurrency.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TransactionCurrencyEnum } from "./TransactionCurrencyEnum"; - -export const InvoiceLineItemCurrency: core.serialization.Schema< - serializers.accounting.InvoiceLineItemCurrency.Raw, - Merge.accounting.InvoiceLineItemCurrency -> = core.serialization.undiscriminatedUnion([TransactionCurrencyEnum, core.serialization.string()]); - -export declare namespace InvoiceLineItemCurrency { - export type Raw = TransactionCurrencyEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/InvoiceLineItemEmployee.ts b/src/serialization/resources/accounting/types/InvoiceLineItemEmployee.ts deleted file mode 100644 index 26c5f91ad..000000000 --- a/src/serialization/resources/accounting/types/InvoiceLineItemEmployee.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Employee } from "./Employee"; - -export const InvoiceLineItemEmployee: core.serialization.Schema< - serializers.accounting.InvoiceLineItemEmployee.Raw, - Merge.accounting.InvoiceLineItemEmployee -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Employee]); - -export declare namespace InvoiceLineItemEmployee { - export type Raw = string | Employee.Raw; -} diff --git a/src/serialization/resources/accounting/types/InvoiceLineItemItem.ts b/src/serialization/resources/accounting/types/InvoiceLineItemItem.ts deleted file mode 100644 index c7aaef7e6..000000000 --- a/src/serialization/resources/accounting/types/InvoiceLineItemItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Item } from "./Item"; - -export const InvoiceLineItemItem: core.serialization.Schema< - serializers.accounting.InvoiceLineItemItem.Raw, - Merge.accounting.InvoiceLineItemItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Item]); - -export declare namespace InvoiceLineItemItem { - export type Raw = string | Item.Raw; -} diff --git a/src/serialization/resources/accounting/types/InvoiceLineItemProject.ts b/src/serialization/resources/accounting/types/InvoiceLineItemProject.ts deleted file mode 100644 index dcb2036ac..000000000 --- a/src/serialization/resources/accounting/types/InvoiceLineItemProject.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Project } from "./Project"; - -export const InvoiceLineItemProject: core.serialization.Schema< - serializers.accounting.InvoiceLineItemProject.Raw, - Merge.accounting.InvoiceLineItemProject -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Project]); - -export declare namespace InvoiceLineItemProject { - export type Raw = string | Project.Raw; -} diff --git a/src/serialization/resources/accounting/types/InvoiceLineItemRequest.ts b/src/serialization/resources/accounting/types/InvoiceLineItemRequest.ts deleted file mode 100644 index 86006d8e5..000000000 --- a/src/serialization/resources/accounting/types/InvoiceLineItemRequest.ts +++ /dev/null @@ -1,75 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { InvoiceLineItemRequestAccount } from "./InvoiceLineItemRequestAccount"; -import { InvoiceLineItemRequestContact } from "./InvoiceLineItemRequestContact"; -import { InvoiceLineItemRequestCurrency } from "./InvoiceLineItemRequestCurrency"; -import { InvoiceLineItemRequestEmployee } from "./InvoiceLineItemRequestEmployee"; -import { InvoiceLineItemRequestItem } from "./InvoiceLineItemRequestItem"; -import { InvoiceLineItemRequestProject } from "./InvoiceLineItemRequestProject"; -import { InvoiceLineItemRequestTrackingCategoriesItem } from "./InvoiceLineItemRequestTrackingCategoriesItem"; -import { InvoiceLineItemRequestTrackingCategory } from "./InvoiceLineItemRequestTrackingCategory"; -import { RemoteFieldRequest } from "./RemoteFieldRequest"; - -export const InvoiceLineItemRequest: core.serialization.ObjectSchema< - serializers.accounting.InvoiceLineItemRequest.Raw, - Merge.accounting.InvoiceLineItemRequest -> = core.serialization.object({ - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - description: core.serialization.string().optional(), - unitPrice: core.serialization.property("unit_price", core.serialization.number().optional()), - quantity: core.serialization.number().optional(), - totalAmount: core.serialization.property("total_amount", core.serialization.number().optional()), - employee: InvoiceLineItemRequestEmployee.optional(), - project: InvoiceLineItemRequestProject.optional(), - contact: InvoiceLineItemRequestContact.optional(), - currency: InvoiceLineItemRequestCurrency.optional(), - exchangeRate: core.serialization.property("exchange_rate", core.serialization.string().optional()), - item: InvoiceLineItemRequestItem.optional(), - account: InvoiceLineItemRequestAccount.optional(), - taxRate: core.serialization.property("tax_rate", core.serialization.string().optional()), - trackingCategory: core.serialization.property( - "tracking_category", - InvoiceLineItemRequestTrackingCategory.optional(), - ), - trackingCategories: core.serialization.property( - "tracking_categories", - core.serialization.list(InvoiceLineItemRequestTrackingCategoriesItem.optional()).optional(), - ), - company: core.serialization.string().optional(), - integrationParams: core.serialization.property( - "integration_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - linkedAccountParams: core.serialization.property( - "linked_account_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - remoteFields: core.serialization.property("remote_fields", core.serialization.list(RemoteFieldRequest).optional()), -}); - -export declare namespace InvoiceLineItemRequest { - export interface Raw { - remote_id?: string | null; - description?: string | null; - unit_price?: number | null; - quantity?: number | null; - total_amount?: number | null; - employee?: InvoiceLineItemRequestEmployee.Raw | null; - project?: InvoiceLineItemRequestProject.Raw | null; - contact?: InvoiceLineItemRequestContact.Raw | null; - currency?: InvoiceLineItemRequestCurrency.Raw | null; - exchange_rate?: string | null; - item?: InvoiceLineItemRequestItem.Raw | null; - account?: InvoiceLineItemRequestAccount.Raw | null; - tax_rate?: string | null; - tracking_category?: InvoiceLineItemRequestTrackingCategory.Raw | null; - tracking_categories?: (InvoiceLineItemRequestTrackingCategoriesItem.Raw | null | undefined)[] | null; - company?: string | null; - integration_params?: Record | null; - linked_account_params?: Record | null; - remote_fields?: RemoteFieldRequest.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/InvoiceLineItemRequestAccount.ts b/src/serialization/resources/accounting/types/InvoiceLineItemRequestAccount.ts deleted file mode 100644 index c8a45cdc1..000000000 --- a/src/serialization/resources/accounting/types/InvoiceLineItemRequestAccount.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Account } from "./Account"; - -export const InvoiceLineItemRequestAccount: core.serialization.Schema< - serializers.accounting.InvoiceLineItemRequestAccount.Raw, - Merge.accounting.InvoiceLineItemRequestAccount -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Account]); - -export declare namespace InvoiceLineItemRequestAccount { - export type Raw = string | Account.Raw; -} diff --git a/src/serialization/resources/accounting/types/InvoiceLineItemRequestContact.ts b/src/serialization/resources/accounting/types/InvoiceLineItemRequestContact.ts deleted file mode 100644 index 34706b30e..000000000 --- a/src/serialization/resources/accounting/types/InvoiceLineItemRequestContact.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Contact } from "./Contact"; - -export const InvoiceLineItemRequestContact: core.serialization.Schema< - serializers.accounting.InvoiceLineItemRequestContact.Raw, - Merge.accounting.InvoiceLineItemRequestContact -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Contact]); - -export declare namespace InvoiceLineItemRequestContact { - export type Raw = string | Contact.Raw; -} diff --git a/src/serialization/resources/accounting/types/InvoiceLineItemRequestCurrency.ts b/src/serialization/resources/accounting/types/InvoiceLineItemRequestCurrency.ts deleted file mode 100644 index 72d8fb583..000000000 --- a/src/serialization/resources/accounting/types/InvoiceLineItemRequestCurrency.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TransactionCurrencyEnum } from "./TransactionCurrencyEnum"; - -export const InvoiceLineItemRequestCurrency: core.serialization.Schema< - serializers.accounting.InvoiceLineItemRequestCurrency.Raw, - Merge.accounting.InvoiceLineItemRequestCurrency -> = core.serialization.undiscriminatedUnion([TransactionCurrencyEnum, core.serialization.string()]); - -export declare namespace InvoiceLineItemRequestCurrency { - export type Raw = TransactionCurrencyEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/InvoiceLineItemRequestEmployee.ts b/src/serialization/resources/accounting/types/InvoiceLineItemRequestEmployee.ts deleted file mode 100644 index 3e6d123a3..000000000 --- a/src/serialization/resources/accounting/types/InvoiceLineItemRequestEmployee.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Employee } from "./Employee"; - -export const InvoiceLineItemRequestEmployee: core.serialization.Schema< - serializers.accounting.InvoiceLineItemRequestEmployee.Raw, - Merge.accounting.InvoiceLineItemRequestEmployee -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Employee]); - -export declare namespace InvoiceLineItemRequestEmployee { - export type Raw = string | Employee.Raw; -} diff --git a/src/serialization/resources/accounting/types/InvoiceLineItemRequestItem.ts b/src/serialization/resources/accounting/types/InvoiceLineItemRequestItem.ts deleted file mode 100644 index 61058e508..000000000 --- a/src/serialization/resources/accounting/types/InvoiceLineItemRequestItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Item } from "./Item"; - -export const InvoiceLineItemRequestItem: core.serialization.Schema< - serializers.accounting.InvoiceLineItemRequestItem.Raw, - Merge.accounting.InvoiceLineItemRequestItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Item]); - -export declare namespace InvoiceLineItemRequestItem { - export type Raw = string | Item.Raw; -} diff --git a/src/serialization/resources/accounting/types/InvoiceLineItemRequestProject.ts b/src/serialization/resources/accounting/types/InvoiceLineItemRequestProject.ts deleted file mode 100644 index 4d2b629c0..000000000 --- a/src/serialization/resources/accounting/types/InvoiceLineItemRequestProject.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Project } from "./Project"; - -export const InvoiceLineItemRequestProject: core.serialization.Schema< - serializers.accounting.InvoiceLineItemRequestProject.Raw, - Merge.accounting.InvoiceLineItemRequestProject -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Project]); - -export declare namespace InvoiceLineItemRequestProject { - export type Raw = string | Project.Raw; -} diff --git a/src/serialization/resources/accounting/types/InvoiceLineItemRequestTrackingCategoriesItem.ts b/src/serialization/resources/accounting/types/InvoiceLineItemRequestTrackingCategoriesItem.ts deleted file mode 100644 index 953d6e8c7..000000000 --- a/src/serialization/resources/accounting/types/InvoiceLineItemRequestTrackingCategoriesItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TrackingCategory } from "./TrackingCategory"; - -export const InvoiceLineItemRequestTrackingCategoriesItem: core.serialization.Schema< - serializers.accounting.InvoiceLineItemRequestTrackingCategoriesItem.Raw, - Merge.accounting.InvoiceLineItemRequestTrackingCategoriesItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), TrackingCategory]); - -export declare namespace InvoiceLineItemRequestTrackingCategoriesItem { - export type Raw = string | TrackingCategory.Raw; -} diff --git a/src/serialization/resources/accounting/types/InvoiceLineItemRequestTrackingCategory.ts b/src/serialization/resources/accounting/types/InvoiceLineItemRequestTrackingCategory.ts deleted file mode 100644 index 837139257..000000000 --- a/src/serialization/resources/accounting/types/InvoiceLineItemRequestTrackingCategory.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TrackingCategory } from "./TrackingCategory"; - -export const InvoiceLineItemRequestTrackingCategory: core.serialization.Schema< - serializers.accounting.InvoiceLineItemRequestTrackingCategory.Raw, - Merge.accounting.InvoiceLineItemRequestTrackingCategory -> = core.serialization.undiscriminatedUnion([core.serialization.string(), TrackingCategory]); - -export declare namespace InvoiceLineItemRequestTrackingCategory { - export type Raw = string | TrackingCategory.Raw; -} diff --git a/src/serialization/resources/accounting/types/InvoiceLineItemTrackingCategoriesItem.ts b/src/serialization/resources/accounting/types/InvoiceLineItemTrackingCategoriesItem.ts deleted file mode 100644 index ed3a8bae5..000000000 --- a/src/serialization/resources/accounting/types/InvoiceLineItemTrackingCategoriesItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TrackingCategory } from "./TrackingCategory"; - -export const InvoiceLineItemTrackingCategoriesItem: core.serialization.Schema< - serializers.accounting.InvoiceLineItemTrackingCategoriesItem.Raw, - Merge.accounting.InvoiceLineItemTrackingCategoriesItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), TrackingCategory]); - -export declare namespace InvoiceLineItemTrackingCategoriesItem { - export type Raw = string | TrackingCategory.Raw; -} diff --git a/src/serialization/resources/accounting/types/InvoiceLineItemTrackingCategory.ts b/src/serialization/resources/accounting/types/InvoiceLineItemTrackingCategory.ts deleted file mode 100644 index d48f75cc4..000000000 --- a/src/serialization/resources/accounting/types/InvoiceLineItemTrackingCategory.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TrackingCategory } from "./TrackingCategory"; - -export const InvoiceLineItemTrackingCategory: core.serialization.Schema< - serializers.accounting.InvoiceLineItemTrackingCategory.Raw, - Merge.accounting.InvoiceLineItemTrackingCategory -> = core.serialization.undiscriminatedUnion([core.serialization.string(), TrackingCategory]); - -export declare namespace InvoiceLineItemTrackingCategory { - export type Raw = string | TrackingCategory.Raw; -} diff --git a/src/serialization/resources/accounting/types/InvoicePaymentTerm.ts b/src/serialization/resources/accounting/types/InvoicePaymentTerm.ts deleted file mode 100644 index eaf3ecdef..000000000 --- a/src/serialization/resources/accounting/types/InvoicePaymentTerm.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { PaymentTerm } from "./PaymentTerm"; - -export const InvoicePaymentTerm: core.serialization.Schema< - serializers.accounting.InvoicePaymentTerm.Raw, - Merge.accounting.InvoicePaymentTerm -> = core.serialization.undiscriminatedUnion([core.serialization.string(), PaymentTerm]); - -export declare namespace InvoicePaymentTerm { - export type Raw = string | PaymentTerm.Raw; -} diff --git a/src/serialization/resources/accounting/types/InvoicePaymentsItem.ts b/src/serialization/resources/accounting/types/InvoicePaymentsItem.ts deleted file mode 100644 index 0fcbace1e..000000000 --- a/src/serialization/resources/accounting/types/InvoicePaymentsItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Payment } from "./Payment"; - -export const InvoicePaymentsItem: core.serialization.Schema< - serializers.accounting.InvoicePaymentsItem.Raw, - Merge.accounting.InvoicePaymentsItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Payment]); - -export declare namespace InvoicePaymentsItem { - export type Raw = string | Payment.Raw; -} diff --git a/src/serialization/resources/accounting/types/InvoicePurchaseOrdersItem.ts b/src/serialization/resources/accounting/types/InvoicePurchaseOrdersItem.ts deleted file mode 100644 index 529836d85..000000000 --- a/src/serialization/resources/accounting/types/InvoicePurchaseOrdersItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { PurchaseOrder } from "./PurchaseOrder"; - -export const InvoicePurchaseOrdersItem: core.serialization.Schema< - serializers.accounting.InvoicePurchaseOrdersItem.Raw, - Merge.accounting.InvoicePurchaseOrdersItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), PurchaseOrder]); - -export declare namespace InvoicePurchaseOrdersItem { - export type Raw = string | PurchaseOrder.Raw; -} diff --git a/src/serialization/resources/accounting/types/InvoiceRequest.ts b/src/serialization/resources/accounting/types/InvoiceRequest.ts deleted file mode 100644 index d15e2cd32..000000000 --- a/src/serialization/resources/accounting/types/InvoiceRequest.ts +++ /dev/null @@ -1,92 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { InvoiceLineItemRequest } from "./InvoiceLineItemRequest"; -import { InvoiceRequestCompany } from "./InvoiceRequestCompany"; -import { InvoiceRequestContact } from "./InvoiceRequestContact"; -import { InvoiceRequestCurrency } from "./InvoiceRequestCurrency"; -import { InvoiceRequestEmployee } from "./InvoiceRequestEmployee"; -import { InvoiceRequestPaymentsItem } from "./InvoiceRequestPaymentsItem"; -import { InvoiceRequestPaymentTerm } from "./InvoiceRequestPaymentTerm"; -import { InvoiceRequestPurchaseOrdersItem } from "./InvoiceRequestPurchaseOrdersItem"; -import { InvoiceRequestStatus } from "./InvoiceRequestStatus"; -import { InvoiceRequestTrackingCategoriesItem } from "./InvoiceRequestTrackingCategoriesItem"; -import { InvoiceRequestType } from "./InvoiceRequestType"; -import { RemoteFieldRequest } from "./RemoteFieldRequest"; - -export const InvoiceRequest: core.serialization.ObjectSchema< - serializers.accounting.InvoiceRequest.Raw, - Merge.accounting.InvoiceRequest -> = core.serialization.object({ - type: InvoiceRequestType.optional(), - contact: InvoiceRequestContact.optional(), - number: core.serialization.string().optional(), - issueDate: core.serialization.property("issue_date", core.serialization.date().optional()), - dueDate: core.serialization.property("due_date", core.serialization.date().optional()), - paidOnDate: core.serialization.property("paid_on_date", core.serialization.date().optional()), - employee: InvoiceRequestEmployee.optional(), - memo: core.serialization.string().optional(), - status: InvoiceRequestStatus.optional(), - company: InvoiceRequestCompany.optional(), - currency: InvoiceRequestCurrency.optional(), - exchangeRate: core.serialization.property("exchange_rate", core.serialization.string().optional()), - totalDiscount: core.serialization.property("total_discount", core.serialization.number().optional()), - subTotal: core.serialization.property("sub_total", core.serialization.number().optional()), - paymentTerm: core.serialization.property("payment_term", InvoiceRequestPaymentTerm.optional()), - totalTaxAmount: core.serialization.property("total_tax_amount", core.serialization.number().optional()), - inclusiveOfTax: core.serialization.property("inclusive_of_tax", core.serialization.boolean().optional()), - totalAmount: core.serialization.property("total_amount", core.serialization.number().optional()), - balance: core.serialization.number().optional(), - payments: core.serialization.list(InvoiceRequestPaymentsItem.optional()).optional(), - trackingCategories: core.serialization.property( - "tracking_categories", - core.serialization.list(InvoiceRequestTrackingCategoriesItem.optional()).optional(), - ), - lineItems: core.serialization.property("line_items", core.serialization.list(InvoiceLineItemRequest).optional()), - purchaseOrders: core.serialization.property( - "purchase_orders", - core.serialization.list(InvoiceRequestPurchaseOrdersItem.optional()).optional(), - ), - integrationParams: core.serialization.property( - "integration_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - linkedAccountParams: core.serialization.property( - "linked_account_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - remoteFields: core.serialization.property("remote_fields", core.serialization.list(RemoteFieldRequest).optional()), -}); - -export declare namespace InvoiceRequest { - export interface Raw { - type?: InvoiceRequestType.Raw | null; - contact?: InvoiceRequestContact.Raw | null; - number?: string | null; - issue_date?: string | null; - due_date?: string | null; - paid_on_date?: string | null; - employee?: InvoiceRequestEmployee.Raw | null; - memo?: string | null; - status?: InvoiceRequestStatus.Raw | null; - company?: InvoiceRequestCompany.Raw | null; - currency?: InvoiceRequestCurrency.Raw | null; - exchange_rate?: string | null; - total_discount?: number | null; - sub_total?: number | null; - payment_term?: InvoiceRequestPaymentTerm.Raw | null; - total_tax_amount?: number | null; - inclusive_of_tax?: boolean | null; - total_amount?: number | null; - balance?: number | null; - payments?: (InvoiceRequestPaymentsItem.Raw | null | undefined)[] | null; - tracking_categories?: (InvoiceRequestTrackingCategoriesItem.Raw | null | undefined)[] | null; - line_items?: InvoiceLineItemRequest.Raw[] | null; - purchase_orders?: (InvoiceRequestPurchaseOrdersItem.Raw | null | undefined)[] | null; - integration_params?: Record | null; - linked_account_params?: Record | null; - remote_fields?: RemoteFieldRequest.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/InvoiceRequestCompany.ts b/src/serialization/resources/accounting/types/InvoiceRequestCompany.ts deleted file mode 100644 index c0ef7a927..000000000 --- a/src/serialization/resources/accounting/types/InvoiceRequestCompany.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CompanyInfo } from "./CompanyInfo"; - -export const InvoiceRequestCompany: core.serialization.Schema< - serializers.accounting.InvoiceRequestCompany.Raw, - Merge.accounting.InvoiceRequestCompany -> = core.serialization.undiscriminatedUnion([core.serialization.string(), CompanyInfo]); - -export declare namespace InvoiceRequestCompany { - export type Raw = string | CompanyInfo.Raw; -} diff --git a/src/serialization/resources/accounting/types/InvoiceRequestContact.ts b/src/serialization/resources/accounting/types/InvoiceRequestContact.ts deleted file mode 100644 index 217a03e92..000000000 --- a/src/serialization/resources/accounting/types/InvoiceRequestContact.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Contact } from "./Contact"; - -export const InvoiceRequestContact: core.serialization.Schema< - serializers.accounting.InvoiceRequestContact.Raw, - Merge.accounting.InvoiceRequestContact -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Contact]); - -export declare namespace InvoiceRequestContact { - export type Raw = string | Contact.Raw; -} diff --git a/src/serialization/resources/accounting/types/InvoiceRequestCurrency.ts b/src/serialization/resources/accounting/types/InvoiceRequestCurrency.ts deleted file mode 100644 index 7807a9d44..000000000 --- a/src/serialization/resources/accounting/types/InvoiceRequestCurrency.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TransactionCurrencyEnum } from "./TransactionCurrencyEnum"; - -export const InvoiceRequestCurrency: core.serialization.Schema< - serializers.accounting.InvoiceRequestCurrency.Raw, - Merge.accounting.InvoiceRequestCurrency -> = core.serialization.undiscriminatedUnion([TransactionCurrencyEnum, core.serialization.string()]); - -export declare namespace InvoiceRequestCurrency { - export type Raw = TransactionCurrencyEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/InvoiceRequestEmployee.ts b/src/serialization/resources/accounting/types/InvoiceRequestEmployee.ts deleted file mode 100644 index cf77c78e3..000000000 --- a/src/serialization/resources/accounting/types/InvoiceRequestEmployee.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Employee } from "./Employee"; - -export const InvoiceRequestEmployee: core.serialization.Schema< - serializers.accounting.InvoiceRequestEmployee.Raw, - Merge.accounting.InvoiceRequestEmployee -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Employee]); - -export declare namespace InvoiceRequestEmployee { - export type Raw = string | Employee.Raw; -} diff --git a/src/serialization/resources/accounting/types/InvoiceRequestPaymentTerm.ts b/src/serialization/resources/accounting/types/InvoiceRequestPaymentTerm.ts deleted file mode 100644 index 03ecca28f..000000000 --- a/src/serialization/resources/accounting/types/InvoiceRequestPaymentTerm.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { PaymentTerm } from "./PaymentTerm"; - -export const InvoiceRequestPaymentTerm: core.serialization.Schema< - serializers.accounting.InvoiceRequestPaymentTerm.Raw, - Merge.accounting.InvoiceRequestPaymentTerm -> = core.serialization.undiscriminatedUnion([core.serialization.string(), PaymentTerm]); - -export declare namespace InvoiceRequestPaymentTerm { - export type Raw = string | PaymentTerm.Raw; -} diff --git a/src/serialization/resources/accounting/types/InvoiceRequestPaymentsItem.ts b/src/serialization/resources/accounting/types/InvoiceRequestPaymentsItem.ts deleted file mode 100644 index f23b7978d..000000000 --- a/src/serialization/resources/accounting/types/InvoiceRequestPaymentsItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Payment } from "./Payment"; - -export const InvoiceRequestPaymentsItem: core.serialization.Schema< - serializers.accounting.InvoiceRequestPaymentsItem.Raw, - Merge.accounting.InvoiceRequestPaymentsItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Payment]); - -export declare namespace InvoiceRequestPaymentsItem { - export type Raw = string | Payment.Raw; -} diff --git a/src/serialization/resources/accounting/types/InvoiceRequestPurchaseOrdersItem.ts b/src/serialization/resources/accounting/types/InvoiceRequestPurchaseOrdersItem.ts deleted file mode 100644 index 747b45e9c..000000000 --- a/src/serialization/resources/accounting/types/InvoiceRequestPurchaseOrdersItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { PurchaseOrder } from "./PurchaseOrder"; - -export const InvoiceRequestPurchaseOrdersItem: core.serialization.Schema< - serializers.accounting.InvoiceRequestPurchaseOrdersItem.Raw, - Merge.accounting.InvoiceRequestPurchaseOrdersItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), PurchaseOrder]); - -export declare namespace InvoiceRequestPurchaseOrdersItem { - export type Raw = string | PurchaseOrder.Raw; -} diff --git a/src/serialization/resources/accounting/types/InvoiceRequestStatus.ts b/src/serialization/resources/accounting/types/InvoiceRequestStatus.ts deleted file mode 100644 index 7eeefc6ab..000000000 --- a/src/serialization/resources/accounting/types/InvoiceRequestStatus.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { InvoiceStatusEnum } from "./InvoiceStatusEnum"; - -export const InvoiceRequestStatus: core.serialization.Schema< - serializers.accounting.InvoiceRequestStatus.Raw, - Merge.accounting.InvoiceRequestStatus -> = core.serialization.undiscriminatedUnion([InvoiceStatusEnum, core.serialization.string()]); - -export declare namespace InvoiceRequestStatus { - export type Raw = InvoiceStatusEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/InvoiceRequestTrackingCategoriesItem.ts b/src/serialization/resources/accounting/types/InvoiceRequestTrackingCategoriesItem.ts deleted file mode 100644 index 87ad52054..000000000 --- a/src/serialization/resources/accounting/types/InvoiceRequestTrackingCategoriesItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TrackingCategory } from "./TrackingCategory"; - -export const InvoiceRequestTrackingCategoriesItem: core.serialization.Schema< - serializers.accounting.InvoiceRequestTrackingCategoriesItem.Raw, - Merge.accounting.InvoiceRequestTrackingCategoriesItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), TrackingCategory]); - -export declare namespace InvoiceRequestTrackingCategoriesItem { - export type Raw = string | TrackingCategory.Raw; -} diff --git a/src/serialization/resources/accounting/types/InvoiceRequestType.ts b/src/serialization/resources/accounting/types/InvoiceRequestType.ts deleted file mode 100644 index 3cee48120..000000000 --- a/src/serialization/resources/accounting/types/InvoiceRequestType.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { InvoiceTypeEnum } from "./InvoiceTypeEnum"; - -export const InvoiceRequestType: core.serialization.Schema< - serializers.accounting.InvoiceRequestType.Raw, - Merge.accounting.InvoiceRequestType -> = core.serialization.undiscriminatedUnion([InvoiceTypeEnum, core.serialization.string()]); - -export declare namespace InvoiceRequestType { - export type Raw = InvoiceTypeEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/InvoiceResponse.ts b/src/serialization/resources/accounting/types/InvoiceResponse.ts deleted file mode 100644 index 565ee9063..000000000 --- a/src/serialization/resources/accounting/types/InvoiceResponse.ts +++ /dev/null @@ -1,27 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import * as serializers from "../../../index"; -import { DebugModeLog } from "./DebugModeLog"; -import { ErrorValidationProblem } from "./ErrorValidationProblem"; -import { WarningValidationProblem } from "./WarningValidationProblem"; - -export const InvoiceResponse: core.serialization.ObjectSchema< - serializers.accounting.InvoiceResponse.Raw, - Merge.accounting.InvoiceResponse -> = core.serialization.object({ - model: core.serialization.lazyObject(() => serializers.accounting.Invoice), - warnings: core.serialization.list(WarningValidationProblem), - errors: core.serialization.list(ErrorValidationProblem), - logs: core.serialization.list(DebugModeLog).optional(), -}); - -export declare namespace InvoiceResponse { - export interface Raw { - model: serializers.accounting.Invoice.Raw; - warnings: WarningValidationProblem.Raw[]; - errors: ErrorValidationProblem.Raw[]; - logs?: DebugModeLog.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/InvoiceStatus.ts b/src/serialization/resources/accounting/types/InvoiceStatus.ts deleted file mode 100644 index b8ddd9dfa..000000000 --- a/src/serialization/resources/accounting/types/InvoiceStatus.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { InvoiceStatusEnum } from "./InvoiceStatusEnum"; - -export const InvoiceStatus: core.serialization.Schema< - serializers.accounting.InvoiceStatus.Raw, - Merge.accounting.InvoiceStatus -> = core.serialization.undiscriminatedUnion([InvoiceStatusEnum, core.serialization.string()]); - -export declare namespace InvoiceStatus { - export type Raw = InvoiceStatusEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/InvoiceStatusEnum.ts b/src/serialization/resources/accounting/types/InvoiceStatusEnum.ts deleted file mode 100644 index 5ec5031eb..000000000 --- a/src/serialization/resources/accounting/types/InvoiceStatusEnum.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const InvoiceStatusEnum: core.serialization.Schema< - serializers.accounting.InvoiceStatusEnum.Raw, - Merge.accounting.InvoiceStatusEnum -> = core.serialization.enum_(["PAID", "DRAFT", "SUBMITTED", "PARTIALLY_PAID", "OPEN", "VOID"]); - -export declare namespace InvoiceStatusEnum { - export type Raw = "PAID" | "DRAFT" | "SUBMITTED" | "PARTIALLY_PAID" | "OPEN" | "VOID"; -} diff --git a/src/serialization/resources/accounting/types/InvoiceTrackingCategoriesItem.ts b/src/serialization/resources/accounting/types/InvoiceTrackingCategoriesItem.ts deleted file mode 100644 index 3a9091574..000000000 --- a/src/serialization/resources/accounting/types/InvoiceTrackingCategoriesItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TrackingCategory } from "./TrackingCategory"; - -export const InvoiceTrackingCategoriesItem: core.serialization.Schema< - serializers.accounting.InvoiceTrackingCategoriesItem.Raw, - Merge.accounting.InvoiceTrackingCategoriesItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), TrackingCategory]); - -export declare namespace InvoiceTrackingCategoriesItem { - export type Raw = string | TrackingCategory.Raw; -} diff --git a/src/serialization/resources/accounting/types/InvoiceType.ts b/src/serialization/resources/accounting/types/InvoiceType.ts deleted file mode 100644 index afcd0cd37..000000000 --- a/src/serialization/resources/accounting/types/InvoiceType.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { InvoiceTypeEnum } from "./InvoiceTypeEnum"; - -export const InvoiceType: core.serialization.Schema< - serializers.accounting.InvoiceType.Raw, - Merge.accounting.InvoiceType -> = core.serialization.undiscriminatedUnion([InvoiceTypeEnum, core.serialization.string()]); - -export declare namespace InvoiceType { - export type Raw = InvoiceTypeEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/InvoiceTypeEnum.ts b/src/serialization/resources/accounting/types/InvoiceTypeEnum.ts deleted file mode 100644 index b155b1ecc..000000000 --- a/src/serialization/resources/accounting/types/InvoiceTypeEnum.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const InvoiceTypeEnum: core.serialization.Schema< - serializers.accounting.InvoiceTypeEnum.Raw, - Merge.accounting.InvoiceTypeEnum -> = core.serialization.enum_(["ACCOUNTS_RECEIVABLE", "ACCOUNTS_PAYABLE"]); - -export declare namespace InvoiceTypeEnum { - export type Raw = "ACCOUNTS_RECEIVABLE" | "ACCOUNTS_PAYABLE"; -} diff --git a/src/serialization/resources/accounting/types/Issue.ts b/src/serialization/resources/accounting/types/Issue.ts deleted file mode 100644 index 5c2ebb15c..000000000 --- a/src/serialization/resources/accounting/types/Issue.ts +++ /dev/null @@ -1,37 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { IssueStatus } from "./IssueStatus"; - -export const Issue: core.serialization.ObjectSchema = - core.serialization.object({ - id: core.serialization.string().optional(), - status: IssueStatus.optional(), - errorDescription: core.serialization.property("error_description", core.serialization.string()), - endUser: core.serialization.property( - "end_user", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - firstIncidentTime: core.serialization.property("first_incident_time", core.serialization.date().optional()), - lastIncidentTime: core.serialization.property("last_incident_time", core.serialization.date().optional()), - isMuted: core.serialization.property("is_muted", core.serialization.boolean().optional()), - errorDetails: core.serialization.property( - "error_details", - core.serialization.list(core.serialization.string()).optional(), - ), - }); - -export declare namespace Issue { - export interface Raw { - id?: string | null; - status?: IssueStatus.Raw | null; - error_description: string; - end_user?: Record | null; - first_incident_time?: string | null; - last_incident_time?: string | null; - is_muted?: boolean | null; - error_details?: string[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/IssueStatus.ts b/src/serialization/resources/accounting/types/IssueStatus.ts deleted file mode 100644 index c3af9828f..000000000 --- a/src/serialization/resources/accounting/types/IssueStatus.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { IssueStatusEnum } from "./IssueStatusEnum"; - -export const IssueStatus: core.serialization.Schema< - serializers.accounting.IssueStatus.Raw, - Merge.accounting.IssueStatus -> = core.serialization.undiscriminatedUnion([IssueStatusEnum, core.serialization.string()]); - -export declare namespace IssueStatus { - export type Raw = IssueStatusEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/IssueStatusEnum.ts b/src/serialization/resources/accounting/types/IssueStatusEnum.ts deleted file mode 100644 index c5f5b2f8c..000000000 --- a/src/serialization/resources/accounting/types/IssueStatusEnum.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const IssueStatusEnum: core.serialization.Schema< - serializers.accounting.IssueStatusEnum.Raw, - Merge.accounting.IssueStatusEnum -> = core.serialization.enum_(["ONGOING", "RESOLVED"]); - -export declare namespace IssueStatusEnum { - export type Raw = "ONGOING" | "RESOLVED"; -} diff --git a/src/serialization/resources/accounting/types/Item.ts b/src/serialization/resources/accounting/types/Item.ts deleted file mode 100644 index 1b8e14c52..000000000 --- a/src/serialization/resources/accounting/types/Item.ts +++ /dev/null @@ -1,61 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { ItemCompany } from "./ItemCompany"; -import { ItemPurchaseAccount } from "./ItemPurchaseAccount"; -import { ItemPurchaseTaxRate } from "./ItemPurchaseTaxRate"; -import { ItemSalesAccount } from "./ItemSalesAccount"; -import { ItemSalesTaxRate } from "./ItemSalesTaxRate"; -import { ItemStatus } from "./ItemStatus"; -import { ItemType } from "./ItemType"; -import { RemoteData } from "./RemoteData"; - -export const Item: core.serialization.ObjectSchema = - core.serialization.object({ - id: core.serialization.string().optional(), - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - createdAt: core.serialization.property("created_at", core.serialization.date().optional()), - modifiedAt: core.serialization.property("modified_at", core.serialization.date().optional()), - name: core.serialization.string().optional(), - status: ItemStatus.optional(), - type: ItemType.optional(), - unitPrice: core.serialization.property("unit_price", core.serialization.number().optional()), - purchasePrice: core.serialization.property("purchase_price", core.serialization.number().optional()), - purchaseAccount: core.serialization.property("purchase_account", ItemPurchaseAccount.optional()), - salesAccount: core.serialization.property("sales_account", ItemSalesAccount.optional()), - company: ItemCompany.optional(), - purchaseTaxRate: core.serialization.property("purchase_tax_rate", ItemPurchaseTaxRate.optional()), - salesTaxRate: core.serialization.property("sales_tax_rate", ItemSalesTaxRate.optional()), - remoteUpdatedAt: core.serialization.property("remote_updated_at", core.serialization.date().optional()), - remoteWasDeleted: core.serialization.property("remote_was_deleted", core.serialization.boolean().optional()), - fieldMappings: core.serialization.property( - "field_mappings", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - remoteData: core.serialization.property("remote_data", core.serialization.list(RemoteData).optional()), - }); - -export declare namespace Item { - export interface Raw { - id?: string | null; - remote_id?: string | null; - created_at?: string | null; - modified_at?: string | null; - name?: string | null; - status?: ItemStatus.Raw | null; - type?: ItemType.Raw | null; - unit_price?: number | null; - purchase_price?: number | null; - purchase_account?: ItemPurchaseAccount.Raw | null; - sales_account?: ItemSalesAccount.Raw | null; - company?: ItemCompany.Raw | null; - purchase_tax_rate?: ItemPurchaseTaxRate.Raw | null; - sales_tax_rate?: ItemSalesTaxRate.Raw | null; - remote_updated_at?: string | null; - remote_was_deleted?: boolean | null; - field_mappings?: Record | null; - remote_data?: RemoteData.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/ItemCompany.ts b/src/serialization/resources/accounting/types/ItemCompany.ts deleted file mode 100644 index fed7b2c85..000000000 --- a/src/serialization/resources/accounting/types/ItemCompany.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CompanyInfo } from "./CompanyInfo"; - -export const ItemCompany: core.serialization.Schema< - serializers.accounting.ItemCompany.Raw, - Merge.accounting.ItemCompany -> = core.serialization.undiscriminatedUnion([core.serialization.string(), CompanyInfo]); - -export declare namespace ItemCompany { - export type Raw = string | CompanyInfo.Raw; -} diff --git a/src/serialization/resources/accounting/types/ItemFormatEnum.ts b/src/serialization/resources/accounting/types/ItemFormatEnum.ts deleted file mode 100644 index d5bf47c6d..000000000 --- a/src/serialization/resources/accounting/types/ItemFormatEnum.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const ItemFormatEnum: core.serialization.Schema< - serializers.accounting.ItemFormatEnum.Raw, - Merge.accounting.ItemFormatEnum -> = core.serialization.enum_(["string", "number", "date", "datetime", "bool", "list"]); - -export declare namespace ItemFormatEnum { - export type Raw = "string" | "number" | "date" | "datetime" | "bool" | "list"; -} diff --git a/src/serialization/resources/accounting/types/ItemPurchaseAccount.ts b/src/serialization/resources/accounting/types/ItemPurchaseAccount.ts deleted file mode 100644 index 18c96cb2b..000000000 --- a/src/serialization/resources/accounting/types/ItemPurchaseAccount.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Account } from "./Account"; - -export const ItemPurchaseAccount: core.serialization.Schema< - serializers.accounting.ItemPurchaseAccount.Raw, - Merge.accounting.ItemPurchaseAccount -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Account]); - -export declare namespace ItemPurchaseAccount { - export type Raw = string | Account.Raw; -} diff --git a/src/serialization/resources/accounting/types/ItemPurchaseTaxRate.ts b/src/serialization/resources/accounting/types/ItemPurchaseTaxRate.ts deleted file mode 100644 index de3e6c43e..000000000 --- a/src/serialization/resources/accounting/types/ItemPurchaseTaxRate.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TaxRate } from "./TaxRate"; - -export const ItemPurchaseTaxRate: core.serialization.Schema< - serializers.accounting.ItemPurchaseTaxRate.Raw, - Merge.accounting.ItemPurchaseTaxRate -> = core.serialization.undiscriminatedUnion([core.serialization.string(), TaxRate]); - -export declare namespace ItemPurchaseTaxRate { - export type Raw = string | TaxRate.Raw; -} diff --git a/src/serialization/resources/accounting/types/ItemRequestRequest.ts b/src/serialization/resources/accounting/types/ItemRequestRequest.ts deleted file mode 100644 index 41c545b23..000000000 --- a/src/serialization/resources/accounting/types/ItemRequestRequest.ts +++ /dev/null @@ -1,53 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { ItemRequestRequestCompany } from "./ItemRequestRequestCompany"; -import { ItemRequestRequestPurchaseAccount } from "./ItemRequestRequestPurchaseAccount"; -import { ItemRequestRequestPurchaseTaxRate } from "./ItemRequestRequestPurchaseTaxRate"; -import { ItemRequestRequestSalesAccount } from "./ItemRequestRequestSalesAccount"; -import { ItemRequestRequestSalesTaxRate } from "./ItemRequestRequestSalesTaxRate"; -import { ItemRequestRequestStatus } from "./ItemRequestRequestStatus"; -import { ItemRequestRequestType } from "./ItemRequestRequestType"; - -export const ItemRequestRequest: core.serialization.ObjectSchema< - serializers.accounting.ItemRequestRequest.Raw, - Merge.accounting.ItemRequestRequest -> = core.serialization.object({ - name: core.serialization.string().optional(), - status: ItemRequestRequestStatus.optional(), - type: ItemRequestRequestType.optional(), - unitPrice: core.serialization.property("unit_price", core.serialization.number().optional()), - purchasePrice: core.serialization.property("purchase_price", core.serialization.number().optional()), - purchaseAccount: core.serialization.property("purchase_account", ItemRequestRequestPurchaseAccount.optional()), - salesAccount: core.serialization.property("sales_account", ItemRequestRequestSalesAccount.optional()), - company: ItemRequestRequestCompany.optional(), - purchaseTaxRate: core.serialization.property("purchase_tax_rate", ItemRequestRequestPurchaseTaxRate.optional()), - salesTaxRate: core.serialization.property("sales_tax_rate", ItemRequestRequestSalesTaxRate.optional()), - integrationParams: core.serialization.property( - "integration_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - linkedAccountParams: core.serialization.property( - "linked_account_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), -}); - -export declare namespace ItemRequestRequest { - export interface Raw { - name?: string | null; - status?: ItemRequestRequestStatus.Raw | null; - type?: ItemRequestRequestType.Raw | null; - unit_price?: number | null; - purchase_price?: number | null; - purchase_account?: ItemRequestRequestPurchaseAccount.Raw | null; - sales_account?: ItemRequestRequestSalesAccount.Raw | null; - company?: ItemRequestRequestCompany.Raw | null; - purchase_tax_rate?: ItemRequestRequestPurchaseTaxRate.Raw | null; - sales_tax_rate?: ItemRequestRequestSalesTaxRate.Raw | null; - integration_params?: Record | null; - linked_account_params?: Record | null; - } -} diff --git a/src/serialization/resources/accounting/types/ItemRequestRequestCompany.ts b/src/serialization/resources/accounting/types/ItemRequestRequestCompany.ts deleted file mode 100644 index de69132f1..000000000 --- a/src/serialization/resources/accounting/types/ItemRequestRequestCompany.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CompanyInfo } from "./CompanyInfo"; - -export const ItemRequestRequestCompany: core.serialization.Schema< - serializers.accounting.ItemRequestRequestCompany.Raw, - Merge.accounting.ItemRequestRequestCompany -> = core.serialization.undiscriminatedUnion([core.serialization.string(), CompanyInfo]); - -export declare namespace ItemRequestRequestCompany { - export type Raw = string | CompanyInfo.Raw; -} diff --git a/src/serialization/resources/accounting/types/ItemRequestRequestPurchaseAccount.ts b/src/serialization/resources/accounting/types/ItemRequestRequestPurchaseAccount.ts deleted file mode 100644 index ccbdc43ab..000000000 --- a/src/serialization/resources/accounting/types/ItemRequestRequestPurchaseAccount.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Account } from "./Account"; - -export const ItemRequestRequestPurchaseAccount: core.serialization.Schema< - serializers.accounting.ItemRequestRequestPurchaseAccount.Raw, - Merge.accounting.ItemRequestRequestPurchaseAccount -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Account]); - -export declare namespace ItemRequestRequestPurchaseAccount { - export type Raw = string | Account.Raw; -} diff --git a/src/serialization/resources/accounting/types/ItemRequestRequestPurchaseTaxRate.ts b/src/serialization/resources/accounting/types/ItemRequestRequestPurchaseTaxRate.ts deleted file mode 100644 index f534d6464..000000000 --- a/src/serialization/resources/accounting/types/ItemRequestRequestPurchaseTaxRate.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TaxRate } from "./TaxRate"; - -export const ItemRequestRequestPurchaseTaxRate: core.serialization.Schema< - serializers.accounting.ItemRequestRequestPurchaseTaxRate.Raw, - Merge.accounting.ItemRequestRequestPurchaseTaxRate -> = core.serialization.undiscriminatedUnion([core.serialization.string(), TaxRate]); - -export declare namespace ItemRequestRequestPurchaseTaxRate { - export type Raw = string | TaxRate.Raw; -} diff --git a/src/serialization/resources/accounting/types/ItemRequestRequestSalesAccount.ts b/src/serialization/resources/accounting/types/ItemRequestRequestSalesAccount.ts deleted file mode 100644 index b86b32446..000000000 --- a/src/serialization/resources/accounting/types/ItemRequestRequestSalesAccount.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Account } from "./Account"; - -export const ItemRequestRequestSalesAccount: core.serialization.Schema< - serializers.accounting.ItemRequestRequestSalesAccount.Raw, - Merge.accounting.ItemRequestRequestSalesAccount -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Account]); - -export declare namespace ItemRequestRequestSalesAccount { - export type Raw = string | Account.Raw; -} diff --git a/src/serialization/resources/accounting/types/ItemRequestRequestSalesTaxRate.ts b/src/serialization/resources/accounting/types/ItemRequestRequestSalesTaxRate.ts deleted file mode 100644 index 8a30133e1..000000000 --- a/src/serialization/resources/accounting/types/ItemRequestRequestSalesTaxRate.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TaxRate } from "./TaxRate"; - -export const ItemRequestRequestSalesTaxRate: core.serialization.Schema< - serializers.accounting.ItemRequestRequestSalesTaxRate.Raw, - Merge.accounting.ItemRequestRequestSalesTaxRate -> = core.serialization.undiscriminatedUnion([core.serialization.string(), TaxRate]); - -export declare namespace ItemRequestRequestSalesTaxRate { - export type Raw = string | TaxRate.Raw; -} diff --git a/src/serialization/resources/accounting/types/ItemRequestRequestStatus.ts b/src/serialization/resources/accounting/types/ItemRequestRequestStatus.ts deleted file mode 100644 index 865620eb2..000000000 --- a/src/serialization/resources/accounting/types/ItemRequestRequestStatus.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Status7D1Enum } from "./Status7D1Enum"; - -export const ItemRequestRequestStatus: core.serialization.Schema< - serializers.accounting.ItemRequestRequestStatus.Raw, - Merge.accounting.ItemRequestRequestStatus -> = core.serialization.undiscriminatedUnion([Status7D1Enum, core.serialization.string()]); - -export declare namespace ItemRequestRequestStatus { - export type Raw = Status7D1Enum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/ItemRequestRequestType.ts b/src/serialization/resources/accounting/types/ItemRequestRequestType.ts deleted file mode 100644 index adeea465b..000000000 --- a/src/serialization/resources/accounting/types/ItemRequestRequestType.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Type2BbEnum } from "./Type2BbEnum"; - -export const ItemRequestRequestType: core.serialization.Schema< - serializers.accounting.ItemRequestRequestType.Raw, - Merge.accounting.ItemRequestRequestType -> = core.serialization.undiscriminatedUnion([Type2BbEnum, core.serialization.string()]); - -export declare namespace ItemRequestRequestType { - export type Raw = Type2BbEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/ItemResponse.ts b/src/serialization/resources/accounting/types/ItemResponse.ts deleted file mode 100644 index 78f741c6b..000000000 --- a/src/serialization/resources/accounting/types/ItemResponse.ts +++ /dev/null @@ -1,28 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { DebugModeLog } from "./DebugModeLog"; -import { ErrorValidationProblem } from "./ErrorValidationProblem"; -import { Item } from "./Item"; -import { WarningValidationProblem } from "./WarningValidationProblem"; - -export const ItemResponse: core.serialization.ObjectSchema< - serializers.accounting.ItemResponse.Raw, - Merge.accounting.ItemResponse -> = core.serialization.object({ - model: Item, - warnings: core.serialization.list(WarningValidationProblem), - errors: core.serialization.list(ErrorValidationProblem), - logs: core.serialization.list(DebugModeLog).optional(), -}); - -export declare namespace ItemResponse { - export interface Raw { - model: Item.Raw; - warnings: WarningValidationProblem.Raw[]; - errors: ErrorValidationProblem.Raw[]; - logs?: DebugModeLog.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/ItemSalesAccount.ts b/src/serialization/resources/accounting/types/ItemSalesAccount.ts deleted file mode 100644 index 49d8ca050..000000000 --- a/src/serialization/resources/accounting/types/ItemSalesAccount.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Account } from "./Account"; - -export const ItemSalesAccount: core.serialization.Schema< - serializers.accounting.ItemSalesAccount.Raw, - Merge.accounting.ItemSalesAccount -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Account]); - -export declare namespace ItemSalesAccount { - export type Raw = string | Account.Raw; -} diff --git a/src/serialization/resources/accounting/types/ItemSalesTaxRate.ts b/src/serialization/resources/accounting/types/ItemSalesTaxRate.ts deleted file mode 100644 index 7ab07c87b..000000000 --- a/src/serialization/resources/accounting/types/ItemSalesTaxRate.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TaxRate } from "./TaxRate"; - -export const ItemSalesTaxRate: core.serialization.Schema< - serializers.accounting.ItemSalesTaxRate.Raw, - Merge.accounting.ItemSalesTaxRate -> = core.serialization.undiscriminatedUnion([core.serialization.string(), TaxRate]); - -export declare namespace ItemSalesTaxRate { - export type Raw = string | TaxRate.Raw; -} diff --git a/src/serialization/resources/accounting/types/ItemSchema.ts b/src/serialization/resources/accounting/types/ItemSchema.ts deleted file mode 100644 index c86977314..000000000 --- a/src/serialization/resources/accounting/types/ItemSchema.ts +++ /dev/null @@ -1,27 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { ItemFormatEnum } from "./ItemFormatEnum"; -import { ItemTypeEnum } from "./ItemTypeEnum"; - -export const ItemSchema: core.serialization.ObjectSchema< - serializers.accounting.ItemSchema.Raw, - Merge.accounting.ItemSchema -> = core.serialization.object({ - itemType: core.serialization.property("item_type", ItemTypeEnum.optional()), - itemFormat: core.serialization.property("item_format", ItemFormatEnum.optional()), - itemChoices: core.serialization.property( - "item_choices", - core.serialization.list(core.serialization.string()).optional(), - ), -}); - -export declare namespace ItemSchema { - export interface Raw { - item_type?: ItemTypeEnum.Raw | null; - item_format?: ItemFormatEnum.Raw | null; - item_choices?: string[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/ItemStatus.ts b/src/serialization/resources/accounting/types/ItemStatus.ts deleted file mode 100644 index d22664d04..000000000 --- a/src/serialization/resources/accounting/types/ItemStatus.ts +++ /dev/null @@ -1,13 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Status7D1Enum } from "./Status7D1Enum"; - -export const ItemStatus: core.serialization.Schema = - core.serialization.undiscriminatedUnion([Status7D1Enum, core.serialization.string()]); - -export declare namespace ItemStatus { - export type Raw = Status7D1Enum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/ItemType.ts b/src/serialization/resources/accounting/types/ItemType.ts deleted file mode 100644 index 074fbe7bc..000000000 --- a/src/serialization/resources/accounting/types/ItemType.ts +++ /dev/null @@ -1,13 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Type2BbEnum } from "./Type2BbEnum"; - -export const ItemType: core.serialization.Schema = - core.serialization.undiscriminatedUnion([Type2BbEnum, core.serialization.string()]); - -export declare namespace ItemType { - export type Raw = Type2BbEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/ItemTypeEnum.ts b/src/serialization/resources/accounting/types/ItemTypeEnum.ts deleted file mode 100644 index c8c5e5733..000000000 --- a/src/serialization/resources/accounting/types/ItemTypeEnum.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const ItemTypeEnum: core.serialization.Schema< - serializers.accounting.ItemTypeEnum.Raw, - Merge.accounting.ItemTypeEnum -> = core.serialization.enum_(["string", "number", "date", "datetime", "bool", "list"]); - -export declare namespace ItemTypeEnum { - export type Raw = "string" | "number" | "date" | "datetime" | "bool" | "list"; -} diff --git a/src/serialization/resources/accounting/types/JournalEntry.ts b/src/serialization/resources/accounting/types/JournalEntry.ts deleted file mode 100644 index 920ee5893..000000000 --- a/src/serialization/resources/accounting/types/JournalEntry.ts +++ /dev/null @@ -1,81 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { JournalEntryAccountingPeriod } from "./JournalEntryAccountingPeriod"; -import { JournalEntryAppliedPaymentsItem } from "./JournalEntryAppliedPaymentsItem"; -import { JournalEntryCompany } from "./JournalEntryCompany"; -import { JournalEntryCurrency } from "./JournalEntryCurrency"; -import { JournalEntryPaymentsItem } from "./JournalEntryPaymentsItem"; -import { JournalEntryPostingStatus } from "./JournalEntryPostingStatus"; -import { JournalEntryTrackingCategoriesItem } from "./JournalEntryTrackingCategoriesItem"; -import { JournalLine } from "./JournalLine"; -import { RemoteData } from "./RemoteData"; -import { RemoteField } from "./RemoteField"; - -export const JournalEntry: core.serialization.ObjectSchema< - serializers.accounting.JournalEntry.Raw, - Merge.accounting.JournalEntry -> = core.serialization.object({ - id: core.serialization.string().optional(), - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - createdAt: core.serialization.property("created_at", core.serialization.date().optional()), - modifiedAt: core.serialization.property("modified_at", core.serialization.date().optional()), - transactionDate: core.serialization.property("transaction_date", core.serialization.date().optional()), - payments: core.serialization.list(JournalEntryPaymentsItem.optional()).optional(), - appliedPayments: core.serialization.property( - "applied_payments", - core.serialization.list(JournalEntryAppliedPaymentsItem.optional()).optional(), - ), - memo: core.serialization.string().optional(), - currency: JournalEntryCurrency.optional(), - exchangeRate: core.serialization.property("exchange_rate", core.serialization.string().optional()), - company: JournalEntryCompany.optional(), - inclusiveOfTax: core.serialization.property("inclusive_of_tax", core.serialization.boolean().optional()), - lines: core.serialization.list(JournalLine).optional(), - journalNumber: core.serialization.property("journal_number", core.serialization.string().optional()), - trackingCategories: core.serialization.property( - "tracking_categories", - core.serialization.list(JournalEntryTrackingCategoriesItem.optional()).optional(), - ), - remoteWasDeleted: core.serialization.property("remote_was_deleted", core.serialization.boolean().optional()), - postingStatus: core.serialization.property("posting_status", JournalEntryPostingStatus.optional()), - accountingPeriod: core.serialization.property("accounting_period", JournalEntryAccountingPeriod.optional()), - remoteCreatedAt: core.serialization.property("remote_created_at", core.serialization.date().optional()), - remoteUpdatedAt: core.serialization.property("remote_updated_at", core.serialization.date().optional()), - fieldMappings: core.serialization.property( - "field_mappings", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - remoteData: core.serialization.property("remote_data", core.serialization.list(RemoteData).optional()), - remoteFields: core.serialization.property("remote_fields", core.serialization.list(RemoteField).optional()), -}); - -export declare namespace JournalEntry { - export interface Raw { - id?: string | null; - remote_id?: string | null; - created_at?: string | null; - modified_at?: string | null; - transaction_date?: string | null; - payments?: (JournalEntryPaymentsItem.Raw | null | undefined)[] | null; - applied_payments?: (JournalEntryAppliedPaymentsItem.Raw | null | undefined)[] | null; - memo?: string | null; - currency?: JournalEntryCurrency.Raw | null; - exchange_rate?: string | null; - company?: JournalEntryCompany.Raw | null; - inclusive_of_tax?: boolean | null; - lines?: JournalLine.Raw[] | null; - journal_number?: string | null; - tracking_categories?: (JournalEntryTrackingCategoriesItem.Raw | null | undefined)[] | null; - remote_was_deleted?: boolean | null; - posting_status?: JournalEntryPostingStatus.Raw | null; - accounting_period?: JournalEntryAccountingPeriod.Raw | null; - remote_created_at?: string | null; - remote_updated_at?: string | null; - field_mappings?: Record | null; - remote_data?: RemoteData.Raw[] | null; - remote_fields?: RemoteField.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/JournalEntryAccountingPeriod.ts b/src/serialization/resources/accounting/types/JournalEntryAccountingPeriod.ts deleted file mode 100644 index e1d78cc95..000000000 --- a/src/serialization/resources/accounting/types/JournalEntryAccountingPeriod.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { AccountingPeriod } from "./AccountingPeriod"; - -export const JournalEntryAccountingPeriod: core.serialization.Schema< - serializers.accounting.JournalEntryAccountingPeriod.Raw, - Merge.accounting.JournalEntryAccountingPeriod -> = core.serialization.undiscriminatedUnion([core.serialization.string(), AccountingPeriod]); - -export declare namespace JournalEntryAccountingPeriod { - export type Raw = string | AccountingPeriod.Raw; -} diff --git a/src/serialization/resources/accounting/types/JournalEntryAppliedPaymentsItem.ts b/src/serialization/resources/accounting/types/JournalEntryAppliedPaymentsItem.ts deleted file mode 100644 index 240a54866..000000000 --- a/src/serialization/resources/accounting/types/JournalEntryAppliedPaymentsItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { PaymentLineItem } from "./PaymentLineItem"; - -export const JournalEntryAppliedPaymentsItem: core.serialization.Schema< - serializers.accounting.JournalEntryAppliedPaymentsItem.Raw, - Merge.accounting.JournalEntryAppliedPaymentsItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), PaymentLineItem]); - -export declare namespace JournalEntryAppliedPaymentsItem { - export type Raw = string | PaymentLineItem.Raw; -} diff --git a/src/serialization/resources/accounting/types/JournalEntryCompany.ts b/src/serialization/resources/accounting/types/JournalEntryCompany.ts deleted file mode 100644 index d045194f4..000000000 --- a/src/serialization/resources/accounting/types/JournalEntryCompany.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CompanyInfo } from "./CompanyInfo"; - -export const JournalEntryCompany: core.serialization.Schema< - serializers.accounting.JournalEntryCompany.Raw, - Merge.accounting.JournalEntryCompany -> = core.serialization.undiscriminatedUnion([core.serialization.string(), CompanyInfo]); - -export declare namespace JournalEntryCompany { - export type Raw = string | CompanyInfo.Raw; -} diff --git a/src/serialization/resources/accounting/types/JournalEntryCurrency.ts b/src/serialization/resources/accounting/types/JournalEntryCurrency.ts deleted file mode 100644 index 26981c4d6..000000000 --- a/src/serialization/resources/accounting/types/JournalEntryCurrency.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TransactionCurrencyEnum } from "./TransactionCurrencyEnum"; - -export const JournalEntryCurrency: core.serialization.Schema< - serializers.accounting.JournalEntryCurrency.Raw, - Merge.accounting.JournalEntryCurrency -> = core.serialization.undiscriminatedUnion([TransactionCurrencyEnum, core.serialization.string()]); - -export declare namespace JournalEntryCurrency { - export type Raw = TransactionCurrencyEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/JournalEntryPaymentsItem.ts b/src/serialization/resources/accounting/types/JournalEntryPaymentsItem.ts deleted file mode 100644 index 7ee61506a..000000000 --- a/src/serialization/resources/accounting/types/JournalEntryPaymentsItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Payment } from "./Payment"; - -export const JournalEntryPaymentsItem: core.serialization.Schema< - serializers.accounting.JournalEntryPaymentsItem.Raw, - Merge.accounting.JournalEntryPaymentsItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Payment]); - -export declare namespace JournalEntryPaymentsItem { - export type Raw = string | Payment.Raw; -} diff --git a/src/serialization/resources/accounting/types/JournalEntryPostingStatus.ts b/src/serialization/resources/accounting/types/JournalEntryPostingStatus.ts deleted file mode 100644 index 1a3243462..000000000 --- a/src/serialization/resources/accounting/types/JournalEntryPostingStatus.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { PostingStatusEnum } from "./PostingStatusEnum"; - -export const JournalEntryPostingStatus: core.serialization.Schema< - serializers.accounting.JournalEntryPostingStatus.Raw, - Merge.accounting.JournalEntryPostingStatus -> = core.serialization.undiscriminatedUnion([PostingStatusEnum, core.serialization.string()]); - -export declare namespace JournalEntryPostingStatus { - export type Raw = PostingStatusEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/JournalEntryRequest.ts b/src/serialization/resources/accounting/types/JournalEntryRequest.ts deleted file mode 100644 index e2ca2c6a4..000000000 --- a/src/serialization/resources/accounting/types/JournalEntryRequest.ts +++ /dev/null @@ -1,60 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { JournalEntryRequestCompany } from "./JournalEntryRequestCompany"; -import { JournalEntryRequestCurrency } from "./JournalEntryRequestCurrency"; -import { JournalEntryRequestPaymentsItem } from "./JournalEntryRequestPaymentsItem"; -import { JournalEntryRequestPostingStatus } from "./JournalEntryRequestPostingStatus"; -import { JournalEntryRequestTrackingCategoriesItem } from "./JournalEntryRequestTrackingCategoriesItem"; -import { JournalLineRequest } from "./JournalLineRequest"; -import { RemoteFieldRequest } from "./RemoteFieldRequest"; - -export const JournalEntryRequest: core.serialization.ObjectSchema< - serializers.accounting.JournalEntryRequest.Raw, - Merge.accounting.JournalEntryRequest -> = core.serialization.object({ - transactionDate: core.serialization.property("transaction_date", core.serialization.date().optional()), - payments: core.serialization.list(JournalEntryRequestPaymentsItem.optional()).optional(), - memo: core.serialization.string().optional(), - currency: JournalEntryRequestCurrency.optional(), - exchangeRate: core.serialization.property("exchange_rate", core.serialization.string().optional()), - company: JournalEntryRequestCompany.optional(), - trackingCategories: core.serialization.property( - "tracking_categories", - core.serialization.list(JournalEntryRequestTrackingCategoriesItem.optional()).optional(), - ), - inclusiveOfTax: core.serialization.property("inclusive_of_tax", core.serialization.boolean().optional()), - lines: core.serialization.list(JournalLineRequest).optional(), - journalNumber: core.serialization.property("journal_number", core.serialization.string().optional()), - postingStatus: core.serialization.property("posting_status", JournalEntryRequestPostingStatus.optional()), - integrationParams: core.serialization.property( - "integration_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - linkedAccountParams: core.serialization.property( - "linked_account_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - remoteFields: core.serialization.property("remote_fields", core.serialization.list(RemoteFieldRequest).optional()), -}); - -export declare namespace JournalEntryRequest { - export interface Raw { - transaction_date?: string | null; - payments?: (JournalEntryRequestPaymentsItem.Raw | null | undefined)[] | null; - memo?: string | null; - currency?: JournalEntryRequestCurrency.Raw | null; - exchange_rate?: string | null; - company?: JournalEntryRequestCompany.Raw | null; - tracking_categories?: (JournalEntryRequestTrackingCategoriesItem.Raw | null | undefined)[] | null; - inclusive_of_tax?: boolean | null; - lines?: JournalLineRequest.Raw[] | null; - journal_number?: string | null; - posting_status?: JournalEntryRequestPostingStatus.Raw | null; - integration_params?: Record | null; - linked_account_params?: Record | null; - remote_fields?: RemoteFieldRequest.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/JournalEntryRequestCompany.ts b/src/serialization/resources/accounting/types/JournalEntryRequestCompany.ts deleted file mode 100644 index cbc96609a..000000000 --- a/src/serialization/resources/accounting/types/JournalEntryRequestCompany.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CompanyInfo } from "./CompanyInfo"; - -export const JournalEntryRequestCompany: core.serialization.Schema< - serializers.accounting.JournalEntryRequestCompany.Raw, - Merge.accounting.JournalEntryRequestCompany -> = core.serialization.undiscriminatedUnion([core.serialization.string(), CompanyInfo]); - -export declare namespace JournalEntryRequestCompany { - export type Raw = string | CompanyInfo.Raw; -} diff --git a/src/serialization/resources/accounting/types/JournalEntryRequestCurrency.ts b/src/serialization/resources/accounting/types/JournalEntryRequestCurrency.ts deleted file mode 100644 index a89655b50..000000000 --- a/src/serialization/resources/accounting/types/JournalEntryRequestCurrency.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TransactionCurrencyEnum } from "./TransactionCurrencyEnum"; - -export const JournalEntryRequestCurrency: core.serialization.Schema< - serializers.accounting.JournalEntryRequestCurrency.Raw, - Merge.accounting.JournalEntryRequestCurrency -> = core.serialization.undiscriminatedUnion([TransactionCurrencyEnum, core.serialization.string()]); - -export declare namespace JournalEntryRequestCurrency { - export type Raw = TransactionCurrencyEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/JournalEntryRequestPaymentsItem.ts b/src/serialization/resources/accounting/types/JournalEntryRequestPaymentsItem.ts deleted file mode 100644 index fcd672112..000000000 --- a/src/serialization/resources/accounting/types/JournalEntryRequestPaymentsItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Payment } from "./Payment"; - -export const JournalEntryRequestPaymentsItem: core.serialization.Schema< - serializers.accounting.JournalEntryRequestPaymentsItem.Raw, - Merge.accounting.JournalEntryRequestPaymentsItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Payment]); - -export declare namespace JournalEntryRequestPaymentsItem { - export type Raw = string | Payment.Raw; -} diff --git a/src/serialization/resources/accounting/types/JournalEntryRequestPostingStatus.ts b/src/serialization/resources/accounting/types/JournalEntryRequestPostingStatus.ts deleted file mode 100644 index 140aa4b50..000000000 --- a/src/serialization/resources/accounting/types/JournalEntryRequestPostingStatus.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { PostingStatusEnum } from "./PostingStatusEnum"; - -export const JournalEntryRequestPostingStatus: core.serialization.Schema< - serializers.accounting.JournalEntryRequestPostingStatus.Raw, - Merge.accounting.JournalEntryRequestPostingStatus -> = core.serialization.undiscriminatedUnion([PostingStatusEnum, core.serialization.string()]); - -export declare namespace JournalEntryRequestPostingStatus { - export type Raw = PostingStatusEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/JournalEntryRequestTrackingCategoriesItem.ts b/src/serialization/resources/accounting/types/JournalEntryRequestTrackingCategoriesItem.ts deleted file mode 100644 index bc9ca9045..000000000 --- a/src/serialization/resources/accounting/types/JournalEntryRequestTrackingCategoriesItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TrackingCategory } from "./TrackingCategory"; - -export const JournalEntryRequestTrackingCategoriesItem: core.serialization.Schema< - serializers.accounting.JournalEntryRequestTrackingCategoriesItem.Raw, - Merge.accounting.JournalEntryRequestTrackingCategoriesItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), TrackingCategory]); - -export declare namespace JournalEntryRequestTrackingCategoriesItem { - export type Raw = string | TrackingCategory.Raw; -} diff --git a/src/serialization/resources/accounting/types/JournalEntryResponse.ts b/src/serialization/resources/accounting/types/JournalEntryResponse.ts deleted file mode 100644 index 361a63124..000000000 --- a/src/serialization/resources/accounting/types/JournalEntryResponse.ts +++ /dev/null @@ -1,28 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { DebugModeLog } from "./DebugModeLog"; -import { ErrorValidationProblem } from "./ErrorValidationProblem"; -import { JournalEntry } from "./JournalEntry"; -import { WarningValidationProblem } from "./WarningValidationProblem"; - -export const JournalEntryResponse: core.serialization.ObjectSchema< - serializers.accounting.JournalEntryResponse.Raw, - Merge.accounting.JournalEntryResponse -> = core.serialization.object({ - model: JournalEntry, - warnings: core.serialization.list(WarningValidationProblem), - errors: core.serialization.list(ErrorValidationProblem), - logs: core.serialization.list(DebugModeLog).optional(), -}); - -export declare namespace JournalEntryResponse { - export interface Raw { - model: JournalEntry.Raw; - warnings: WarningValidationProblem.Raw[]; - errors: ErrorValidationProblem.Raw[]; - logs?: DebugModeLog.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/JournalEntryTrackingCategoriesItem.ts b/src/serialization/resources/accounting/types/JournalEntryTrackingCategoriesItem.ts deleted file mode 100644 index 2c6aad815..000000000 --- a/src/serialization/resources/accounting/types/JournalEntryTrackingCategoriesItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TrackingCategory } from "./TrackingCategory"; - -export const JournalEntryTrackingCategoriesItem: core.serialization.Schema< - serializers.accounting.JournalEntryTrackingCategoriesItem.Raw, - Merge.accounting.JournalEntryTrackingCategoriesItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), TrackingCategory]); - -export declare namespace JournalEntryTrackingCategoriesItem { - export type Raw = string | TrackingCategory.Raw; -} diff --git a/src/serialization/resources/accounting/types/JournalLine.ts b/src/serialization/resources/accounting/types/JournalLine.ts deleted file mode 100644 index 170c72f1b..000000000 --- a/src/serialization/resources/accounting/types/JournalLine.ts +++ /dev/null @@ -1,61 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { JournalLineAccount } from "./JournalLineAccount"; -import { JournalLineCurrency } from "./JournalLineCurrency"; -import { JournalLineProject } from "./JournalLineProject"; -import { JournalLineTrackingCategoriesItem } from "./JournalLineTrackingCategoriesItem"; -import { JournalLineTrackingCategory } from "./JournalLineTrackingCategory"; -import { RemoteField } from "./RemoteField"; - -export const JournalLine: core.serialization.ObjectSchema< - serializers.accounting.JournalLine.Raw, - Merge.accounting.JournalLine -> = core.serialization.object({ - id: core.serialization.string().optional(), - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - createdAt: core.serialization.property("created_at", core.serialization.date().optional()), - modifiedAt: core.serialization.property("modified_at", core.serialization.date().optional()), - account: JournalLineAccount.optional(), - netAmount: core.serialization.property("net_amount", core.serialization.number().optional()), - trackingCategory: core.serialization.property("tracking_category", JournalLineTrackingCategory.optional()), - trackingCategories: core.serialization.property( - "tracking_categories", - core.serialization.list(JournalLineTrackingCategoriesItem.optional()).optional(), - ), - currency: JournalLineCurrency.optional(), - company: core.serialization.string().optional(), - employee: core.serialization.string().optional(), - project: JournalLineProject.optional(), - contact: core.serialization.string().optional(), - taxRate: core.serialization.property("tax_rate", core.serialization.string().optional()), - description: core.serialization.string().optional(), - exchangeRate: core.serialization.property("exchange_rate", core.serialization.string().optional()), - remoteWasDeleted: core.serialization.property("remote_was_deleted", core.serialization.boolean().optional()), - remoteFields: core.serialization.property("remote_fields", core.serialization.list(RemoteField).optional()), -}); - -export declare namespace JournalLine { - export interface Raw { - id?: string | null; - remote_id?: string | null; - created_at?: string | null; - modified_at?: string | null; - account?: JournalLineAccount.Raw | null; - net_amount?: number | null; - tracking_category?: JournalLineTrackingCategory.Raw | null; - tracking_categories?: (JournalLineTrackingCategoriesItem.Raw | null | undefined)[] | null; - currency?: JournalLineCurrency.Raw | null; - company?: string | null; - employee?: string | null; - project?: JournalLineProject.Raw | null; - contact?: string | null; - tax_rate?: string | null; - description?: string | null; - exchange_rate?: string | null; - remote_was_deleted?: boolean | null; - remote_fields?: RemoteField.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/JournalLineAccount.ts b/src/serialization/resources/accounting/types/JournalLineAccount.ts deleted file mode 100644 index 9c2098d9c..000000000 --- a/src/serialization/resources/accounting/types/JournalLineAccount.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Account } from "./Account"; - -export const JournalLineAccount: core.serialization.Schema< - serializers.accounting.JournalLineAccount.Raw, - Merge.accounting.JournalLineAccount -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Account]); - -export declare namespace JournalLineAccount { - export type Raw = string | Account.Raw; -} diff --git a/src/serialization/resources/accounting/types/JournalLineCurrency.ts b/src/serialization/resources/accounting/types/JournalLineCurrency.ts deleted file mode 100644 index b426b5c36..000000000 --- a/src/serialization/resources/accounting/types/JournalLineCurrency.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TransactionCurrencyEnum } from "./TransactionCurrencyEnum"; - -export const JournalLineCurrency: core.serialization.Schema< - serializers.accounting.JournalLineCurrency.Raw, - Merge.accounting.JournalLineCurrency -> = core.serialization.undiscriminatedUnion([TransactionCurrencyEnum, core.serialization.string()]); - -export declare namespace JournalLineCurrency { - export type Raw = TransactionCurrencyEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/JournalLineProject.ts b/src/serialization/resources/accounting/types/JournalLineProject.ts deleted file mode 100644 index b9f28b3d5..000000000 --- a/src/serialization/resources/accounting/types/JournalLineProject.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Project } from "./Project"; - -export const JournalLineProject: core.serialization.Schema< - serializers.accounting.JournalLineProject.Raw, - Merge.accounting.JournalLineProject -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Project]); - -export declare namespace JournalLineProject { - export type Raw = string | Project.Raw; -} diff --git a/src/serialization/resources/accounting/types/JournalLineRequest.ts b/src/serialization/resources/accounting/types/JournalLineRequest.ts deleted file mode 100644 index b6b656feb..000000000 --- a/src/serialization/resources/accounting/types/JournalLineRequest.ts +++ /dev/null @@ -1,63 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { JournalLineRequestAccount } from "./JournalLineRequestAccount"; -import { JournalLineRequestCurrency } from "./JournalLineRequestCurrency"; -import { JournalLineRequestProject } from "./JournalLineRequestProject"; -import { JournalLineRequestTrackingCategoriesItem } from "./JournalLineRequestTrackingCategoriesItem"; -import { JournalLineRequestTrackingCategory } from "./JournalLineRequestTrackingCategory"; -import { RemoteFieldRequest } from "./RemoteFieldRequest"; - -export const JournalLineRequest: core.serialization.ObjectSchema< - serializers.accounting.JournalLineRequest.Raw, - Merge.accounting.JournalLineRequest -> = core.serialization.object({ - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - account: JournalLineRequestAccount.optional(), - netAmount: core.serialization.property("net_amount", core.serialization.number().optional()), - trackingCategory: core.serialization.property("tracking_category", JournalLineRequestTrackingCategory.optional()), - trackingCategories: core.serialization.property( - "tracking_categories", - core.serialization.list(JournalLineRequestTrackingCategoriesItem.optional()).optional(), - ), - currency: JournalLineRequestCurrency.optional(), - company: core.serialization.string().optional(), - employee: core.serialization.string().optional(), - project: JournalLineRequestProject.optional(), - contact: core.serialization.string().optional(), - taxRate: core.serialization.property("tax_rate", core.serialization.string().optional()), - description: core.serialization.string().optional(), - exchangeRate: core.serialization.property("exchange_rate", core.serialization.string().optional()), - integrationParams: core.serialization.property( - "integration_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - linkedAccountParams: core.serialization.property( - "linked_account_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - remoteFields: core.serialization.property("remote_fields", core.serialization.list(RemoteFieldRequest).optional()), -}); - -export declare namespace JournalLineRequest { - export interface Raw { - remote_id?: string | null; - account?: JournalLineRequestAccount.Raw | null; - net_amount?: number | null; - tracking_category?: JournalLineRequestTrackingCategory.Raw | null; - tracking_categories?: (JournalLineRequestTrackingCategoriesItem.Raw | null | undefined)[] | null; - currency?: JournalLineRequestCurrency.Raw | null; - company?: string | null; - employee?: string | null; - project?: JournalLineRequestProject.Raw | null; - contact?: string | null; - tax_rate?: string | null; - description?: string | null; - exchange_rate?: string | null; - integration_params?: Record | null; - linked_account_params?: Record | null; - remote_fields?: RemoteFieldRequest.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/JournalLineRequestAccount.ts b/src/serialization/resources/accounting/types/JournalLineRequestAccount.ts deleted file mode 100644 index 6dff35c7e..000000000 --- a/src/serialization/resources/accounting/types/JournalLineRequestAccount.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Account } from "./Account"; - -export const JournalLineRequestAccount: core.serialization.Schema< - serializers.accounting.JournalLineRequestAccount.Raw, - Merge.accounting.JournalLineRequestAccount -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Account]); - -export declare namespace JournalLineRequestAccount { - export type Raw = string | Account.Raw; -} diff --git a/src/serialization/resources/accounting/types/JournalLineRequestCurrency.ts b/src/serialization/resources/accounting/types/JournalLineRequestCurrency.ts deleted file mode 100644 index 9454aba1a..000000000 --- a/src/serialization/resources/accounting/types/JournalLineRequestCurrency.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TransactionCurrencyEnum } from "./TransactionCurrencyEnum"; - -export const JournalLineRequestCurrency: core.serialization.Schema< - serializers.accounting.JournalLineRequestCurrency.Raw, - Merge.accounting.JournalLineRequestCurrency -> = core.serialization.undiscriminatedUnion([TransactionCurrencyEnum, core.serialization.string()]); - -export declare namespace JournalLineRequestCurrency { - export type Raw = TransactionCurrencyEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/JournalLineRequestProject.ts b/src/serialization/resources/accounting/types/JournalLineRequestProject.ts deleted file mode 100644 index 7b034c849..000000000 --- a/src/serialization/resources/accounting/types/JournalLineRequestProject.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Project } from "./Project"; - -export const JournalLineRequestProject: core.serialization.Schema< - serializers.accounting.JournalLineRequestProject.Raw, - Merge.accounting.JournalLineRequestProject -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Project]); - -export declare namespace JournalLineRequestProject { - export type Raw = string | Project.Raw; -} diff --git a/src/serialization/resources/accounting/types/JournalLineRequestTrackingCategoriesItem.ts b/src/serialization/resources/accounting/types/JournalLineRequestTrackingCategoriesItem.ts deleted file mode 100644 index c5a504a3c..000000000 --- a/src/serialization/resources/accounting/types/JournalLineRequestTrackingCategoriesItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TrackingCategory } from "./TrackingCategory"; - -export const JournalLineRequestTrackingCategoriesItem: core.serialization.Schema< - serializers.accounting.JournalLineRequestTrackingCategoriesItem.Raw, - Merge.accounting.JournalLineRequestTrackingCategoriesItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), TrackingCategory]); - -export declare namespace JournalLineRequestTrackingCategoriesItem { - export type Raw = string | TrackingCategory.Raw; -} diff --git a/src/serialization/resources/accounting/types/JournalLineRequestTrackingCategory.ts b/src/serialization/resources/accounting/types/JournalLineRequestTrackingCategory.ts deleted file mode 100644 index 1a1622781..000000000 --- a/src/serialization/resources/accounting/types/JournalLineRequestTrackingCategory.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TrackingCategory } from "./TrackingCategory"; - -export const JournalLineRequestTrackingCategory: core.serialization.Schema< - serializers.accounting.JournalLineRequestTrackingCategory.Raw, - Merge.accounting.JournalLineRequestTrackingCategory -> = core.serialization.undiscriminatedUnion([core.serialization.string(), TrackingCategory]); - -export declare namespace JournalLineRequestTrackingCategory { - export type Raw = string | TrackingCategory.Raw; -} diff --git a/src/serialization/resources/accounting/types/JournalLineTrackingCategoriesItem.ts b/src/serialization/resources/accounting/types/JournalLineTrackingCategoriesItem.ts deleted file mode 100644 index 532e81fa7..000000000 --- a/src/serialization/resources/accounting/types/JournalLineTrackingCategoriesItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TrackingCategory } from "./TrackingCategory"; - -export const JournalLineTrackingCategoriesItem: core.serialization.Schema< - serializers.accounting.JournalLineTrackingCategoriesItem.Raw, - Merge.accounting.JournalLineTrackingCategoriesItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), TrackingCategory]); - -export declare namespace JournalLineTrackingCategoriesItem { - export type Raw = string | TrackingCategory.Raw; -} diff --git a/src/serialization/resources/accounting/types/JournalLineTrackingCategory.ts b/src/serialization/resources/accounting/types/JournalLineTrackingCategory.ts deleted file mode 100644 index 13ba6560d..000000000 --- a/src/serialization/resources/accounting/types/JournalLineTrackingCategory.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TrackingCategory } from "./TrackingCategory"; - -export const JournalLineTrackingCategory: core.serialization.Schema< - serializers.accounting.JournalLineTrackingCategory.Raw, - Merge.accounting.JournalLineTrackingCategory -> = core.serialization.undiscriminatedUnion([core.serialization.string(), TrackingCategory]); - -export declare namespace JournalLineTrackingCategory { - export type Raw = string | TrackingCategory.Raw; -} diff --git a/src/serialization/resources/accounting/types/LanguageEnum.ts b/src/serialization/resources/accounting/types/LanguageEnum.ts deleted file mode 100644 index 5b39ae89c..000000000 --- a/src/serialization/resources/accounting/types/LanguageEnum.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const LanguageEnum: core.serialization.Schema< - serializers.accounting.LanguageEnum.Raw, - Merge.accounting.LanguageEnum -> = core.serialization.enum_(["en", "de"]); - -export declare namespace LanguageEnum { - export type Raw = "en" | "de"; -} diff --git a/src/serialization/resources/accounting/types/LastSyncResultEnum.ts b/src/serialization/resources/accounting/types/LastSyncResultEnum.ts deleted file mode 100644 index 59f0ed7d8..000000000 --- a/src/serialization/resources/accounting/types/LastSyncResultEnum.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const LastSyncResultEnum: core.serialization.Schema< - serializers.accounting.LastSyncResultEnum.Raw, - Merge.accounting.LastSyncResultEnum -> = core.serialization.enum_(["SYNCING", "DONE", "FAILED", "DISABLED", "PAUSED", "PARTIALLY_SYNCED"]); - -export declare namespace LastSyncResultEnum { - export type Raw = "SYNCING" | "DONE" | "FAILED" | "DISABLED" | "PAUSED" | "PARTIALLY_SYNCED"; -} diff --git a/src/serialization/resources/accounting/types/LinkToken.ts b/src/serialization/resources/accounting/types/LinkToken.ts deleted file mode 100644 index 5385410e3..000000000 --- a/src/serialization/resources/accounting/types/LinkToken.ts +++ /dev/null @@ -1,22 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const LinkToken: core.serialization.ObjectSchema< - serializers.accounting.LinkToken.Raw, - Merge.accounting.LinkToken -> = core.serialization.object({ - linkToken: core.serialization.property("link_token", core.serialization.string()), - integrationName: core.serialization.property("integration_name", core.serialization.string().optional()), - magicLinkUrl: core.serialization.property("magic_link_url", core.serialization.string().optional()), -}); - -export declare namespace LinkToken { - export interface Raw { - link_token: string; - integration_name?: string | null; - magic_link_url?: string | null; - } -} diff --git a/src/serialization/resources/accounting/types/LinkedAccountStatus.ts b/src/serialization/resources/accounting/types/LinkedAccountStatus.ts deleted file mode 100644 index ad7b30ab2..000000000 --- a/src/serialization/resources/accounting/types/LinkedAccountStatus.ts +++ /dev/null @@ -1,20 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const LinkedAccountStatus: core.serialization.ObjectSchema< - serializers.accounting.LinkedAccountStatus.Raw, - Merge.accounting.LinkedAccountStatus -> = core.serialization.object({ - linkedAccountStatus: core.serialization.property("linked_account_status", core.serialization.string()), - canMakeRequest: core.serialization.property("can_make_request", core.serialization.boolean()), -}); - -export declare namespace LinkedAccountStatus { - export interface Raw { - linked_account_status: string; - can_make_request: boolean; - } -} diff --git a/src/serialization/resources/accounting/types/MetaResponse.ts b/src/serialization/resources/accounting/types/MetaResponse.ts deleted file mode 100644 index 8eff11624..000000000 --- a/src/serialization/resources/accounting/types/MetaResponse.ts +++ /dev/null @@ -1,36 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { LinkedAccountStatus } from "./LinkedAccountStatus"; - -export const MetaResponse: core.serialization.ObjectSchema< - serializers.accounting.MetaResponse.Raw, - Merge.accounting.MetaResponse -> = core.serialization.object({ - requestSchema: core.serialization.property( - "request_schema", - core.serialization.record(core.serialization.string(), core.serialization.unknown()), - ), - remoteFieldClasses: core.serialization.property( - "remote_field_classes", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - status: LinkedAccountStatus.optional(), - hasConditionalParams: core.serialization.property("has_conditional_params", core.serialization.boolean()), - hasRequiredLinkedAccountParams: core.serialization.property( - "has_required_linked_account_params", - core.serialization.boolean(), - ), -}); - -export declare namespace MetaResponse { - export interface Raw { - request_schema: Record; - remote_field_classes?: Record | null; - status?: LinkedAccountStatus.Raw | null; - has_conditional_params: boolean; - has_required_linked_account_params: boolean; - } -} diff --git a/src/serialization/resources/accounting/types/MethodEnum.ts b/src/serialization/resources/accounting/types/MethodEnum.ts deleted file mode 100644 index 59b092e9a..000000000 --- a/src/serialization/resources/accounting/types/MethodEnum.ts +++ /dev/null @@ -1,12 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const MethodEnum: core.serialization.Schema = - core.serialization.enum_(["GET", "OPTIONS", "HEAD", "POST", "PUT", "PATCH", "DELETE"]); - -export declare namespace MethodEnum { - export type Raw = "GET" | "OPTIONS" | "HEAD" | "POST" | "PUT" | "PATCH" | "DELETE"; -} diff --git a/src/serialization/resources/accounting/types/MethodTypeEnum.ts b/src/serialization/resources/accounting/types/MethodTypeEnum.ts deleted file mode 100644 index 87a381019..000000000 --- a/src/serialization/resources/accounting/types/MethodTypeEnum.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const MethodTypeEnum: core.serialization.Schema< - serializers.accounting.MethodTypeEnum.Raw, - Merge.accounting.MethodTypeEnum -> = core.serialization.enum_(["CREDIT_CARD", "DEBIT_CARD", "ACH", "CASH", "CHECK"]); - -export declare namespace MethodTypeEnum { - export type Raw = "CREDIT_CARD" | "DEBIT_CARD" | "ACH" | "CASH" | "CHECK"; -} diff --git a/src/serialization/resources/accounting/types/ModelOperation.ts b/src/serialization/resources/accounting/types/ModelOperation.ts deleted file mode 100644 index 655531571..000000000 --- a/src/serialization/resources/accounting/types/ModelOperation.ts +++ /dev/null @@ -1,33 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const ModelOperation: core.serialization.ObjectSchema< - serializers.accounting.ModelOperation.Raw, - Merge.accounting.ModelOperation -> = core.serialization.object({ - modelName: core.serialization.property("model_name", core.serialization.string()), - availableOperations: core.serialization.property( - "available_operations", - core.serialization.list(core.serialization.string()), - ), - requiredPostParameters: core.serialization.property( - "required_post_parameters", - core.serialization.list(core.serialization.string()), - ), - supportedFields: core.serialization.property( - "supported_fields", - core.serialization.list(core.serialization.string()), - ), -}); - -export declare namespace ModelOperation { - export interface Raw { - model_name: string; - available_operations: string[]; - required_post_parameters: string[]; - supported_fields: string[]; - } -} diff --git a/src/serialization/resources/accounting/types/ModelPermissionDeserializer.ts b/src/serialization/resources/accounting/types/ModelPermissionDeserializer.ts deleted file mode 100644 index a359969a9..000000000 --- a/src/serialization/resources/accounting/types/ModelPermissionDeserializer.ts +++ /dev/null @@ -1,18 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const ModelPermissionDeserializer: core.serialization.ObjectSchema< - serializers.accounting.ModelPermissionDeserializer.Raw, - Merge.accounting.ModelPermissionDeserializer -> = core.serialization.object({ - isEnabled: core.serialization.property("is_enabled", core.serialization.boolean().optional()), -}); - -export declare namespace ModelPermissionDeserializer { - export interface Raw { - is_enabled?: boolean | null; - } -} diff --git a/src/serialization/resources/accounting/types/ModelPermissionDeserializerRequest.ts b/src/serialization/resources/accounting/types/ModelPermissionDeserializerRequest.ts deleted file mode 100644 index fee62b039..000000000 --- a/src/serialization/resources/accounting/types/ModelPermissionDeserializerRequest.ts +++ /dev/null @@ -1,18 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const ModelPermissionDeserializerRequest: core.serialization.ObjectSchema< - serializers.accounting.ModelPermissionDeserializerRequest.Raw, - Merge.accounting.ModelPermissionDeserializerRequest -> = core.serialization.object({ - isEnabled: core.serialization.property("is_enabled", core.serialization.boolean().optional()), -}); - -export declare namespace ModelPermissionDeserializerRequest { - export interface Raw { - is_enabled?: boolean | null; - } -} diff --git a/src/serialization/resources/accounting/types/MultipartFormFieldRequest.ts b/src/serialization/resources/accounting/types/MultipartFormFieldRequest.ts deleted file mode 100644 index 37876dd92..000000000 --- a/src/serialization/resources/accounting/types/MultipartFormFieldRequest.ts +++ /dev/null @@ -1,27 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { MultipartFormFieldRequestEncoding } from "./MultipartFormFieldRequestEncoding"; - -export const MultipartFormFieldRequest: core.serialization.ObjectSchema< - serializers.accounting.MultipartFormFieldRequest.Raw, - Merge.accounting.MultipartFormFieldRequest -> = core.serialization.object({ - name: core.serialization.string(), - data: core.serialization.string(), - encoding: MultipartFormFieldRequestEncoding.optional(), - fileName: core.serialization.property("file_name", core.serialization.string().optional()), - contentType: core.serialization.property("content_type", core.serialization.string().optional()), -}); - -export declare namespace MultipartFormFieldRequest { - export interface Raw { - name: string; - data: string; - encoding?: MultipartFormFieldRequestEncoding.Raw | null; - file_name?: string | null; - content_type?: string | null; - } -} diff --git a/src/serialization/resources/accounting/types/MultipartFormFieldRequestEncoding.ts b/src/serialization/resources/accounting/types/MultipartFormFieldRequestEncoding.ts deleted file mode 100644 index a1b2d3db6..000000000 --- a/src/serialization/resources/accounting/types/MultipartFormFieldRequestEncoding.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { EncodingEnum } from "./EncodingEnum"; - -export const MultipartFormFieldRequestEncoding: core.serialization.Schema< - serializers.accounting.MultipartFormFieldRequestEncoding.Raw, - Merge.accounting.MultipartFormFieldRequestEncoding -> = core.serialization.undiscriminatedUnion([EncodingEnum, core.serialization.string()]); - -export declare namespace MultipartFormFieldRequestEncoding { - export type Raw = EncodingEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/PaginatedAccountDetailsAndActionsList.ts b/src/serialization/resources/accounting/types/PaginatedAccountDetailsAndActionsList.ts deleted file mode 100644 index 6c472531a..000000000 --- a/src/serialization/resources/accounting/types/PaginatedAccountDetailsAndActionsList.ts +++ /dev/null @@ -1,23 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { AccountDetailsAndActions } from "./AccountDetailsAndActions"; - -export const PaginatedAccountDetailsAndActionsList: core.serialization.ObjectSchema< - serializers.accounting.PaginatedAccountDetailsAndActionsList.Raw, - Merge.accounting.PaginatedAccountDetailsAndActionsList -> = core.serialization.object({ - next: core.serialization.string().optional(), - previous: core.serialization.string().optional(), - results: core.serialization.list(AccountDetailsAndActions).optional(), -}); - -export declare namespace PaginatedAccountDetailsAndActionsList { - export interface Raw { - next?: string | null; - previous?: string | null; - results?: AccountDetailsAndActions.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/PaginatedAccountList.ts b/src/serialization/resources/accounting/types/PaginatedAccountList.ts deleted file mode 100644 index 1ea48a9db..000000000 --- a/src/serialization/resources/accounting/types/PaginatedAccountList.ts +++ /dev/null @@ -1,23 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Account } from "./Account"; - -export const PaginatedAccountList: core.serialization.ObjectSchema< - serializers.accounting.PaginatedAccountList.Raw, - Merge.accounting.PaginatedAccountList -> = core.serialization.object({ - next: core.serialization.string().optional(), - previous: core.serialization.string().optional(), - results: core.serialization.list(Account).optional(), -}); - -export declare namespace PaginatedAccountList { - export interface Raw { - next?: string | null; - previous?: string | null; - results?: Account.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/PaginatedAccountingAttachmentList.ts b/src/serialization/resources/accounting/types/PaginatedAccountingAttachmentList.ts deleted file mode 100644 index dfb5adae6..000000000 --- a/src/serialization/resources/accounting/types/PaginatedAccountingAttachmentList.ts +++ /dev/null @@ -1,23 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { AccountingAttachment } from "./AccountingAttachment"; - -export const PaginatedAccountingAttachmentList: core.serialization.ObjectSchema< - serializers.accounting.PaginatedAccountingAttachmentList.Raw, - Merge.accounting.PaginatedAccountingAttachmentList -> = core.serialization.object({ - next: core.serialization.string().optional(), - previous: core.serialization.string().optional(), - results: core.serialization.list(AccountingAttachment).optional(), -}); - -export declare namespace PaginatedAccountingAttachmentList { - export interface Raw { - next?: string | null; - previous?: string | null; - results?: AccountingAttachment.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/PaginatedAccountingPeriodList.ts b/src/serialization/resources/accounting/types/PaginatedAccountingPeriodList.ts deleted file mode 100644 index e9e10ec13..000000000 --- a/src/serialization/resources/accounting/types/PaginatedAccountingPeriodList.ts +++ /dev/null @@ -1,23 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { AccountingPeriod } from "./AccountingPeriod"; - -export const PaginatedAccountingPeriodList: core.serialization.ObjectSchema< - serializers.accounting.PaginatedAccountingPeriodList.Raw, - Merge.accounting.PaginatedAccountingPeriodList -> = core.serialization.object({ - next: core.serialization.string().optional(), - previous: core.serialization.string().optional(), - results: core.serialization.list(AccountingPeriod).optional(), -}); - -export declare namespace PaginatedAccountingPeriodList { - export interface Raw { - next?: string | null; - previous?: string | null; - results?: AccountingPeriod.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/PaginatedAuditLogEventList.ts b/src/serialization/resources/accounting/types/PaginatedAuditLogEventList.ts deleted file mode 100644 index 5d04c707d..000000000 --- a/src/serialization/resources/accounting/types/PaginatedAuditLogEventList.ts +++ /dev/null @@ -1,23 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { AuditLogEvent } from "./AuditLogEvent"; - -export const PaginatedAuditLogEventList: core.serialization.ObjectSchema< - serializers.accounting.PaginatedAuditLogEventList.Raw, - Merge.accounting.PaginatedAuditLogEventList -> = core.serialization.object({ - next: core.serialization.string().optional(), - previous: core.serialization.string().optional(), - results: core.serialization.list(AuditLogEvent).optional(), -}); - -export declare namespace PaginatedAuditLogEventList { - export interface Raw { - next?: string | null; - previous?: string | null; - results?: AuditLogEvent.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/PaginatedBalanceSheetList.ts b/src/serialization/resources/accounting/types/PaginatedBalanceSheetList.ts deleted file mode 100644 index dc5e9c068..000000000 --- a/src/serialization/resources/accounting/types/PaginatedBalanceSheetList.ts +++ /dev/null @@ -1,23 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { BalanceSheet } from "./BalanceSheet"; - -export const PaginatedBalanceSheetList: core.serialization.ObjectSchema< - serializers.accounting.PaginatedBalanceSheetList.Raw, - Merge.accounting.PaginatedBalanceSheetList -> = core.serialization.object({ - next: core.serialization.string().optional(), - previous: core.serialization.string().optional(), - results: core.serialization.list(BalanceSheet).optional(), -}); - -export declare namespace PaginatedBalanceSheetList { - export interface Raw { - next?: string | null; - previous?: string | null; - results?: BalanceSheet.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/PaginatedBankFeedAccountList.ts b/src/serialization/resources/accounting/types/PaginatedBankFeedAccountList.ts deleted file mode 100644 index 0e817c383..000000000 --- a/src/serialization/resources/accounting/types/PaginatedBankFeedAccountList.ts +++ /dev/null @@ -1,23 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { BankFeedAccount } from "./BankFeedAccount"; - -export const PaginatedBankFeedAccountList: core.serialization.ObjectSchema< - serializers.accounting.PaginatedBankFeedAccountList.Raw, - Merge.accounting.PaginatedBankFeedAccountList -> = core.serialization.object({ - next: core.serialization.string().optional(), - previous: core.serialization.string().optional(), - results: core.serialization.list(BankFeedAccount).optional(), -}); - -export declare namespace PaginatedBankFeedAccountList { - export interface Raw { - next?: string | null; - previous?: string | null; - results?: BankFeedAccount.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/PaginatedBankFeedTransactionList.ts b/src/serialization/resources/accounting/types/PaginatedBankFeedTransactionList.ts deleted file mode 100644 index 945aae30b..000000000 --- a/src/serialization/resources/accounting/types/PaginatedBankFeedTransactionList.ts +++ /dev/null @@ -1,23 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { BankFeedTransaction } from "./BankFeedTransaction"; - -export const PaginatedBankFeedTransactionList: core.serialization.ObjectSchema< - serializers.accounting.PaginatedBankFeedTransactionList.Raw, - Merge.accounting.PaginatedBankFeedTransactionList -> = core.serialization.object({ - next: core.serialization.string().optional(), - previous: core.serialization.string().optional(), - results: core.serialization.list(BankFeedTransaction).optional(), -}); - -export declare namespace PaginatedBankFeedTransactionList { - export interface Raw { - next?: string | null; - previous?: string | null; - results?: BankFeedTransaction.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/PaginatedCashFlowStatementList.ts b/src/serialization/resources/accounting/types/PaginatedCashFlowStatementList.ts deleted file mode 100644 index a5f17fbe6..000000000 --- a/src/serialization/resources/accounting/types/PaginatedCashFlowStatementList.ts +++ /dev/null @@ -1,23 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CashFlowStatement } from "./CashFlowStatement"; - -export const PaginatedCashFlowStatementList: core.serialization.ObjectSchema< - serializers.accounting.PaginatedCashFlowStatementList.Raw, - Merge.accounting.PaginatedCashFlowStatementList -> = core.serialization.object({ - next: core.serialization.string().optional(), - previous: core.serialization.string().optional(), - results: core.serialization.list(CashFlowStatement).optional(), -}); - -export declare namespace PaginatedCashFlowStatementList { - export interface Raw { - next?: string | null; - previous?: string | null; - results?: CashFlowStatement.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/PaginatedCompanyInfoList.ts b/src/serialization/resources/accounting/types/PaginatedCompanyInfoList.ts deleted file mode 100644 index fcd568159..000000000 --- a/src/serialization/resources/accounting/types/PaginatedCompanyInfoList.ts +++ /dev/null @@ -1,23 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CompanyInfo } from "./CompanyInfo"; - -export const PaginatedCompanyInfoList: core.serialization.ObjectSchema< - serializers.accounting.PaginatedCompanyInfoList.Raw, - Merge.accounting.PaginatedCompanyInfoList -> = core.serialization.object({ - next: core.serialization.string().optional(), - previous: core.serialization.string().optional(), - results: core.serialization.list(CompanyInfo).optional(), -}); - -export declare namespace PaginatedCompanyInfoList { - export interface Raw { - next?: string | null; - previous?: string | null; - results?: CompanyInfo.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/PaginatedContactList.ts b/src/serialization/resources/accounting/types/PaginatedContactList.ts deleted file mode 100644 index 2d29c9816..000000000 --- a/src/serialization/resources/accounting/types/PaginatedContactList.ts +++ /dev/null @@ -1,23 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Contact } from "./Contact"; - -export const PaginatedContactList: core.serialization.ObjectSchema< - serializers.accounting.PaginatedContactList.Raw, - Merge.accounting.PaginatedContactList -> = core.serialization.object({ - next: core.serialization.string().optional(), - previous: core.serialization.string().optional(), - results: core.serialization.list(Contact).optional(), -}); - -export declare namespace PaginatedContactList { - export interface Raw { - next?: string | null; - previous?: string | null; - results?: Contact.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/PaginatedCreditNoteList.ts b/src/serialization/resources/accounting/types/PaginatedCreditNoteList.ts deleted file mode 100644 index 2a1b8a903..000000000 --- a/src/serialization/resources/accounting/types/PaginatedCreditNoteList.ts +++ /dev/null @@ -1,22 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import * as serializers from "../../../index"; - -export const PaginatedCreditNoteList: core.serialization.ObjectSchema< - serializers.accounting.PaginatedCreditNoteList.Raw, - Merge.accounting.PaginatedCreditNoteList -> = core.serialization.object({ - next: core.serialization.string().optional(), - previous: core.serialization.string().optional(), - results: core.serialization.list(core.serialization.lazyObject(() => serializers.accounting.CreditNote)).optional(), -}); - -export declare namespace PaginatedCreditNoteList { - export interface Raw { - next?: string | null; - previous?: string | null; - results?: serializers.accounting.CreditNote.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/PaginatedEmployeeList.ts b/src/serialization/resources/accounting/types/PaginatedEmployeeList.ts deleted file mode 100644 index e9a21f2d5..000000000 --- a/src/serialization/resources/accounting/types/PaginatedEmployeeList.ts +++ /dev/null @@ -1,23 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Employee } from "./Employee"; - -export const PaginatedEmployeeList: core.serialization.ObjectSchema< - serializers.accounting.PaginatedEmployeeList.Raw, - Merge.accounting.PaginatedEmployeeList -> = core.serialization.object({ - next: core.serialization.string().optional(), - previous: core.serialization.string().optional(), - results: core.serialization.list(Employee).optional(), -}); - -export declare namespace PaginatedEmployeeList { - export interface Raw { - next?: string | null; - previous?: string | null; - results?: Employee.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/PaginatedExpenseList.ts b/src/serialization/resources/accounting/types/PaginatedExpenseList.ts deleted file mode 100644 index df020446f..000000000 --- a/src/serialization/resources/accounting/types/PaginatedExpenseList.ts +++ /dev/null @@ -1,23 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Expense } from "./Expense"; - -export const PaginatedExpenseList: core.serialization.ObjectSchema< - serializers.accounting.PaginatedExpenseList.Raw, - Merge.accounting.PaginatedExpenseList -> = core.serialization.object({ - next: core.serialization.string().optional(), - previous: core.serialization.string().optional(), - results: core.serialization.list(Expense).optional(), -}); - -export declare namespace PaginatedExpenseList { - export interface Raw { - next?: string | null; - previous?: string | null; - results?: Expense.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/PaginatedExpenseReportLineList.ts b/src/serialization/resources/accounting/types/PaginatedExpenseReportLineList.ts deleted file mode 100644 index 9aba8ccef..000000000 --- a/src/serialization/resources/accounting/types/PaginatedExpenseReportLineList.ts +++ /dev/null @@ -1,23 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { ExpenseReportLine } from "./ExpenseReportLine"; - -export const PaginatedExpenseReportLineList: core.serialization.ObjectSchema< - serializers.accounting.PaginatedExpenseReportLineList.Raw, - Merge.accounting.PaginatedExpenseReportLineList -> = core.serialization.object({ - next: core.serialization.string().optional(), - previous: core.serialization.string().optional(), - results: core.serialization.list(ExpenseReportLine).optional(), -}); - -export declare namespace PaginatedExpenseReportLineList { - export interface Raw { - next?: string | null; - previous?: string | null; - results?: ExpenseReportLine.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/PaginatedExpenseReportList.ts b/src/serialization/resources/accounting/types/PaginatedExpenseReportList.ts deleted file mode 100644 index a83485e9a..000000000 --- a/src/serialization/resources/accounting/types/PaginatedExpenseReportList.ts +++ /dev/null @@ -1,23 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { ExpenseReport } from "./ExpenseReport"; - -export const PaginatedExpenseReportList: core.serialization.ObjectSchema< - serializers.accounting.PaginatedExpenseReportList.Raw, - Merge.accounting.PaginatedExpenseReportList -> = core.serialization.object({ - next: core.serialization.string().optional(), - previous: core.serialization.string().optional(), - results: core.serialization.list(ExpenseReport).optional(), -}); - -export declare namespace PaginatedExpenseReportList { - export interface Raw { - next?: string | null; - previous?: string | null; - results?: ExpenseReport.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/PaginatedGeneralLedgerTransactionList.ts b/src/serialization/resources/accounting/types/PaginatedGeneralLedgerTransactionList.ts deleted file mode 100644 index bfc35eb21..000000000 --- a/src/serialization/resources/accounting/types/PaginatedGeneralLedgerTransactionList.ts +++ /dev/null @@ -1,23 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { GeneralLedgerTransaction } from "./GeneralLedgerTransaction"; - -export const PaginatedGeneralLedgerTransactionList: core.serialization.ObjectSchema< - serializers.accounting.PaginatedGeneralLedgerTransactionList.Raw, - Merge.accounting.PaginatedGeneralLedgerTransactionList -> = core.serialization.object({ - next: core.serialization.string().optional(), - previous: core.serialization.string().optional(), - results: core.serialization.list(GeneralLedgerTransaction).optional(), -}); - -export declare namespace PaginatedGeneralLedgerTransactionList { - export interface Raw { - next?: string | null; - previous?: string | null; - results?: GeneralLedgerTransaction.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/PaginatedIncomeStatementList.ts b/src/serialization/resources/accounting/types/PaginatedIncomeStatementList.ts deleted file mode 100644 index af90a0851..000000000 --- a/src/serialization/resources/accounting/types/PaginatedIncomeStatementList.ts +++ /dev/null @@ -1,23 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { IncomeStatement } from "./IncomeStatement"; - -export const PaginatedIncomeStatementList: core.serialization.ObjectSchema< - serializers.accounting.PaginatedIncomeStatementList.Raw, - Merge.accounting.PaginatedIncomeStatementList -> = core.serialization.object({ - next: core.serialization.string().optional(), - previous: core.serialization.string().optional(), - results: core.serialization.list(IncomeStatement).optional(), -}); - -export declare namespace PaginatedIncomeStatementList { - export interface Raw { - next?: string | null; - previous?: string | null; - results?: IncomeStatement.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/PaginatedInvoiceList.ts b/src/serialization/resources/accounting/types/PaginatedInvoiceList.ts deleted file mode 100644 index 85f232da0..000000000 --- a/src/serialization/resources/accounting/types/PaginatedInvoiceList.ts +++ /dev/null @@ -1,22 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import * as serializers from "../../../index"; - -export const PaginatedInvoiceList: core.serialization.ObjectSchema< - serializers.accounting.PaginatedInvoiceList.Raw, - Merge.accounting.PaginatedInvoiceList -> = core.serialization.object({ - next: core.serialization.string().optional(), - previous: core.serialization.string().optional(), - results: core.serialization.list(core.serialization.lazyObject(() => serializers.accounting.Invoice)).optional(), -}); - -export declare namespace PaginatedInvoiceList { - export interface Raw { - next?: string | null; - previous?: string | null; - results?: serializers.accounting.Invoice.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/PaginatedIssueList.ts b/src/serialization/resources/accounting/types/PaginatedIssueList.ts deleted file mode 100644 index aadac5805..000000000 --- a/src/serialization/resources/accounting/types/PaginatedIssueList.ts +++ /dev/null @@ -1,23 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Issue } from "./Issue"; - -export const PaginatedIssueList: core.serialization.ObjectSchema< - serializers.accounting.PaginatedIssueList.Raw, - Merge.accounting.PaginatedIssueList -> = core.serialization.object({ - next: core.serialization.string().optional(), - previous: core.serialization.string().optional(), - results: core.serialization.list(Issue).optional(), -}); - -export declare namespace PaginatedIssueList { - export interface Raw { - next?: string | null; - previous?: string | null; - results?: Issue.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/PaginatedItemList.ts b/src/serialization/resources/accounting/types/PaginatedItemList.ts deleted file mode 100644 index 77ff1b53f..000000000 --- a/src/serialization/resources/accounting/types/PaginatedItemList.ts +++ /dev/null @@ -1,23 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Item } from "./Item"; - -export const PaginatedItemList: core.serialization.ObjectSchema< - serializers.accounting.PaginatedItemList.Raw, - Merge.accounting.PaginatedItemList -> = core.serialization.object({ - next: core.serialization.string().optional(), - previous: core.serialization.string().optional(), - results: core.serialization.list(Item).optional(), -}); - -export declare namespace PaginatedItemList { - export interface Raw { - next?: string | null; - previous?: string | null; - results?: Item.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/PaginatedJournalEntryList.ts b/src/serialization/resources/accounting/types/PaginatedJournalEntryList.ts deleted file mode 100644 index 2cb9d1671..000000000 --- a/src/serialization/resources/accounting/types/PaginatedJournalEntryList.ts +++ /dev/null @@ -1,23 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { JournalEntry } from "./JournalEntry"; - -export const PaginatedJournalEntryList: core.serialization.ObjectSchema< - serializers.accounting.PaginatedJournalEntryList.Raw, - Merge.accounting.PaginatedJournalEntryList -> = core.serialization.object({ - next: core.serialization.string().optional(), - previous: core.serialization.string().optional(), - results: core.serialization.list(JournalEntry).optional(), -}); - -export declare namespace PaginatedJournalEntryList { - export interface Raw { - next?: string | null; - previous?: string | null; - results?: JournalEntry.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/PaginatedPaymentList.ts b/src/serialization/resources/accounting/types/PaginatedPaymentList.ts deleted file mode 100644 index a48e55c73..000000000 --- a/src/serialization/resources/accounting/types/PaginatedPaymentList.ts +++ /dev/null @@ -1,23 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Payment } from "./Payment"; - -export const PaginatedPaymentList: core.serialization.ObjectSchema< - serializers.accounting.PaginatedPaymentList.Raw, - Merge.accounting.PaginatedPaymentList -> = core.serialization.object({ - next: core.serialization.string().optional(), - previous: core.serialization.string().optional(), - results: core.serialization.list(Payment).optional(), -}); - -export declare namespace PaginatedPaymentList { - export interface Raw { - next?: string | null; - previous?: string | null; - results?: Payment.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/PaginatedPaymentMethodList.ts b/src/serialization/resources/accounting/types/PaginatedPaymentMethodList.ts deleted file mode 100644 index 99be07c59..000000000 --- a/src/serialization/resources/accounting/types/PaginatedPaymentMethodList.ts +++ /dev/null @@ -1,23 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { PaymentMethod } from "./PaymentMethod"; - -export const PaginatedPaymentMethodList: core.serialization.ObjectSchema< - serializers.accounting.PaginatedPaymentMethodList.Raw, - Merge.accounting.PaginatedPaymentMethodList -> = core.serialization.object({ - next: core.serialization.string().optional(), - previous: core.serialization.string().optional(), - results: core.serialization.list(PaymentMethod).optional(), -}); - -export declare namespace PaginatedPaymentMethodList { - export interface Raw { - next?: string | null; - previous?: string | null; - results?: PaymentMethod.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/PaginatedPaymentTermList.ts b/src/serialization/resources/accounting/types/PaginatedPaymentTermList.ts deleted file mode 100644 index 549c7b9d1..000000000 --- a/src/serialization/resources/accounting/types/PaginatedPaymentTermList.ts +++ /dev/null @@ -1,23 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { PaymentTerm } from "./PaymentTerm"; - -export const PaginatedPaymentTermList: core.serialization.ObjectSchema< - serializers.accounting.PaginatedPaymentTermList.Raw, - Merge.accounting.PaginatedPaymentTermList -> = core.serialization.object({ - next: core.serialization.string().optional(), - previous: core.serialization.string().optional(), - results: core.serialization.list(PaymentTerm).optional(), -}); - -export declare namespace PaginatedPaymentTermList { - export interface Raw { - next?: string | null; - previous?: string | null; - results?: PaymentTerm.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/PaginatedProjectList.ts b/src/serialization/resources/accounting/types/PaginatedProjectList.ts deleted file mode 100644 index 9a92118a5..000000000 --- a/src/serialization/resources/accounting/types/PaginatedProjectList.ts +++ /dev/null @@ -1,23 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Project } from "./Project"; - -export const PaginatedProjectList: core.serialization.ObjectSchema< - serializers.accounting.PaginatedProjectList.Raw, - Merge.accounting.PaginatedProjectList -> = core.serialization.object({ - next: core.serialization.string().optional(), - previous: core.serialization.string().optional(), - results: core.serialization.list(Project).optional(), -}); - -export declare namespace PaginatedProjectList { - export interface Raw { - next?: string | null; - previous?: string | null; - results?: Project.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/PaginatedPurchaseOrderList.ts b/src/serialization/resources/accounting/types/PaginatedPurchaseOrderList.ts deleted file mode 100644 index 722b27e17..000000000 --- a/src/serialization/resources/accounting/types/PaginatedPurchaseOrderList.ts +++ /dev/null @@ -1,23 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { PurchaseOrder } from "./PurchaseOrder"; - -export const PaginatedPurchaseOrderList: core.serialization.ObjectSchema< - serializers.accounting.PaginatedPurchaseOrderList.Raw, - Merge.accounting.PaginatedPurchaseOrderList -> = core.serialization.object({ - next: core.serialization.string().optional(), - previous: core.serialization.string().optional(), - results: core.serialization.list(PurchaseOrder).optional(), -}); - -export declare namespace PaginatedPurchaseOrderList { - export interface Raw { - next?: string | null; - previous?: string | null; - results?: PurchaseOrder.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/PaginatedRemoteFieldClassList.ts b/src/serialization/resources/accounting/types/PaginatedRemoteFieldClassList.ts deleted file mode 100644 index 8f1047409..000000000 --- a/src/serialization/resources/accounting/types/PaginatedRemoteFieldClassList.ts +++ /dev/null @@ -1,23 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { RemoteFieldClass } from "./RemoteFieldClass"; - -export const PaginatedRemoteFieldClassList: core.serialization.ObjectSchema< - serializers.accounting.PaginatedRemoteFieldClassList.Raw, - Merge.accounting.PaginatedRemoteFieldClassList -> = core.serialization.object({ - next: core.serialization.string().optional(), - previous: core.serialization.string().optional(), - results: core.serialization.list(RemoteFieldClass).optional(), -}); - -export declare namespace PaginatedRemoteFieldClassList { - export interface Raw { - next?: string | null; - previous?: string | null; - results?: RemoteFieldClass.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/PaginatedSyncStatusList.ts b/src/serialization/resources/accounting/types/PaginatedSyncStatusList.ts deleted file mode 100644 index 3aeb4fcd3..000000000 --- a/src/serialization/resources/accounting/types/PaginatedSyncStatusList.ts +++ /dev/null @@ -1,23 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { SyncStatus } from "./SyncStatus"; - -export const PaginatedSyncStatusList: core.serialization.ObjectSchema< - serializers.accounting.PaginatedSyncStatusList.Raw, - Merge.accounting.PaginatedSyncStatusList -> = core.serialization.object({ - next: core.serialization.string().optional(), - previous: core.serialization.string().optional(), - results: core.serialization.list(SyncStatus).optional(), -}); - -export declare namespace PaginatedSyncStatusList { - export interface Raw { - next?: string | null; - previous?: string | null; - results?: SyncStatus.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/PaginatedTaxRateList.ts b/src/serialization/resources/accounting/types/PaginatedTaxRateList.ts deleted file mode 100644 index a9623ed75..000000000 --- a/src/serialization/resources/accounting/types/PaginatedTaxRateList.ts +++ /dev/null @@ -1,23 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TaxRate } from "./TaxRate"; - -export const PaginatedTaxRateList: core.serialization.ObjectSchema< - serializers.accounting.PaginatedTaxRateList.Raw, - Merge.accounting.PaginatedTaxRateList -> = core.serialization.object({ - next: core.serialization.string().optional(), - previous: core.serialization.string().optional(), - results: core.serialization.list(TaxRate).optional(), -}); - -export declare namespace PaginatedTaxRateList { - export interface Raw { - next?: string | null; - previous?: string | null; - results?: TaxRate.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/PaginatedTrackingCategoryList.ts b/src/serialization/resources/accounting/types/PaginatedTrackingCategoryList.ts deleted file mode 100644 index 7613b30d5..000000000 --- a/src/serialization/resources/accounting/types/PaginatedTrackingCategoryList.ts +++ /dev/null @@ -1,23 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TrackingCategory } from "./TrackingCategory"; - -export const PaginatedTrackingCategoryList: core.serialization.ObjectSchema< - serializers.accounting.PaginatedTrackingCategoryList.Raw, - Merge.accounting.PaginatedTrackingCategoryList -> = core.serialization.object({ - next: core.serialization.string().optional(), - previous: core.serialization.string().optional(), - results: core.serialization.list(TrackingCategory).optional(), -}); - -export declare namespace PaginatedTrackingCategoryList { - export interface Raw { - next?: string | null; - previous?: string | null; - results?: TrackingCategory.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/PaginatedTransactionList.ts b/src/serialization/resources/accounting/types/PaginatedTransactionList.ts deleted file mode 100644 index a207aa088..000000000 --- a/src/serialization/resources/accounting/types/PaginatedTransactionList.ts +++ /dev/null @@ -1,23 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Transaction } from "./Transaction"; - -export const PaginatedTransactionList: core.serialization.ObjectSchema< - serializers.accounting.PaginatedTransactionList.Raw, - Merge.accounting.PaginatedTransactionList -> = core.serialization.object({ - next: core.serialization.string().optional(), - previous: core.serialization.string().optional(), - results: core.serialization.list(Transaction).optional(), -}); - -export declare namespace PaginatedTransactionList { - export interface Raw { - next?: string | null; - previous?: string | null; - results?: Transaction.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/PaginatedVendorCreditList.ts b/src/serialization/resources/accounting/types/PaginatedVendorCreditList.ts deleted file mode 100644 index a7f710083..000000000 --- a/src/serialization/resources/accounting/types/PaginatedVendorCreditList.ts +++ /dev/null @@ -1,24 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import * as serializers from "../../../index"; - -export const PaginatedVendorCreditList: core.serialization.ObjectSchema< - serializers.accounting.PaginatedVendorCreditList.Raw, - Merge.accounting.PaginatedVendorCreditList -> = core.serialization.object({ - next: core.serialization.string().optional(), - previous: core.serialization.string().optional(), - results: core.serialization - .list(core.serialization.lazyObject(() => serializers.accounting.VendorCredit)) - .optional(), -}); - -export declare namespace PaginatedVendorCreditList { - export interface Raw { - next?: string | null; - previous?: string | null; - results?: serializers.accounting.VendorCredit.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/PatchedContactRequest.ts b/src/serialization/resources/accounting/types/PatchedContactRequest.ts deleted file mode 100644 index 0c62524ed..000000000 --- a/src/serialization/resources/accounting/types/PatchedContactRequest.ts +++ /dev/null @@ -1,54 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { AccountingPhoneNumberRequest } from "./AccountingPhoneNumberRequest"; -import { PatchedContactRequestAddressesItem } from "./PatchedContactRequestAddressesItem"; -import { RemoteFieldRequest } from "./RemoteFieldRequest"; - -export const PatchedContactRequest: core.serialization.ObjectSchema< - serializers.accounting.PatchedContactRequest.Raw, - Merge.accounting.PatchedContactRequest -> = core.serialization.object({ - name: core.serialization.string().optional(), - isSupplier: core.serialization.property("is_supplier", core.serialization.boolean().optional()), - isCustomer: core.serialization.property("is_customer", core.serialization.boolean().optional()), - emailAddress: core.serialization.property("email_address", core.serialization.string().optional()), - taxNumber: core.serialization.property("tax_number", core.serialization.string().optional()), - status: core.serialization.string().optional(), - currency: core.serialization.string().optional(), - company: core.serialization.string().optional(), - addresses: core.serialization.list(PatchedContactRequestAddressesItem.optional()).optional(), - phoneNumbers: core.serialization.property( - "phone_numbers", - core.serialization.list(AccountingPhoneNumberRequest).optional(), - ), - integrationParams: core.serialization.property( - "integration_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - linkedAccountParams: core.serialization.property( - "linked_account_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - remoteFields: core.serialization.property("remote_fields", core.serialization.list(RemoteFieldRequest).optional()), -}); - -export declare namespace PatchedContactRequest { - export interface Raw { - name?: string | null; - is_supplier?: boolean | null; - is_customer?: boolean | null; - email_address?: string | null; - tax_number?: string | null; - status?: string | null; - currency?: string | null; - company?: string | null; - addresses?: (PatchedContactRequestAddressesItem.Raw | null | undefined)[] | null; - phone_numbers?: AccountingPhoneNumberRequest.Raw[] | null; - integration_params?: Record | null; - linked_account_params?: Record | null; - remote_fields?: RemoteFieldRequest.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/PatchedContactRequestAddressesItem.ts b/src/serialization/resources/accounting/types/PatchedContactRequestAddressesItem.ts deleted file mode 100644 index d3f4d429e..000000000 --- a/src/serialization/resources/accounting/types/PatchedContactRequestAddressesItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Address } from "./Address"; - -export const PatchedContactRequestAddressesItem: core.serialization.Schema< - serializers.accounting.PatchedContactRequestAddressesItem.Raw, - Merge.accounting.PatchedContactRequestAddressesItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Address]); - -export declare namespace PatchedContactRequestAddressesItem { - export type Raw = string | Address.Raw; -} diff --git a/src/serialization/resources/accounting/types/PatchedItemRequestRequest.ts b/src/serialization/resources/accounting/types/PatchedItemRequestRequest.ts deleted file mode 100644 index 6788698e6..000000000 --- a/src/serialization/resources/accounting/types/PatchedItemRequestRequest.ts +++ /dev/null @@ -1,48 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { PatchedItemRequestRequestStatus } from "./PatchedItemRequestRequestStatus"; -import { PatchedItemRequestRequestType } from "./PatchedItemRequestRequestType"; - -export const PatchedItemRequestRequest: core.serialization.ObjectSchema< - serializers.accounting.PatchedItemRequestRequest.Raw, - Merge.accounting.PatchedItemRequestRequest -> = core.serialization.object({ - name: core.serialization.string().optional(), - status: PatchedItemRequestRequestStatus.optional(), - type: PatchedItemRequestRequestType.optional(), - unitPrice: core.serialization.property("unit_price", core.serialization.number().optional()), - purchasePrice: core.serialization.property("purchase_price", core.serialization.number().optional()), - purchaseAccount: core.serialization.property("purchase_account", core.serialization.string().optional()), - salesAccount: core.serialization.property("sales_account", core.serialization.string().optional()), - company: core.serialization.string().optional(), - purchaseTaxRate: core.serialization.property("purchase_tax_rate", core.serialization.string().optional()), - salesTaxRate: core.serialization.property("sales_tax_rate", core.serialization.string().optional()), - integrationParams: core.serialization.property( - "integration_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - linkedAccountParams: core.serialization.property( - "linked_account_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), -}); - -export declare namespace PatchedItemRequestRequest { - export interface Raw { - name?: string | null; - status?: PatchedItemRequestRequestStatus.Raw | null; - type?: PatchedItemRequestRequestType.Raw | null; - unit_price?: number | null; - purchase_price?: number | null; - purchase_account?: string | null; - sales_account?: string | null; - company?: string | null; - purchase_tax_rate?: string | null; - sales_tax_rate?: string | null; - integration_params?: Record | null; - linked_account_params?: Record | null; - } -} diff --git a/src/serialization/resources/accounting/types/PatchedItemRequestRequestStatus.ts b/src/serialization/resources/accounting/types/PatchedItemRequestRequestStatus.ts deleted file mode 100644 index 44ec6b17d..000000000 --- a/src/serialization/resources/accounting/types/PatchedItemRequestRequestStatus.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Status7D1Enum } from "./Status7D1Enum"; - -export const PatchedItemRequestRequestStatus: core.serialization.Schema< - serializers.accounting.PatchedItemRequestRequestStatus.Raw, - Merge.accounting.PatchedItemRequestRequestStatus -> = core.serialization.undiscriminatedUnion([Status7D1Enum, core.serialization.string()]); - -export declare namespace PatchedItemRequestRequestStatus { - export type Raw = Status7D1Enum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/PatchedItemRequestRequestType.ts b/src/serialization/resources/accounting/types/PatchedItemRequestRequestType.ts deleted file mode 100644 index 4061ce065..000000000 --- a/src/serialization/resources/accounting/types/PatchedItemRequestRequestType.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Type2BbEnum } from "./Type2BbEnum"; - -export const PatchedItemRequestRequestType: core.serialization.Schema< - serializers.accounting.PatchedItemRequestRequestType.Raw, - Merge.accounting.PatchedItemRequestRequestType -> = core.serialization.undiscriminatedUnion([Type2BbEnum, core.serialization.string()]); - -export declare namespace PatchedItemRequestRequestType { - export type Raw = Type2BbEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/PatchedPaymentRequest.ts b/src/serialization/resources/accounting/types/PatchedPaymentRequest.ts deleted file mode 100644 index 4cf160d22..000000000 --- a/src/serialization/resources/accounting/types/PatchedPaymentRequest.ts +++ /dev/null @@ -1,71 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { PatchedPaymentRequestAccount } from "./PatchedPaymentRequestAccount"; -import { PatchedPaymentRequestAccountingPeriod } from "./PatchedPaymentRequestAccountingPeriod"; -import { PatchedPaymentRequestAppliedToLinesItem } from "./PatchedPaymentRequestAppliedToLinesItem"; -import { PatchedPaymentRequestCompany } from "./PatchedPaymentRequestCompany"; -import { PatchedPaymentRequestContact } from "./PatchedPaymentRequestContact"; -import { PatchedPaymentRequestCurrency } from "./PatchedPaymentRequestCurrency"; -import { PatchedPaymentRequestPaymentMethod } from "./PatchedPaymentRequestPaymentMethod"; -import { PatchedPaymentRequestTrackingCategoriesItem } from "./PatchedPaymentRequestTrackingCategoriesItem"; -import { PatchedPaymentRequestType } from "./PatchedPaymentRequestType"; -import { RemoteFieldRequest } from "./RemoteFieldRequest"; - -export const PatchedPaymentRequest: core.serialization.ObjectSchema< - serializers.accounting.PatchedPaymentRequest.Raw, - Merge.accounting.PatchedPaymentRequest -> = core.serialization.object({ - transactionDate: core.serialization.property("transaction_date", core.serialization.date().optional()), - contact: PatchedPaymentRequestContact.optional(), - account: PatchedPaymentRequestAccount.optional(), - paymentMethod: core.serialization.property("payment_method", PatchedPaymentRequestPaymentMethod.optional()), - currency: PatchedPaymentRequestCurrency.optional(), - exchangeRate: core.serialization.property("exchange_rate", core.serialization.string().optional()), - company: PatchedPaymentRequestCompany.optional(), - totalAmount: core.serialization.property("total_amount", core.serialization.number().optional()), - type: PatchedPaymentRequestType.optional(), - trackingCategories: core.serialization.property( - "tracking_categories", - core.serialization.list(PatchedPaymentRequestTrackingCategoriesItem.optional()).optional(), - ), - accountingPeriod: core.serialization.property( - "accounting_period", - PatchedPaymentRequestAccountingPeriod.optional(), - ), - appliedToLines: core.serialization.property( - "applied_to_lines", - core.serialization.list(PatchedPaymentRequestAppliedToLinesItem).optional(), - ), - integrationParams: core.serialization.property( - "integration_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - linkedAccountParams: core.serialization.property( - "linked_account_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - remoteFields: core.serialization.property("remote_fields", core.serialization.list(RemoteFieldRequest).optional()), -}); - -export declare namespace PatchedPaymentRequest { - export interface Raw { - transaction_date?: string | null; - contact?: PatchedPaymentRequestContact.Raw | null; - account?: PatchedPaymentRequestAccount.Raw | null; - payment_method?: PatchedPaymentRequestPaymentMethod.Raw | null; - currency?: PatchedPaymentRequestCurrency.Raw | null; - exchange_rate?: string | null; - company?: PatchedPaymentRequestCompany.Raw | null; - total_amount?: number | null; - type?: PatchedPaymentRequestType.Raw | null; - tracking_categories?: (PatchedPaymentRequestTrackingCategoriesItem.Raw | null | undefined)[] | null; - accounting_period?: PatchedPaymentRequestAccountingPeriod.Raw | null; - applied_to_lines?: PatchedPaymentRequestAppliedToLinesItem.Raw[] | null; - integration_params?: Record | null; - linked_account_params?: Record | null; - remote_fields?: RemoteFieldRequest.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/PatchedPaymentRequestAccount.ts b/src/serialization/resources/accounting/types/PatchedPaymentRequestAccount.ts deleted file mode 100644 index 852e98281..000000000 --- a/src/serialization/resources/accounting/types/PatchedPaymentRequestAccount.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Account } from "./Account"; - -export const PatchedPaymentRequestAccount: core.serialization.Schema< - serializers.accounting.PatchedPaymentRequestAccount.Raw, - Merge.accounting.PatchedPaymentRequestAccount -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Account]); - -export declare namespace PatchedPaymentRequestAccount { - export type Raw = string | Account.Raw; -} diff --git a/src/serialization/resources/accounting/types/PatchedPaymentRequestAccountingPeriod.ts b/src/serialization/resources/accounting/types/PatchedPaymentRequestAccountingPeriod.ts deleted file mode 100644 index d775376df..000000000 --- a/src/serialization/resources/accounting/types/PatchedPaymentRequestAccountingPeriod.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { AccountingPeriod } from "./AccountingPeriod"; - -export const PatchedPaymentRequestAccountingPeriod: core.serialization.Schema< - serializers.accounting.PatchedPaymentRequestAccountingPeriod.Raw, - Merge.accounting.PatchedPaymentRequestAccountingPeriod -> = core.serialization.undiscriminatedUnion([core.serialization.string(), AccountingPeriod]); - -export declare namespace PatchedPaymentRequestAccountingPeriod { - export type Raw = string | AccountingPeriod.Raw; -} diff --git a/src/serialization/resources/accounting/types/PatchedPaymentRequestAppliedToLinesItem.ts b/src/serialization/resources/accounting/types/PatchedPaymentRequestAppliedToLinesItem.ts deleted file mode 100644 index e064731ea..000000000 --- a/src/serialization/resources/accounting/types/PatchedPaymentRequestAppliedToLinesItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { PaymentLineItemRequest } from "./PaymentLineItemRequest"; - -export const PatchedPaymentRequestAppliedToLinesItem: core.serialization.Schema< - serializers.accounting.PatchedPaymentRequestAppliedToLinesItem.Raw, - Merge.accounting.PatchedPaymentRequestAppliedToLinesItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), PaymentLineItemRequest]); - -export declare namespace PatchedPaymentRequestAppliedToLinesItem { - export type Raw = string | PaymentLineItemRequest.Raw; -} diff --git a/src/serialization/resources/accounting/types/PatchedPaymentRequestCompany.ts b/src/serialization/resources/accounting/types/PatchedPaymentRequestCompany.ts deleted file mode 100644 index 4e62bb74a..000000000 --- a/src/serialization/resources/accounting/types/PatchedPaymentRequestCompany.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CompanyInfo } from "./CompanyInfo"; - -export const PatchedPaymentRequestCompany: core.serialization.Schema< - serializers.accounting.PatchedPaymentRequestCompany.Raw, - Merge.accounting.PatchedPaymentRequestCompany -> = core.serialization.undiscriminatedUnion([core.serialization.string(), CompanyInfo]); - -export declare namespace PatchedPaymentRequestCompany { - export type Raw = string | CompanyInfo.Raw; -} diff --git a/src/serialization/resources/accounting/types/PatchedPaymentRequestContact.ts b/src/serialization/resources/accounting/types/PatchedPaymentRequestContact.ts deleted file mode 100644 index a10ecbc8d..000000000 --- a/src/serialization/resources/accounting/types/PatchedPaymentRequestContact.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Contact } from "./Contact"; - -export const PatchedPaymentRequestContact: core.serialization.Schema< - serializers.accounting.PatchedPaymentRequestContact.Raw, - Merge.accounting.PatchedPaymentRequestContact -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Contact]); - -export declare namespace PatchedPaymentRequestContact { - export type Raw = string | Contact.Raw; -} diff --git a/src/serialization/resources/accounting/types/PatchedPaymentRequestCurrency.ts b/src/serialization/resources/accounting/types/PatchedPaymentRequestCurrency.ts deleted file mode 100644 index 2d4fd74e1..000000000 --- a/src/serialization/resources/accounting/types/PatchedPaymentRequestCurrency.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TransactionCurrencyEnum } from "./TransactionCurrencyEnum"; - -export const PatchedPaymentRequestCurrency: core.serialization.Schema< - serializers.accounting.PatchedPaymentRequestCurrency.Raw, - Merge.accounting.PatchedPaymentRequestCurrency -> = core.serialization.undiscriminatedUnion([TransactionCurrencyEnum, core.serialization.string()]); - -export declare namespace PatchedPaymentRequestCurrency { - export type Raw = TransactionCurrencyEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/PatchedPaymentRequestPaymentMethod.ts b/src/serialization/resources/accounting/types/PatchedPaymentRequestPaymentMethod.ts deleted file mode 100644 index 3897cb66b..000000000 --- a/src/serialization/resources/accounting/types/PatchedPaymentRequestPaymentMethod.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { PaymentMethod } from "./PaymentMethod"; - -export const PatchedPaymentRequestPaymentMethod: core.serialization.Schema< - serializers.accounting.PatchedPaymentRequestPaymentMethod.Raw, - Merge.accounting.PatchedPaymentRequestPaymentMethod -> = core.serialization.undiscriminatedUnion([core.serialization.string(), PaymentMethod]); - -export declare namespace PatchedPaymentRequestPaymentMethod { - export type Raw = string | PaymentMethod.Raw; -} diff --git a/src/serialization/resources/accounting/types/PatchedPaymentRequestTrackingCategoriesItem.ts b/src/serialization/resources/accounting/types/PatchedPaymentRequestTrackingCategoriesItem.ts deleted file mode 100644 index e0674d4fd..000000000 --- a/src/serialization/resources/accounting/types/PatchedPaymentRequestTrackingCategoriesItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TrackingCategory } from "./TrackingCategory"; - -export const PatchedPaymentRequestTrackingCategoriesItem: core.serialization.Schema< - serializers.accounting.PatchedPaymentRequestTrackingCategoriesItem.Raw, - Merge.accounting.PatchedPaymentRequestTrackingCategoriesItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), TrackingCategory]); - -export declare namespace PatchedPaymentRequestTrackingCategoriesItem { - export type Raw = string | TrackingCategory.Raw; -} diff --git a/src/serialization/resources/accounting/types/PatchedPaymentRequestType.ts b/src/serialization/resources/accounting/types/PatchedPaymentRequestType.ts deleted file mode 100644 index d74de5ac1..000000000 --- a/src/serialization/resources/accounting/types/PatchedPaymentRequestType.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { PaymentTypeEnum } from "./PaymentTypeEnum"; - -export const PatchedPaymentRequestType: core.serialization.Schema< - serializers.accounting.PatchedPaymentRequestType.Raw, - Merge.accounting.PatchedPaymentRequestType -> = core.serialization.undiscriminatedUnion([PaymentTypeEnum, core.serialization.string()]); - -export declare namespace PatchedPaymentRequestType { - export type Raw = PaymentTypeEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/Payment.ts b/src/serialization/resources/accounting/types/Payment.ts deleted file mode 100644 index c8e21dfc5..000000000 --- a/src/serialization/resources/accounting/types/Payment.ts +++ /dev/null @@ -1,76 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { PaymentAccount } from "./PaymentAccount"; -import { PaymentAccountingPeriod } from "./PaymentAccountingPeriod"; -import { PaymentAppliedToLinesItem } from "./PaymentAppliedToLinesItem"; -import { PaymentCompany } from "./PaymentCompany"; -import { PaymentContact } from "./PaymentContact"; -import { PaymentCurrency } from "./PaymentCurrency"; -import { PaymentPaymentMethod } from "./PaymentPaymentMethod"; -import { PaymentTrackingCategoriesItem } from "./PaymentTrackingCategoriesItem"; -import { PaymentType } from "./PaymentType"; -import { RemoteData } from "./RemoteData"; -import { RemoteField } from "./RemoteField"; - -export const Payment: core.serialization.ObjectSchema = - core.serialization.object({ - id: core.serialization.string().optional(), - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - createdAt: core.serialization.property("created_at", core.serialization.date().optional()), - modifiedAt: core.serialization.property("modified_at", core.serialization.date().optional()), - transactionDate: core.serialization.property("transaction_date", core.serialization.date().optional()), - contact: PaymentContact.optional(), - account: PaymentAccount.optional(), - paymentMethod: core.serialization.property("payment_method", PaymentPaymentMethod.optional()), - currency: PaymentCurrency.optional(), - exchangeRate: core.serialization.property("exchange_rate", core.serialization.string().optional()), - company: PaymentCompany.optional(), - totalAmount: core.serialization.property("total_amount", core.serialization.number().optional()), - type: PaymentType.optional(), - trackingCategories: core.serialization.property( - "tracking_categories", - core.serialization.list(PaymentTrackingCategoriesItem.optional()).optional(), - ), - accountingPeriod: core.serialization.property("accounting_period", PaymentAccountingPeriod.optional()), - appliedToLines: core.serialization.property( - "applied_to_lines", - core.serialization.list(PaymentAppliedToLinesItem).optional(), - ), - remoteUpdatedAt: core.serialization.property("remote_updated_at", core.serialization.date().optional()), - remoteWasDeleted: core.serialization.property("remote_was_deleted", core.serialization.boolean().optional()), - fieldMappings: core.serialization.property( - "field_mappings", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - remoteData: core.serialization.property("remote_data", core.serialization.list(RemoteData).optional()), - remoteFields: core.serialization.property("remote_fields", core.serialization.list(RemoteField).optional()), - }); - -export declare namespace Payment { - export interface Raw { - id?: string | null; - remote_id?: string | null; - created_at?: string | null; - modified_at?: string | null; - transaction_date?: string | null; - contact?: PaymentContact.Raw | null; - account?: PaymentAccount.Raw | null; - payment_method?: PaymentPaymentMethod.Raw | null; - currency?: PaymentCurrency.Raw | null; - exchange_rate?: string | null; - company?: PaymentCompany.Raw | null; - total_amount?: number | null; - type?: PaymentType.Raw | null; - tracking_categories?: (PaymentTrackingCategoriesItem.Raw | null | undefined)[] | null; - accounting_period?: PaymentAccountingPeriod.Raw | null; - applied_to_lines?: PaymentAppliedToLinesItem.Raw[] | null; - remote_updated_at?: string | null; - remote_was_deleted?: boolean | null; - field_mappings?: Record | null; - remote_data?: RemoteData.Raw[] | null; - remote_fields?: RemoteField.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/PaymentAccount.ts b/src/serialization/resources/accounting/types/PaymentAccount.ts deleted file mode 100644 index 194f2cd53..000000000 --- a/src/serialization/resources/accounting/types/PaymentAccount.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Account } from "./Account"; - -export const PaymentAccount: core.serialization.Schema< - serializers.accounting.PaymentAccount.Raw, - Merge.accounting.PaymentAccount -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Account]); - -export declare namespace PaymentAccount { - export type Raw = string | Account.Raw; -} diff --git a/src/serialization/resources/accounting/types/PaymentAccountingPeriod.ts b/src/serialization/resources/accounting/types/PaymentAccountingPeriod.ts deleted file mode 100644 index d8e4d48a1..000000000 --- a/src/serialization/resources/accounting/types/PaymentAccountingPeriod.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { AccountingPeriod } from "./AccountingPeriod"; - -export const PaymentAccountingPeriod: core.serialization.Schema< - serializers.accounting.PaymentAccountingPeriod.Raw, - Merge.accounting.PaymentAccountingPeriod -> = core.serialization.undiscriminatedUnion([core.serialization.string(), AccountingPeriod]); - -export declare namespace PaymentAccountingPeriod { - export type Raw = string | AccountingPeriod.Raw; -} diff --git a/src/serialization/resources/accounting/types/PaymentAppliedToLinesItem.ts b/src/serialization/resources/accounting/types/PaymentAppliedToLinesItem.ts deleted file mode 100644 index 62af058d6..000000000 --- a/src/serialization/resources/accounting/types/PaymentAppliedToLinesItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { PaymentLineItem } from "./PaymentLineItem"; - -export const PaymentAppliedToLinesItem: core.serialization.Schema< - serializers.accounting.PaymentAppliedToLinesItem.Raw, - Merge.accounting.PaymentAppliedToLinesItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), PaymentLineItem]); - -export declare namespace PaymentAppliedToLinesItem { - export type Raw = string | PaymentLineItem.Raw; -} diff --git a/src/serialization/resources/accounting/types/PaymentCompany.ts b/src/serialization/resources/accounting/types/PaymentCompany.ts deleted file mode 100644 index 73a8c22d6..000000000 --- a/src/serialization/resources/accounting/types/PaymentCompany.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CompanyInfo } from "./CompanyInfo"; - -export const PaymentCompany: core.serialization.Schema< - serializers.accounting.PaymentCompany.Raw, - Merge.accounting.PaymentCompany -> = core.serialization.undiscriminatedUnion([core.serialization.string(), CompanyInfo]); - -export declare namespace PaymentCompany { - export type Raw = string | CompanyInfo.Raw; -} diff --git a/src/serialization/resources/accounting/types/PaymentContact.ts b/src/serialization/resources/accounting/types/PaymentContact.ts deleted file mode 100644 index 69b64cd77..000000000 --- a/src/serialization/resources/accounting/types/PaymentContact.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Contact } from "./Contact"; - -export const PaymentContact: core.serialization.Schema< - serializers.accounting.PaymentContact.Raw, - Merge.accounting.PaymentContact -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Contact]); - -export declare namespace PaymentContact { - export type Raw = string | Contact.Raw; -} diff --git a/src/serialization/resources/accounting/types/PaymentCurrency.ts b/src/serialization/resources/accounting/types/PaymentCurrency.ts deleted file mode 100644 index fb5efe92d..000000000 --- a/src/serialization/resources/accounting/types/PaymentCurrency.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TransactionCurrencyEnum } from "./TransactionCurrencyEnum"; - -export const PaymentCurrency: core.serialization.Schema< - serializers.accounting.PaymentCurrency.Raw, - Merge.accounting.PaymentCurrency -> = core.serialization.undiscriminatedUnion([TransactionCurrencyEnum, core.serialization.string()]); - -export declare namespace PaymentCurrency { - export type Raw = TransactionCurrencyEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/PaymentLineItem.ts b/src/serialization/resources/accounting/types/PaymentLineItem.ts deleted file mode 100644 index ce43d810d..000000000 --- a/src/serialization/resources/accounting/types/PaymentLineItem.ts +++ /dev/null @@ -1,32 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const PaymentLineItem: core.serialization.ObjectSchema< - serializers.accounting.PaymentLineItem.Raw, - Merge.accounting.PaymentLineItem -> = core.serialization.object({ - id: core.serialization.string().optional(), - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - createdAt: core.serialization.property("created_at", core.serialization.date().optional()), - modifiedAt: core.serialization.property("modified_at", core.serialization.date().optional()), - appliedAmount: core.serialization.property("applied_amount", core.serialization.string().optional()), - appliedDate: core.serialization.property("applied_date", core.serialization.date().optional()), - relatedObjectId: core.serialization.property("related_object_id", core.serialization.string().optional()), - relatedObjectType: core.serialization.property("related_object_type", core.serialization.string().optional()), -}); - -export declare namespace PaymentLineItem { - export interface Raw { - id?: string | null; - remote_id?: string | null; - created_at?: string | null; - modified_at?: string | null; - applied_amount?: string | null; - applied_date?: string | null; - related_object_id?: string | null; - related_object_type?: string | null; - } -} diff --git a/src/serialization/resources/accounting/types/PaymentLineItemRequest.ts b/src/serialization/resources/accounting/types/PaymentLineItemRequest.ts deleted file mode 100644 index 5fd4e0011..000000000 --- a/src/serialization/resources/accounting/types/PaymentLineItemRequest.ts +++ /dev/null @@ -1,39 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { RemoteFieldRequest } from "./RemoteFieldRequest"; - -export const PaymentLineItemRequest: core.serialization.ObjectSchema< - serializers.accounting.PaymentLineItemRequest.Raw, - Merge.accounting.PaymentLineItemRequest -> = core.serialization.object({ - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - appliedAmount: core.serialization.property("applied_amount", core.serialization.string().optional()), - appliedDate: core.serialization.property("applied_date", core.serialization.date().optional()), - relatedObjectId: core.serialization.property("related_object_id", core.serialization.string().optional()), - relatedObjectType: core.serialization.property("related_object_type", core.serialization.string().optional()), - integrationParams: core.serialization.property( - "integration_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - linkedAccountParams: core.serialization.property( - "linked_account_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - remoteFields: core.serialization.property("remote_fields", core.serialization.list(RemoteFieldRequest).optional()), -}); - -export declare namespace PaymentLineItemRequest { - export interface Raw { - remote_id?: string | null; - applied_amount?: string | null; - applied_date?: string | null; - related_object_id?: string | null; - related_object_type?: string | null; - integration_params?: Record | null; - linked_account_params?: Record | null; - remote_fields?: RemoteFieldRequest.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/PaymentMethod.ts b/src/serialization/resources/accounting/types/PaymentMethod.ts deleted file mode 100644 index d949c5a1d..000000000 --- a/src/serialization/resources/accounting/types/PaymentMethod.ts +++ /dev/null @@ -1,41 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { PaymentMethodMethodType } from "./PaymentMethodMethodType"; -import { RemoteData } from "./RemoteData"; - -export const PaymentMethod: core.serialization.ObjectSchema< - serializers.accounting.PaymentMethod.Raw, - Merge.accounting.PaymentMethod -> = core.serialization.object({ - id: core.serialization.string().optional(), - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - createdAt: core.serialization.property("created_at", core.serialization.date().optional()), - modifiedAt: core.serialization.property("modified_at", core.serialization.date().optional()), - methodType: core.serialization.property("method_type", PaymentMethodMethodType), - name: core.serialization.string(), - isActive: core.serialization.property("is_active", core.serialization.boolean().optional()), - remoteUpdatedAt: core.serialization.property("remote_updated_at", core.serialization.date().optional()), - fieldMappings: core.serialization.property( - "field_mappings", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - remoteData: core.serialization.property("remote_data", core.serialization.list(RemoteData).optional()), -}); - -export declare namespace PaymentMethod { - export interface Raw { - id?: string | null; - remote_id?: string | null; - created_at?: string | null; - modified_at?: string | null; - method_type: PaymentMethodMethodType.Raw; - name: string; - is_active?: boolean | null; - remote_updated_at?: string | null; - field_mappings?: Record | null; - remote_data?: RemoteData.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/PaymentMethodMethodType.ts b/src/serialization/resources/accounting/types/PaymentMethodMethodType.ts deleted file mode 100644 index 23cc09c4a..000000000 --- a/src/serialization/resources/accounting/types/PaymentMethodMethodType.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { MethodTypeEnum } from "./MethodTypeEnum"; - -export const PaymentMethodMethodType: core.serialization.Schema< - serializers.accounting.PaymentMethodMethodType.Raw, - Merge.accounting.PaymentMethodMethodType -> = core.serialization.undiscriminatedUnion([MethodTypeEnum, core.serialization.string()]); - -export declare namespace PaymentMethodMethodType { - export type Raw = MethodTypeEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/PaymentPaymentMethod.ts b/src/serialization/resources/accounting/types/PaymentPaymentMethod.ts deleted file mode 100644 index 6bdc4578e..000000000 --- a/src/serialization/resources/accounting/types/PaymentPaymentMethod.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { PaymentMethod } from "./PaymentMethod"; - -export const PaymentPaymentMethod: core.serialization.Schema< - serializers.accounting.PaymentPaymentMethod.Raw, - Merge.accounting.PaymentPaymentMethod -> = core.serialization.undiscriminatedUnion([core.serialization.string(), PaymentMethod]); - -export declare namespace PaymentPaymentMethod { - export type Raw = string | PaymentMethod.Raw; -} diff --git a/src/serialization/resources/accounting/types/PaymentRequest.ts b/src/serialization/resources/accounting/types/PaymentRequest.ts deleted file mode 100644 index 11d48d727..000000000 --- a/src/serialization/resources/accounting/types/PaymentRequest.ts +++ /dev/null @@ -1,68 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { PaymentRequestAccount } from "./PaymentRequestAccount"; -import { PaymentRequestAccountingPeriod } from "./PaymentRequestAccountingPeriod"; -import { PaymentRequestAppliedToLinesItem } from "./PaymentRequestAppliedToLinesItem"; -import { PaymentRequestCompany } from "./PaymentRequestCompany"; -import { PaymentRequestContact } from "./PaymentRequestContact"; -import { PaymentRequestCurrency } from "./PaymentRequestCurrency"; -import { PaymentRequestPaymentMethod } from "./PaymentRequestPaymentMethod"; -import { PaymentRequestTrackingCategoriesItem } from "./PaymentRequestTrackingCategoriesItem"; -import { PaymentRequestType } from "./PaymentRequestType"; -import { RemoteFieldRequest } from "./RemoteFieldRequest"; - -export const PaymentRequest: core.serialization.ObjectSchema< - serializers.accounting.PaymentRequest.Raw, - Merge.accounting.PaymentRequest -> = core.serialization.object({ - transactionDate: core.serialization.property("transaction_date", core.serialization.date().optional()), - contact: PaymentRequestContact.optional(), - account: PaymentRequestAccount.optional(), - paymentMethod: core.serialization.property("payment_method", PaymentRequestPaymentMethod.optional()), - currency: PaymentRequestCurrency.optional(), - exchangeRate: core.serialization.property("exchange_rate", core.serialization.string().optional()), - company: PaymentRequestCompany.optional(), - totalAmount: core.serialization.property("total_amount", core.serialization.number().optional()), - type: PaymentRequestType.optional(), - trackingCategories: core.serialization.property( - "tracking_categories", - core.serialization.list(PaymentRequestTrackingCategoriesItem.optional()).optional(), - ), - accountingPeriod: core.serialization.property("accounting_period", PaymentRequestAccountingPeriod.optional()), - appliedToLines: core.serialization.property( - "applied_to_lines", - core.serialization.list(PaymentRequestAppliedToLinesItem).optional(), - ), - integrationParams: core.serialization.property( - "integration_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - linkedAccountParams: core.serialization.property( - "linked_account_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - remoteFields: core.serialization.property("remote_fields", core.serialization.list(RemoteFieldRequest).optional()), -}); - -export declare namespace PaymentRequest { - export interface Raw { - transaction_date?: string | null; - contact?: PaymentRequestContact.Raw | null; - account?: PaymentRequestAccount.Raw | null; - payment_method?: PaymentRequestPaymentMethod.Raw | null; - currency?: PaymentRequestCurrency.Raw | null; - exchange_rate?: string | null; - company?: PaymentRequestCompany.Raw | null; - total_amount?: number | null; - type?: PaymentRequestType.Raw | null; - tracking_categories?: (PaymentRequestTrackingCategoriesItem.Raw | null | undefined)[] | null; - accounting_period?: PaymentRequestAccountingPeriod.Raw | null; - applied_to_lines?: PaymentRequestAppliedToLinesItem.Raw[] | null; - integration_params?: Record | null; - linked_account_params?: Record | null; - remote_fields?: RemoteFieldRequest.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/PaymentRequestAccount.ts b/src/serialization/resources/accounting/types/PaymentRequestAccount.ts deleted file mode 100644 index 063b18da4..000000000 --- a/src/serialization/resources/accounting/types/PaymentRequestAccount.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Account } from "./Account"; - -export const PaymentRequestAccount: core.serialization.Schema< - serializers.accounting.PaymentRequestAccount.Raw, - Merge.accounting.PaymentRequestAccount -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Account]); - -export declare namespace PaymentRequestAccount { - export type Raw = string | Account.Raw; -} diff --git a/src/serialization/resources/accounting/types/PaymentRequestAccountingPeriod.ts b/src/serialization/resources/accounting/types/PaymentRequestAccountingPeriod.ts deleted file mode 100644 index dd7718e23..000000000 --- a/src/serialization/resources/accounting/types/PaymentRequestAccountingPeriod.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { AccountingPeriod } from "./AccountingPeriod"; - -export const PaymentRequestAccountingPeriod: core.serialization.Schema< - serializers.accounting.PaymentRequestAccountingPeriod.Raw, - Merge.accounting.PaymentRequestAccountingPeriod -> = core.serialization.undiscriminatedUnion([core.serialization.string(), AccountingPeriod]); - -export declare namespace PaymentRequestAccountingPeriod { - export type Raw = string | AccountingPeriod.Raw; -} diff --git a/src/serialization/resources/accounting/types/PaymentRequestAppliedToLinesItem.ts b/src/serialization/resources/accounting/types/PaymentRequestAppliedToLinesItem.ts deleted file mode 100644 index c8c25a108..000000000 --- a/src/serialization/resources/accounting/types/PaymentRequestAppliedToLinesItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { PaymentLineItemRequest } from "./PaymentLineItemRequest"; - -export const PaymentRequestAppliedToLinesItem: core.serialization.Schema< - serializers.accounting.PaymentRequestAppliedToLinesItem.Raw, - Merge.accounting.PaymentRequestAppliedToLinesItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), PaymentLineItemRequest]); - -export declare namespace PaymentRequestAppliedToLinesItem { - export type Raw = string | PaymentLineItemRequest.Raw; -} diff --git a/src/serialization/resources/accounting/types/PaymentRequestCompany.ts b/src/serialization/resources/accounting/types/PaymentRequestCompany.ts deleted file mode 100644 index 573620388..000000000 --- a/src/serialization/resources/accounting/types/PaymentRequestCompany.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CompanyInfo } from "./CompanyInfo"; - -export const PaymentRequestCompany: core.serialization.Schema< - serializers.accounting.PaymentRequestCompany.Raw, - Merge.accounting.PaymentRequestCompany -> = core.serialization.undiscriminatedUnion([core.serialization.string(), CompanyInfo]); - -export declare namespace PaymentRequestCompany { - export type Raw = string | CompanyInfo.Raw; -} diff --git a/src/serialization/resources/accounting/types/PaymentRequestContact.ts b/src/serialization/resources/accounting/types/PaymentRequestContact.ts deleted file mode 100644 index 2dfb94a03..000000000 --- a/src/serialization/resources/accounting/types/PaymentRequestContact.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Contact } from "./Contact"; - -export const PaymentRequestContact: core.serialization.Schema< - serializers.accounting.PaymentRequestContact.Raw, - Merge.accounting.PaymentRequestContact -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Contact]); - -export declare namespace PaymentRequestContact { - export type Raw = string | Contact.Raw; -} diff --git a/src/serialization/resources/accounting/types/PaymentRequestCurrency.ts b/src/serialization/resources/accounting/types/PaymentRequestCurrency.ts deleted file mode 100644 index ecf81a559..000000000 --- a/src/serialization/resources/accounting/types/PaymentRequestCurrency.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TransactionCurrencyEnum } from "./TransactionCurrencyEnum"; - -export const PaymentRequestCurrency: core.serialization.Schema< - serializers.accounting.PaymentRequestCurrency.Raw, - Merge.accounting.PaymentRequestCurrency -> = core.serialization.undiscriminatedUnion([TransactionCurrencyEnum, core.serialization.string()]); - -export declare namespace PaymentRequestCurrency { - export type Raw = TransactionCurrencyEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/PaymentRequestPaymentMethod.ts b/src/serialization/resources/accounting/types/PaymentRequestPaymentMethod.ts deleted file mode 100644 index ad9265621..000000000 --- a/src/serialization/resources/accounting/types/PaymentRequestPaymentMethod.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { PaymentMethod } from "./PaymentMethod"; - -export const PaymentRequestPaymentMethod: core.serialization.Schema< - serializers.accounting.PaymentRequestPaymentMethod.Raw, - Merge.accounting.PaymentRequestPaymentMethod -> = core.serialization.undiscriminatedUnion([core.serialization.string(), PaymentMethod]); - -export declare namespace PaymentRequestPaymentMethod { - export type Raw = string | PaymentMethod.Raw; -} diff --git a/src/serialization/resources/accounting/types/PaymentRequestTrackingCategoriesItem.ts b/src/serialization/resources/accounting/types/PaymentRequestTrackingCategoriesItem.ts deleted file mode 100644 index baa50dfb9..000000000 --- a/src/serialization/resources/accounting/types/PaymentRequestTrackingCategoriesItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TrackingCategory } from "./TrackingCategory"; - -export const PaymentRequestTrackingCategoriesItem: core.serialization.Schema< - serializers.accounting.PaymentRequestTrackingCategoriesItem.Raw, - Merge.accounting.PaymentRequestTrackingCategoriesItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), TrackingCategory]); - -export declare namespace PaymentRequestTrackingCategoriesItem { - export type Raw = string | TrackingCategory.Raw; -} diff --git a/src/serialization/resources/accounting/types/PaymentRequestType.ts b/src/serialization/resources/accounting/types/PaymentRequestType.ts deleted file mode 100644 index 2e427122b..000000000 --- a/src/serialization/resources/accounting/types/PaymentRequestType.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { PaymentTypeEnum } from "./PaymentTypeEnum"; - -export const PaymentRequestType: core.serialization.Schema< - serializers.accounting.PaymentRequestType.Raw, - Merge.accounting.PaymentRequestType -> = core.serialization.undiscriminatedUnion([PaymentTypeEnum, core.serialization.string()]); - -export declare namespace PaymentRequestType { - export type Raw = PaymentTypeEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/PaymentResponse.ts b/src/serialization/resources/accounting/types/PaymentResponse.ts deleted file mode 100644 index 9044c477d..000000000 --- a/src/serialization/resources/accounting/types/PaymentResponse.ts +++ /dev/null @@ -1,28 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { DebugModeLog } from "./DebugModeLog"; -import { ErrorValidationProblem } from "./ErrorValidationProblem"; -import { Payment } from "./Payment"; -import { WarningValidationProblem } from "./WarningValidationProblem"; - -export const PaymentResponse: core.serialization.ObjectSchema< - serializers.accounting.PaymentResponse.Raw, - Merge.accounting.PaymentResponse -> = core.serialization.object({ - model: Payment, - warnings: core.serialization.list(WarningValidationProblem), - errors: core.serialization.list(ErrorValidationProblem), - logs: core.serialization.list(DebugModeLog).optional(), -}); - -export declare namespace PaymentResponse { - export interface Raw { - model: Payment.Raw; - warnings: WarningValidationProblem.Raw[]; - errors: ErrorValidationProblem.Raw[]; - logs?: DebugModeLog.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/PaymentTerm.ts b/src/serialization/resources/accounting/types/PaymentTerm.ts deleted file mode 100644 index 075dc652e..000000000 --- a/src/serialization/resources/accounting/types/PaymentTerm.ts +++ /dev/null @@ -1,45 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { PaymentTermCompany } from "./PaymentTermCompany"; -import { RemoteData } from "./RemoteData"; - -export const PaymentTerm: core.serialization.ObjectSchema< - serializers.accounting.PaymentTerm.Raw, - Merge.accounting.PaymentTerm -> = core.serialization.object({ - id: core.serialization.string().optional(), - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - createdAt: core.serialization.property("created_at", core.serialization.date().optional()), - modifiedAt: core.serialization.property("modified_at", core.serialization.date().optional()), - name: core.serialization.string(), - isActive: core.serialization.property("is_active", core.serialization.boolean().optional()), - company: PaymentTermCompany.optional(), - daysUntilDue: core.serialization.property("days_until_due", core.serialization.number().optional()), - discountDays: core.serialization.property("discount_days", core.serialization.number().optional()), - remoteLastModifiedAt: core.serialization.property("remote_last_modified_at", core.serialization.date().optional()), - fieldMappings: core.serialization.property( - "field_mappings", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - remoteData: core.serialization.property("remote_data", core.serialization.list(RemoteData).optional()), -}); - -export declare namespace PaymentTerm { - export interface Raw { - id?: string | null; - remote_id?: string | null; - created_at?: string | null; - modified_at?: string | null; - name: string; - is_active?: boolean | null; - company?: PaymentTermCompany.Raw | null; - days_until_due?: number | null; - discount_days?: number | null; - remote_last_modified_at?: string | null; - field_mappings?: Record | null; - remote_data?: RemoteData.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/PaymentTermCompany.ts b/src/serialization/resources/accounting/types/PaymentTermCompany.ts deleted file mode 100644 index 599c89f4e..000000000 --- a/src/serialization/resources/accounting/types/PaymentTermCompany.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CompanyInfo } from "./CompanyInfo"; - -export const PaymentTermCompany: core.serialization.Schema< - serializers.accounting.PaymentTermCompany.Raw, - Merge.accounting.PaymentTermCompany -> = core.serialization.undiscriminatedUnion([core.serialization.string(), CompanyInfo]); - -export declare namespace PaymentTermCompany { - export type Raw = string | CompanyInfo.Raw; -} diff --git a/src/serialization/resources/accounting/types/PaymentTrackingCategoriesItem.ts b/src/serialization/resources/accounting/types/PaymentTrackingCategoriesItem.ts deleted file mode 100644 index 35d88d763..000000000 --- a/src/serialization/resources/accounting/types/PaymentTrackingCategoriesItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TrackingCategory } from "./TrackingCategory"; - -export const PaymentTrackingCategoriesItem: core.serialization.Schema< - serializers.accounting.PaymentTrackingCategoriesItem.Raw, - Merge.accounting.PaymentTrackingCategoriesItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), TrackingCategory]); - -export declare namespace PaymentTrackingCategoriesItem { - export type Raw = string | TrackingCategory.Raw; -} diff --git a/src/serialization/resources/accounting/types/PaymentType.ts b/src/serialization/resources/accounting/types/PaymentType.ts deleted file mode 100644 index 0eda7572a..000000000 --- a/src/serialization/resources/accounting/types/PaymentType.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { PaymentTypeEnum } from "./PaymentTypeEnum"; - -export const PaymentType: core.serialization.Schema< - serializers.accounting.PaymentType.Raw, - Merge.accounting.PaymentType -> = core.serialization.undiscriminatedUnion([PaymentTypeEnum, core.serialization.string()]); - -export declare namespace PaymentType { - export type Raw = PaymentTypeEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/PaymentTypeEnum.ts b/src/serialization/resources/accounting/types/PaymentTypeEnum.ts deleted file mode 100644 index 75ce3f9b1..000000000 --- a/src/serialization/resources/accounting/types/PaymentTypeEnum.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const PaymentTypeEnum: core.serialization.Schema< - serializers.accounting.PaymentTypeEnum.Raw, - Merge.accounting.PaymentTypeEnum -> = core.serialization.enum_(["ACCOUNTS_PAYABLE", "ACCOUNTS_RECEIVABLE"]); - -export declare namespace PaymentTypeEnum { - export type Raw = "ACCOUNTS_PAYABLE" | "ACCOUNTS_RECEIVABLE"; -} diff --git a/src/serialization/resources/accounting/types/PostingStatusEnum.ts b/src/serialization/resources/accounting/types/PostingStatusEnum.ts deleted file mode 100644 index 95698e05a..000000000 --- a/src/serialization/resources/accounting/types/PostingStatusEnum.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const PostingStatusEnum: core.serialization.Schema< - serializers.accounting.PostingStatusEnum.Raw, - Merge.accounting.PostingStatusEnum -> = core.serialization.enum_(["UNPOSTED", "POSTED"]); - -export declare namespace PostingStatusEnum { - export type Raw = "UNPOSTED" | "POSTED"; -} diff --git a/src/serialization/resources/accounting/types/Project.ts b/src/serialization/resources/accounting/types/Project.ts deleted file mode 100644 index 85c8c1643..000000000 --- a/src/serialization/resources/accounting/types/Project.ts +++ /dev/null @@ -1,40 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { ProjectCompany } from "./ProjectCompany"; -import { ProjectContact } from "./ProjectContact"; -import { RemoteData } from "./RemoteData"; - -export const Project: core.serialization.ObjectSchema = - core.serialization.object({ - id: core.serialization.string().optional(), - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - createdAt: core.serialization.property("created_at", core.serialization.date().optional()), - modifiedAt: core.serialization.property("modified_at", core.serialization.date().optional()), - name: core.serialization.string(), - isActive: core.serialization.property("is_active", core.serialization.boolean().optional()), - company: ProjectCompany.optional(), - contact: ProjectContact.optional(), - fieldMappings: core.serialization.property( - "field_mappings", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - remoteData: core.serialization.property("remote_data", core.serialization.list(RemoteData).optional()), - }); - -export declare namespace Project { - export interface Raw { - id?: string | null; - remote_id?: string | null; - created_at?: string | null; - modified_at?: string | null; - name: string; - is_active?: boolean | null; - company?: ProjectCompany.Raw | null; - contact?: ProjectContact.Raw | null; - field_mappings?: Record | null; - remote_data?: RemoteData.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/ProjectCompany.ts b/src/serialization/resources/accounting/types/ProjectCompany.ts deleted file mode 100644 index 8afe44dd8..000000000 --- a/src/serialization/resources/accounting/types/ProjectCompany.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CompanyInfo } from "./CompanyInfo"; - -export const ProjectCompany: core.serialization.Schema< - serializers.accounting.ProjectCompany.Raw, - Merge.accounting.ProjectCompany -> = core.serialization.undiscriminatedUnion([core.serialization.string(), CompanyInfo]); - -export declare namespace ProjectCompany { - export type Raw = string | CompanyInfo.Raw; -} diff --git a/src/serialization/resources/accounting/types/ProjectContact.ts b/src/serialization/resources/accounting/types/ProjectContact.ts deleted file mode 100644 index baf61f124..000000000 --- a/src/serialization/resources/accounting/types/ProjectContact.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Contact } from "./Contact"; - -export const ProjectContact: core.serialization.Schema< - serializers.accounting.ProjectContact.Raw, - Merge.accounting.ProjectContact -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Contact]); - -export declare namespace ProjectContact { - export type Raw = string | Contact.Raw; -} diff --git a/src/serialization/resources/accounting/types/PurchaseOrder.ts b/src/serialization/resources/accounting/types/PurchaseOrder.ts deleted file mode 100644 index d56c36d48..000000000 --- a/src/serialization/resources/accounting/types/PurchaseOrder.ts +++ /dev/null @@ -1,87 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { PurchaseOrderAccountingPeriod } from "./PurchaseOrderAccountingPeriod"; -import { PurchaseOrderCompany } from "./PurchaseOrderCompany"; -import { PurchaseOrderCurrency } from "./PurchaseOrderCurrency"; -import { PurchaseOrderDeliveryAddress } from "./PurchaseOrderDeliveryAddress"; -import { PurchaseOrderLineItem } from "./PurchaseOrderLineItem"; -import { PurchaseOrderPaymentTerm } from "./PurchaseOrderPaymentTerm"; -import { PurchaseOrderStatus } from "./PurchaseOrderStatus"; -import { PurchaseOrderTrackingCategoriesItem } from "./PurchaseOrderTrackingCategoriesItem"; -import { PurchaseOrderVendor } from "./PurchaseOrderVendor"; -import { RemoteData } from "./RemoteData"; -import { RemoteField } from "./RemoteField"; - -export const PurchaseOrder: core.serialization.ObjectSchema< - serializers.accounting.PurchaseOrder.Raw, - Merge.accounting.PurchaseOrder -> = core.serialization.object({ - id: core.serialization.string().optional(), - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - createdAt: core.serialization.property("created_at", core.serialization.date().optional()), - modifiedAt: core.serialization.property("modified_at", core.serialization.date().optional()), - status: PurchaseOrderStatus.optional(), - issueDate: core.serialization.property("issue_date", core.serialization.date().optional()), - purchaseOrderNumber: core.serialization.property("purchase_order_number", core.serialization.string().optional()), - deliveryDate: core.serialization.property("delivery_date", core.serialization.date().optional()), - deliveryAddress: core.serialization.property("delivery_address", PurchaseOrderDeliveryAddress.optional()), - customer: core.serialization.string().optional(), - vendor: PurchaseOrderVendor.optional(), - memo: core.serialization.string().optional(), - company: PurchaseOrderCompany.optional(), - totalAmount: core.serialization.property("total_amount", core.serialization.number().optional()), - currency: PurchaseOrderCurrency.optional(), - exchangeRate: core.serialization.property("exchange_rate", core.serialization.string().optional()), - paymentTerm: core.serialization.property("payment_term", PurchaseOrderPaymentTerm.optional()), - lineItems: core.serialization.property("line_items", core.serialization.list(PurchaseOrderLineItem).optional()), - inclusiveOfTax: core.serialization.property("inclusive_of_tax", core.serialization.boolean().optional()), - trackingCategories: core.serialization.property( - "tracking_categories", - core.serialization.list(PurchaseOrderTrackingCategoriesItem.optional()).optional(), - ), - accountingPeriod: core.serialization.property("accounting_period", PurchaseOrderAccountingPeriod.optional()), - remoteCreatedAt: core.serialization.property("remote_created_at", core.serialization.date().optional()), - remoteUpdatedAt: core.serialization.property("remote_updated_at", core.serialization.date().optional()), - remoteWasDeleted: core.serialization.property("remote_was_deleted", core.serialization.boolean().optional()), - fieldMappings: core.serialization.property( - "field_mappings", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - remoteData: core.serialization.property("remote_data", core.serialization.list(RemoteData).optional()), - remoteFields: core.serialization.property("remote_fields", core.serialization.list(RemoteField).optional()), -}); - -export declare namespace PurchaseOrder { - export interface Raw { - id?: string | null; - remote_id?: string | null; - created_at?: string | null; - modified_at?: string | null; - status?: PurchaseOrderStatus.Raw | null; - issue_date?: string | null; - purchase_order_number?: string | null; - delivery_date?: string | null; - delivery_address?: PurchaseOrderDeliveryAddress.Raw | null; - customer?: string | null; - vendor?: PurchaseOrderVendor.Raw | null; - memo?: string | null; - company?: PurchaseOrderCompany.Raw | null; - total_amount?: number | null; - currency?: PurchaseOrderCurrency.Raw | null; - exchange_rate?: string | null; - payment_term?: PurchaseOrderPaymentTerm.Raw | null; - line_items?: PurchaseOrderLineItem.Raw[] | null; - inclusive_of_tax?: boolean | null; - tracking_categories?: (PurchaseOrderTrackingCategoriesItem.Raw | null | undefined)[] | null; - accounting_period?: PurchaseOrderAccountingPeriod.Raw | null; - remote_created_at?: string | null; - remote_updated_at?: string | null; - remote_was_deleted?: boolean | null; - field_mappings?: Record | null; - remote_data?: RemoteData.Raw[] | null; - remote_fields?: RemoteField.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/PurchaseOrderAccountingPeriod.ts b/src/serialization/resources/accounting/types/PurchaseOrderAccountingPeriod.ts deleted file mode 100644 index acac12859..000000000 --- a/src/serialization/resources/accounting/types/PurchaseOrderAccountingPeriod.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { AccountingPeriod } from "./AccountingPeriod"; - -export const PurchaseOrderAccountingPeriod: core.serialization.Schema< - serializers.accounting.PurchaseOrderAccountingPeriod.Raw, - Merge.accounting.PurchaseOrderAccountingPeriod -> = core.serialization.undiscriminatedUnion([core.serialization.string(), AccountingPeriod]); - -export declare namespace PurchaseOrderAccountingPeriod { - export type Raw = string | AccountingPeriod.Raw; -} diff --git a/src/serialization/resources/accounting/types/PurchaseOrderCompany.ts b/src/serialization/resources/accounting/types/PurchaseOrderCompany.ts deleted file mode 100644 index 33f12aa21..000000000 --- a/src/serialization/resources/accounting/types/PurchaseOrderCompany.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CompanyInfo } from "./CompanyInfo"; - -export const PurchaseOrderCompany: core.serialization.Schema< - serializers.accounting.PurchaseOrderCompany.Raw, - Merge.accounting.PurchaseOrderCompany -> = core.serialization.undiscriminatedUnion([core.serialization.string(), CompanyInfo]); - -export declare namespace PurchaseOrderCompany { - export type Raw = string | CompanyInfo.Raw; -} diff --git a/src/serialization/resources/accounting/types/PurchaseOrderCurrency.ts b/src/serialization/resources/accounting/types/PurchaseOrderCurrency.ts deleted file mode 100644 index 38bcbb6ca..000000000 --- a/src/serialization/resources/accounting/types/PurchaseOrderCurrency.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TransactionCurrencyEnum } from "./TransactionCurrencyEnum"; - -export const PurchaseOrderCurrency: core.serialization.Schema< - serializers.accounting.PurchaseOrderCurrency.Raw, - Merge.accounting.PurchaseOrderCurrency -> = core.serialization.undiscriminatedUnion([TransactionCurrencyEnum, core.serialization.string()]); - -export declare namespace PurchaseOrderCurrency { - export type Raw = TransactionCurrencyEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/PurchaseOrderDeliveryAddress.ts b/src/serialization/resources/accounting/types/PurchaseOrderDeliveryAddress.ts deleted file mode 100644 index c9a4ce058..000000000 --- a/src/serialization/resources/accounting/types/PurchaseOrderDeliveryAddress.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Address } from "./Address"; - -export const PurchaseOrderDeliveryAddress: core.serialization.Schema< - serializers.accounting.PurchaseOrderDeliveryAddress.Raw, - Merge.accounting.PurchaseOrderDeliveryAddress -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Address]); - -export declare namespace PurchaseOrderDeliveryAddress { - export type Raw = string | Address.Raw; -} diff --git a/src/serialization/resources/accounting/types/PurchaseOrderLineItem.ts b/src/serialization/resources/accounting/types/PurchaseOrderLineItem.ts deleted file mode 100644 index 3690cd829..000000000 --- a/src/serialization/resources/accounting/types/PurchaseOrderLineItem.ts +++ /dev/null @@ -1,60 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { PurchaseOrderLineItemCurrency } from "./PurchaseOrderLineItemCurrency"; -import { PurchaseOrderLineItemItem } from "./PurchaseOrderLineItemItem"; -import { RemoteField } from "./RemoteField"; - -export const PurchaseOrderLineItem: core.serialization.ObjectSchema< - serializers.accounting.PurchaseOrderLineItem.Raw, - Merge.accounting.PurchaseOrderLineItem -> = core.serialization.object({ - id: core.serialization.string().optional(), - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - createdAt: core.serialization.property("created_at", core.serialization.date().optional()), - modifiedAt: core.serialization.property("modified_at", core.serialization.date().optional()), - description: core.serialization.string().optional(), - unitPrice: core.serialization.property("unit_price", core.serialization.number().optional()), - quantity: core.serialization.number().optional(), - item: PurchaseOrderLineItemItem.optional(), - account: core.serialization.string().optional(), - trackingCategory: core.serialization.property("tracking_category", core.serialization.string().optional()), - trackingCategories: core.serialization.property( - "tracking_categories", - core.serialization.list(core.serialization.string().optional()).optional(), - ), - taxAmount: core.serialization.property("tax_amount", core.serialization.string().optional()), - totalLineAmount: core.serialization.property("total_line_amount", core.serialization.string().optional()), - currency: PurchaseOrderLineItemCurrency.optional(), - taxRate: core.serialization.property("tax_rate", core.serialization.string().optional()), - exchangeRate: core.serialization.property("exchange_rate", core.serialization.string().optional()), - company: core.serialization.string().optional(), - remoteWasDeleted: core.serialization.property("remote_was_deleted", core.serialization.boolean().optional()), - remoteFields: core.serialization.property("remote_fields", core.serialization.list(RemoteField).optional()), -}); - -export declare namespace PurchaseOrderLineItem { - export interface Raw { - id?: string | null; - remote_id?: string | null; - created_at?: string | null; - modified_at?: string | null; - description?: string | null; - unit_price?: number | null; - quantity?: number | null; - item?: PurchaseOrderLineItemItem.Raw | null; - account?: string | null; - tracking_category?: string | null; - tracking_categories?: (string | null | undefined)[] | null; - tax_amount?: string | null; - total_line_amount?: string | null; - currency?: PurchaseOrderLineItemCurrency.Raw | null; - tax_rate?: string | null; - exchange_rate?: string | null; - company?: string | null; - remote_was_deleted?: boolean | null; - remote_fields?: RemoteField.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/PurchaseOrderLineItemCurrency.ts b/src/serialization/resources/accounting/types/PurchaseOrderLineItemCurrency.ts deleted file mode 100644 index f6f31c06a..000000000 --- a/src/serialization/resources/accounting/types/PurchaseOrderLineItemCurrency.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TransactionCurrencyEnum } from "./TransactionCurrencyEnum"; - -export const PurchaseOrderLineItemCurrency: core.serialization.Schema< - serializers.accounting.PurchaseOrderLineItemCurrency.Raw, - Merge.accounting.PurchaseOrderLineItemCurrency -> = core.serialization.undiscriminatedUnion([TransactionCurrencyEnum, core.serialization.string()]); - -export declare namespace PurchaseOrderLineItemCurrency { - export type Raw = TransactionCurrencyEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/PurchaseOrderLineItemItem.ts b/src/serialization/resources/accounting/types/PurchaseOrderLineItemItem.ts deleted file mode 100644 index e5148c0bd..000000000 --- a/src/serialization/resources/accounting/types/PurchaseOrderLineItemItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Item } from "./Item"; - -export const PurchaseOrderLineItemItem: core.serialization.Schema< - serializers.accounting.PurchaseOrderLineItemItem.Raw, - Merge.accounting.PurchaseOrderLineItemItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Item]); - -export declare namespace PurchaseOrderLineItemItem { - export type Raw = string | Item.Raw; -} diff --git a/src/serialization/resources/accounting/types/PurchaseOrderLineItemRequest.ts b/src/serialization/resources/accounting/types/PurchaseOrderLineItemRequest.ts deleted file mode 100644 index 3c39ba32d..000000000 --- a/src/serialization/resources/accounting/types/PurchaseOrderLineItemRequest.ts +++ /dev/null @@ -1,62 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { PurchaseOrderLineItemRequestCurrency } from "./PurchaseOrderLineItemRequestCurrency"; -import { PurchaseOrderLineItemRequestItem } from "./PurchaseOrderLineItemRequestItem"; -import { RemoteFieldRequest } from "./RemoteFieldRequest"; - -export const PurchaseOrderLineItemRequest: core.serialization.ObjectSchema< - serializers.accounting.PurchaseOrderLineItemRequest.Raw, - Merge.accounting.PurchaseOrderLineItemRequest -> = core.serialization.object({ - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - description: core.serialization.string().optional(), - unitPrice: core.serialization.property("unit_price", core.serialization.number().optional()), - quantity: core.serialization.number().optional(), - item: PurchaseOrderLineItemRequestItem.optional(), - account: core.serialization.string().optional(), - trackingCategory: core.serialization.property("tracking_category", core.serialization.string().optional()), - trackingCategories: core.serialization.property( - "tracking_categories", - core.serialization.list(core.serialization.string().optional()).optional(), - ), - taxAmount: core.serialization.property("tax_amount", core.serialization.string().optional()), - totalLineAmount: core.serialization.property("total_line_amount", core.serialization.string().optional()), - currency: PurchaseOrderLineItemRequestCurrency.optional(), - taxRate: core.serialization.property("tax_rate", core.serialization.string().optional()), - exchangeRate: core.serialization.property("exchange_rate", core.serialization.string().optional()), - company: core.serialization.string().optional(), - integrationParams: core.serialization.property( - "integration_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - linkedAccountParams: core.serialization.property( - "linked_account_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - remoteFields: core.serialization.property("remote_fields", core.serialization.list(RemoteFieldRequest).optional()), -}); - -export declare namespace PurchaseOrderLineItemRequest { - export interface Raw { - remote_id?: string | null; - description?: string | null; - unit_price?: number | null; - quantity?: number | null; - item?: PurchaseOrderLineItemRequestItem.Raw | null; - account?: string | null; - tracking_category?: string | null; - tracking_categories?: (string | null | undefined)[] | null; - tax_amount?: string | null; - total_line_amount?: string | null; - currency?: PurchaseOrderLineItemRequestCurrency.Raw | null; - tax_rate?: string | null; - exchange_rate?: string | null; - company?: string | null; - integration_params?: Record | null; - linked_account_params?: Record | null; - remote_fields?: RemoteFieldRequest.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/PurchaseOrderLineItemRequestCurrency.ts b/src/serialization/resources/accounting/types/PurchaseOrderLineItemRequestCurrency.ts deleted file mode 100644 index 3833ea50f..000000000 --- a/src/serialization/resources/accounting/types/PurchaseOrderLineItemRequestCurrency.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TransactionCurrencyEnum } from "./TransactionCurrencyEnum"; - -export const PurchaseOrderLineItemRequestCurrency: core.serialization.Schema< - serializers.accounting.PurchaseOrderLineItemRequestCurrency.Raw, - Merge.accounting.PurchaseOrderLineItemRequestCurrency -> = core.serialization.undiscriminatedUnion([TransactionCurrencyEnum, core.serialization.string()]); - -export declare namespace PurchaseOrderLineItemRequestCurrency { - export type Raw = TransactionCurrencyEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/PurchaseOrderLineItemRequestItem.ts b/src/serialization/resources/accounting/types/PurchaseOrderLineItemRequestItem.ts deleted file mode 100644 index 8238bd3f6..000000000 --- a/src/serialization/resources/accounting/types/PurchaseOrderLineItemRequestItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Item } from "./Item"; - -export const PurchaseOrderLineItemRequestItem: core.serialization.Schema< - serializers.accounting.PurchaseOrderLineItemRequestItem.Raw, - Merge.accounting.PurchaseOrderLineItemRequestItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Item]); - -export declare namespace PurchaseOrderLineItemRequestItem { - export type Raw = string | Item.Raw; -} diff --git a/src/serialization/resources/accounting/types/PurchaseOrderPaymentTerm.ts b/src/serialization/resources/accounting/types/PurchaseOrderPaymentTerm.ts deleted file mode 100644 index 0eab9d929..000000000 --- a/src/serialization/resources/accounting/types/PurchaseOrderPaymentTerm.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { PaymentTerm } from "./PaymentTerm"; - -export const PurchaseOrderPaymentTerm: core.serialization.Schema< - serializers.accounting.PurchaseOrderPaymentTerm.Raw, - Merge.accounting.PurchaseOrderPaymentTerm -> = core.serialization.undiscriminatedUnion([core.serialization.string(), PaymentTerm]); - -export declare namespace PurchaseOrderPaymentTerm { - export type Raw = string | PaymentTerm.Raw; -} diff --git a/src/serialization/resources/accounting/types/PurchaseOrderRequest.ts b/src/serialization/resources/accounting/types/PurchaseOrderRequest.ts deleted file mode 100644 index fd5015807..000000000 --- a/src/serialization/resources/accounting/types/PurchaseOrderRequest.ts +++ /dev/null @@ -1,73 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { PurchaseOrderLineItemRequest } from "./PurchaseOrderLineItemRequest"; -import { PurchaseOrderRequestCompany } from "./PurchaseOrderRequestCompany"; -import { PurchaseOrderRequestCurrency } from "./PurchaseOrderRequestCurrency"; -import { PurchaseOrderRequestDeliveryAddress } from "./PurchaseOrderRequestDeliveryAddress"; -import { PurchaseOrderRequestPaymentTerm } from "./PurchaseOrderRequestPaymentTerm"; -import { PurchaseOrderRequestStatus } from "./PurchaseOrderRequestStatus"; -import { PurchaseOrderRequestTrackingCategoriesItem } from "./PurchaseOrderRequestTrackingCategoriesItem"; -import { PurchaseOrderRequestVendor } from "./PurchaseOrderRequestVendor"; -import { RemoteFieldRequest } from "./RemoteFieldRequest"; - -export const PurchaseOrderRequest: core.serialization.ObjectSchema< - serializers.accounting.PurchaseOrderRequest.Raw, - Merge.accounting.PurchaseOrderRequest -> = core.serialization.object({ - status: PurchaseOrderRequestStatus.optional(), - issueDate: core.serialization.property("issue_date", core.serialization.date().optional()), - deliveryDate: core.serialization.property("delivery_date", core.serialization.date().optional()), - deliveryAddress: core.serialization.property("delivery_address", PurchaseOrderRequestDeliveryAddress.optional()), - customer: core.serialization.string().optional(), - vendor: PurchaseOrderRequestVendor.optional(), - memo: core.serialization.string().optional(), - company: PurchaseOrderRequestCompany.optional(), - totalAmount: core.serialization.property("total_amount", core.serialization.number().optional()), - paymentTerm: core.serialization.property("payment_term", PurchaseOrderRequestPaymentTerm.optional()), - currency: PurchaseOrderRequestCurrency.optional(), - inclusiveOfTax: core.serialization.property("inclusive_of_tax", core.serialization.boolean().optional()), - exchangeRate: core.serialization.property("exchange_rate", core.serialization.string().optional()), - trackingCategories: core.serialization.property( - "tracking_categories", - core.serialization.list(PurchaseOrderRequestTrackingCategoriesItem.optional()).optional(), - ), - lineItems: core.serialization.property( - "line_items", - core.serialization.list(PurchaseOrderLineItemRequest).optional(), - ), - integrationParams: core.serialization.property( - "integration_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - linkedAccountParams: core.serialization.property( - "linked_account_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - remoteFields: core.serialization.property("remote_fields", core.serialization.list(RemoteFieldRequest).optional()), -}); - -export declare namespace PurchaseOrderRequest { - export interface Raw { - status?: PurchaseOrderRequestStatus.Raw | null; - issue_date?: string | null; - delivery_date?: string | null; - delivery_address?: PurchaseOrderRequestDeliveryAddress.Raw | null; - customer?: string | null; - vendor?: PurchaseOrderRequestVendor.Raw | null; - memo?: string | null; - company?: PurchaseOrderRequestCompany.Raw | null; - total_amount?: number | null; - payment_term?: PurchaseOrderRequestPaymentTerm.Raw | null; - currency?: PurchaseOrderRequestCurrency.Raw | null; - inclusive_of_tax?: boolean | null; - exchange_rate?: string | null; - tracking_categories?: (PurchaseOrderRequestTrackingCategoriesItem.Raw | null | undefined)[] | null; - line_items?: PurchaseOrderLineItemRequest.Raw[] | null; - integration_params?: Record | null; - linked_account_params?: Record | null; - remote_fields?: RemoteFieldRequest.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/PurchaseOrderRequestCompany.ts b/src/serialization/resources/accounting/types/PurchaseOrderRequestCompany.ts deleted file mode 100644 index 02c7763c1..000000000 --- a/src/serialization/resources/accounting/types/PurchaseOrderRequestCompany.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CompanyInfo } from "./CompanyInfo"; - -export const PurchaseOrderRequestCompany: core.serialization.Schema< - serializers.accounting.PurchaseOrderRequestCompany.Raw, - Merge.accounting.PurchaseOrderRequestCompany -> = core.serialization.undiscriminatedUnion([core.serialization.string(), CompanyInfo]); - -export declare namespace PurchaseOrderRequestCompany { - export type Raw = string | CompanyInfo.Raw; -} diff --git a/src/serialization/resources/accounting/types/PurchaseOrderRequestCurrency.ts b/src/serialization/resources/accounting/types/PurchaseOrderRequestCurrency.ts deleted file mode 100644 index 9ba3b359d..000000000 --- a/src/serialization/resources/accounting/types/PurchaseOrderRequestCurrency.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TransactionCurrencyEnum } from "./TransactionCurrencyEnum"; - -export const PurchaseOrderRequestCurrency: core.serialization.Schema< - serializers.accounting.PurchaseOrderRequestCurrency.Raw, - Merge.accounting.PurchaseOrderRequestCurrency -> = core.serialization.undiscriminatedUnion([TransactionCurrencyEnum, core.serialization.string()]); - -export declare namespace PurchaseOrderRequestCurrency { - export type Raw = TransactionCurrencyEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/PurchaseOrderRequestDeliveryAddress.ts b/src/serialization/resources/accounting/types/PurchaseOrderRequestDeliveryAddress.ts deleted file mode 100644 index 0ab428fb5..000000000 --- a/src/serialization/resources/accounting/types/PurchaseOrderRequestDeliveryAddress.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Address } from "./Address"; - -export const PurchaseOrderRequestDeliveryAddress: core.serialization.Schema< - serializers.accounting.PurchaseOrderRequestDeliveryAddress.Raw, - Merge.accounting.PurchaseOrderRequestDeliveryAddress -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Address]); - -export declare namespace PurchaseOrderRequestDeliveryAddress { - export type Raw = string | Address.Raw; -} diff --git a/src/serialization/resources/accounting/types/PurchaseOrderRequestPaymentTerm.ts b/src/serialization/resources/accounting/types/PurchaseOrderRequestPaymentTerm.ts deleted file mode 100644 index 5163b3850..000000000 --- a/src/serialization/resources/accounting/types/PurchaseOrderRequestPaymentTerm.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { PaymentTerm } from "./PaymentTerm"; - -export const PurchaseOrderRequestPaymentTerm: core.serialization.Schema< - serializers.accounting.PurchaseOrderRequestPaymentTerm.Raw, - Merge.accounting.PurchaseOrderRequestPaymentTerm -> = core.serialization.undiscriminatedUnion([core.serialization.string(), PaymentTerm]); - -export declare namespace PurchaseOrderRequestPaymentTerm { - export type Raw = string | PaymentTerm.Raw; -} diff --git a/src/serialization/resources/accounting/types/PurchaseOrderRequestStatus.ts b/src/serialization/resources/accounting/types/PurchaseOrderRequestStatus.ts deleted file mode 100644 index 04ea90dfc..000000000 --- a/src/serialization/resources/accounting/types/PurchaseOrderRequestStatus.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { PurchaseOrderStatusEnum } from "./PurchaseOrderStatusEnum"; - -export const PurchaseOrderRequestStatus: core.serialization.Schema< - serializers.accounting.PurchaseOrderRequestStatus.Raw, - Merge.accounting.PurchaseOrderRequestStatus -> = core.serialization.undiscriminatedUnion([PurchaseOrderStatusEnum, core.serialization.string()]); - -export declare namespace PurchaseOrderRequestStatus { - export type Raw = PurchaseOrderStatusEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/PurchaseOrderRequestTrackingCategoriesItem.ts b/src/serialization/resources/accounting/types/PurchaseOrderRequestTrackingCategoriesItem.ts deleted file mode 100644 index 0e38ce5cf..000000000 --- a/src/serialization/resources/accounting/types/PurchaseOrderRequestTrackingCategoriesItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TrackingCategory } from "./TrackingCategory"; - -export const PurchaseOrderRequestTrackingCategoriesItem: core.serialization.Schema< - serializers.accounting.PurchaseOrderRequestTrackingCategoriesItem.Raw, - Merge.accounting.PurchaseOrderRequestTrackingCategoriesItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), TrackingCategory]); - -export declare namespace PurchaseOrderRequestTrackingCategoriesItem { - export type Raw = string | TrackingCategory.Raw; -} diff --git a/src/serialization/resources/accounting/types/PurchaseOrderRequestVendor.ts b/src/serialization/resources/accounting/types/PurchaseOrderRequestVendor.ts deleted file mode 100644 index 8ae65faf5..000000000 --- a/src/serialization/resources/accounting/types/PurchaseOrderRequestVendor.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Contact } from "./Contact"; - -export const PurchaseOrderRequestVendor: core.serialization.Schema< - serializers.accounting.PurchaseOrderRequestVendor.Raw, - Merge.accounting.PurchaseOrderRequestVendor -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Contact]); - -export declare namespace PurchaseOrderRequestVendor { - export type Raw = string | Contact.Raw; -} diff --git a/src/serialization/resources/accounting/types/PurchaseOrderResponse.ts b/src/serialization/resources/accounting/types/PurchaseOrderResponse.ts deleted file mode 100644 index 1a9a80eb9..000000000 --- a/src/serialization/resources/accounting/types/PurchaseOrderResponse.ts +++ /dev/null @@ -1,28 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { DebugModeLog } from "./DebugModeLog"; -import { ErrorValidationProblem } from "./ErrorValidationProblem"; -import { PurchaseOrder } from "./PurchaseOrder"; -import { WarningValidationProblem } from "./WarningValidationProblem"; - -export const PurchaseOrderResponse: core.serialization.ObjectSchema< - serializers.accounting.PurchaseOrderResponse.Raw, - Merge.accounting.PurchaseOrderResponse -> = core.serialization.object({ - model: PurchaseOrder, - warnings: core.serialization.list(WarningValidationProblem), - errors: core.serialization.list(ErrorValidationProblem), - logs: core.serialization.list(DebugModeLog).optional(), -}); - -export declare namespace PurchaseOrderResponse { - export interface Raw { - model: PurchaseOrder.Raw; - warnings: WarningValidationProblem.Raw[]; - errors: ErrorValidationProblem.Raw[]; - logs?: DebugModeLog.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/PurchaseOrderStatus.ts b/src/serialization/resources/accounting/types/PurchaseOrderStatus.ts deleted file mode 100644 index c61280216..000000000 --- a/src/serialization/resources/accounting/types/PurchaseOrderStatus.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { PurchaseOrderStatusEnum } from "./PurchaseOrderStatusEnum"; - -export const PurchaseOrderStatus: core.serialization.Schema< - serializers.accounting.PurchaseOrderStatus.Raw, - Merge.accounting.PurchaseOrderStatus -> = core.serialization.undiscriminatedUnion([PurchaseOrderStatusEnum, core.serialization.string()]); - -export declare namespace PurchaseOrderStatus { - export type Raw = PurchaseOrderStatusEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/PurchaseOrderStatusEnum.ts b/src/serialization/resources/accounting/types/PurchaseOrderStatusEnum.ts deleted file mode 100644 index 89f2f0322..000000000 --- a/src/serialization/resources/accounting/types/PurchaseOrderStatusEnum.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const PurchaseOrderStatusEnum: core.serialization.Schema< - serializers.accounting.PurchaseOrderStatusEnum.Raw, - Merge.accounting.PurchaseOrderStatusEnum -> = core.serialization.enum_(["DRAFT", "SUBMITTED", "AUTHORIZED", "BILLED", "DELETED"]); - -export declare namespace PurchaseOrderStatusEnum { - export type Raw = "DRAFT" | "SUBMITTED" | "AUTHORIZED" | "BILLED" | "DELETED"; -} diff --git a/src/serialization/resources/accounting/types/PurchaseOrderTrackingCategoriesItem.ts b/src/serialization/resources/accounting/types/PurchaseOrderTrackingCategoriesItem.ts deleted file mode 100644 index 82c42e06b..000000000 --- a/src/serialization/resources/accounting/types/PurchaseOrderTrackingCategoriesItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TrackingCategory } from "./TrackingCategory"; - -export const PurchaseOrderTrackingCategoriesItem: core.serialization.Schema< - serializers.accounting.PurchaseOrderTrackingCategoriesItem.Raw, - Merge.accounting.PurchaseOrderTrackingCategoriesItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), TrackingCategory]); - -export declare namespace PurchaseOrderTrackingCategoriesItem { - export type Raw = string | TrackingCategory.Raw; -} diff --git a/src/serialization/resources/accounting/types/PurchaseOrderVendor.ts b/src/serialization/resources/accounting/types/PurchaseOrderVendor.ts deleted file mode 100644 index e72fcdfe0..000000000 --- a/src/serialization/resources/accounting/types/PurchaseOrderVendor.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Contact } from "./Contact"; - -export const PurchaseOrderVendor: core.serialization.Schema< - serializers.accounting.PurchaseOrderVendor.Raw, - Merge.accounting.PurchaseOrderVendor -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Contact]); - -export declare namespace PurchaseOrderVendor { - export type Raw = string | Contact.Raw; -} diff --git a/src/serialization/resources/accounting/types/RemoteData.ts b/src/serialization/resources/accounting/types/RemoteData.ts deleted file mode 100644 index 8f9583912..000000000 --- a/src/serialization/resources/accounting/types/RemoteData.ts +++ /dev/null @@ -1,20 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const RemoteData: core.serialization.ObjectSchema< - serializers.accounting.RemoteData.Raw, - Merge.accounting.RemoteData -> = core.serialization.object({ - path: core.serialization.string(), - data: core.serialization.unknown().optional(), -}); - -export declare namespace RemoteData { - export interface Raw { - path: string; - data?: unknown | null; - } -} diff --git a/src/serialization/resources/accounting/types/RemoteEndpointInfo.ts b/src/serialization/resources/accounting/types/RemoteEndpointInfo.ts deleted file mode 100644 index 35841c4da..000000000 --- a/src/serialization/resources/accounting/types/RemoteEndpointInfo.ts +++ /dev/null @@ -1,25 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const RemoteEndpointInfo: core.serialization.ObjectSchema< - serializers.accounting.RemoteEndpointInfo.Raw, - Merge.accounting.RemoteEndpointInfo -> = core.serialization.object({ - method: core.serialization.string(), - urlPath: core.serialization.property("url_path", core.serialization.string()), - fieldTraversalPath: core.serialization.property( - "field_traversal_path", - core.serialization.list(core.serialization.unknown()), - ), -}); - -export declare namespace RemoteEndpointInfo { - export interface Raw { - method: string; - url_path: string; - field_traversal_path: unknown[]; - } -} diff --git a/src/serialization/resources/accounting/types/RemoteField.ts b/src/serialization/resources/accounting/types/RemoteField.ts deleted file mode 100644 index 1f35b5312..000000000 --- a/src/serialization/resources/accounting/types/RemoteField.ts +++ /dev/null @@ -1,21 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { RemoteFieldRemoteFieldClass } from "./RemoteFieldRemoteFieldClass"; - -export const RemoteField: core.serialization.ObjectSchema< - serializers.accounting.RemoteField.Raw, - Merge.accounting.RemoteField -> = core.serialization.object({ - remoteFieldClass: core.serialization.property("remote_field_class", RemoteFieldRemoteFieldClass), - value: core.serialization.unknown().optional(), -}); - -export declare namespace RemoteField { - export interface Raw { - remote_field_class: RemoteFieldRemoteFieldClass.Raw; - value?: unknown | null; - } -} diff --git a/src/serialization/resources/accounting/types/RemoteFieldApi.ts b/src/serialization/resources/accounting/types/RemoteFieldApi.ts deleted file mode 100644 index 5d37bb44c..000000000 --- a/src/serialization/resources/accounting/types/RemoteFieldApi.ts +++ /dev/null @@ -1,34 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { AdvancedMetadata } from "./AdvancedMetadata"; -import { RemoteEndpointInfo } from "./RemoteEndpointInfo"; -import { RemoteFieldApiCoverage } from "./RemoteFieldApiCoverage"; - -export const RemoteFieldApi: core.serialization.ObjectSchema< - serializers.accounting.RemoteFieldApi.Raw, - Merge.accounting.RemoteFieldApi -> = core.serialization.object({ - schema: core.serialization.record(core.serialization.string(), core.serialization.unknown()), - remoteKeyName: core.serialization.property("remote_key_name", core.serialization.string()), - remoteEndpointInfo: core.serialization.property("remote_endpoint_info", RemoteEndpointInfo), - exampleValues: core.serialization.property( - "example_values", - core.serialization.list(core.serialization.unknown()).optional(), - ), - advancedMetadata: core.serialization.property("advanced_metadata", AdvancedMetadata.optional()), - coverage: RemoteFieldApiCoverage.optional(), -}); - -export declare namespace RemoteFieldApi { - export interface Raw { - schema: Record; - remote_key_name: string; - remote_endpoint_info: RemoteEndpointInfo.Raw; - example_values?: unknown[] | null; - advanced_metadata?: AdvancedMetadata.Raw | null; - coverage?: RemoteFieldApiCoverage.Raw | null; - } -} diff --git a/src/serialization/resources/accounting/types/RemoteFieldApiCoverage.ts b/src/serialization/resources/accounting/types/RemoteFieldApiCoverage.ts deleted file mode 100644 index 255d9789f..000000000 --- a/src/serialization/resources/accounting/types/RemoteFieldApiCoverage.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const RemoteFieldApiCoverage: core.serialization.Schema< - serializers.accounting.RemoteFieldApiCoverage.Raw, - Merge.accounting.RemoteFieldApiCoverage -> = core.serialization.undiscriminatedUnion([core.serialization.number(), core.serialization.number()]); - -export declare namespace RemoteFieldApiCoverage { - export type Raw = number | number; -} diff --git a/src/serialization/resources/accounting/types/RemoteFieldApiResponse.ts b/src/serialization/resources/accounting/types/RemoteFieldApiResponse.ts deleted file mode 100644 index 8b1acd25b..000000000 --- a/src/serialization/resources/accounting/types/RemoteFieldApiResponse.ts +++ /dev/null @@ -1,82 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { RemoteFieldApi } from "./RemoteFieldApi"; - -export const RemoteFieldApiResponse: core.serialization.ObjectSchema< - serializers.accounting.RemoteFieldApiResponse.Raw, - Merge.accounting.RemoteFieldApiResponse -> = core.serialization.object({ - account: core.serialization.property("Account", core.serialization.list(RemoteFieldApi).optional()), - accountingAttachment: core.serialization.property( - "AccountingAttachment", - core.serialization.list(RemoteFieldApi).optional(), - ), - balanceSheet: core.serialization.property("BalanceSheet", core.serialization.list(RemoteFieldApi).optional()), - cashFlowStatement: core.serialization.property( - "CashFlowStatement", - core.serialization.list(RemoteFieldApi).optional(), - ), - companyInfo: core.serialization.property("CompanyInfo", core.serialization.list(RemoteFieldApi).optional()), - contact: core.serialization.property("Contact", core.serialization.list(RemoteFieldApi).optional()), - incomeStatement: core.serialization.property("IncomeStatement", core.serialization.list(RemoteFieldApi).optional()), - creditNote: core.serialization.property("CreditNote", core.serialization.list(RemoteFieldApi).optional()), - item: core.serialization.property("Item", core.serialization.list(RemoteFieldApi).optional()), - purchaseOrder: core.serialization.property("PurchaseOrder", core.serialization.list(RemoteFieldApi).optional()), - trackingCategory: core.serialization.property( - "TrackingCategory", - core.serialization.list(RemoteFieldApi).optional(), - ), - journalEntry: core.serialization.property("JournalEntry", core.serialization.list(RemoteFieldApi).optional()), - taxRate: core.serialization.property("TaxRate", core.serialization.list(RemoteFieldApi).optional()), - invoice: core.serialization.property("Invoice", core.serialization.list(RemoteFieldApi).optional()), - payment: core.serialization.property("Payment", core.serialization.list(RemoteFieldApi).optional()), - expense: core.serialization.property("Expense", core.serialization.list(RemoteFieldApi).optional()), - vendorCredit: core.serialization.property("VendorCredit", core.serialization.list(RemoteFieldApi).optional()), - transaction: core.serialization.property("Transaction", core.serialization.list(RemoteFieldApi).optional()), - accountingPeriod: core.serialization.property( - "AccountingPeriod", - core.serialization.list(RemoteFieldApi).optional(), - ), - generalLedgerTransaction: core.serialization.property( - "GeneralLedgerTransaction", - core.serialization.list(RemoteFieldApi).optional(), - ), - bankFeedAccount: core.serialization.property("BankFeedAccount", core.serialization.list(RemoteFieldApi).optional()), - employee: core.serialization.property("Employee", core.serialization.list(RemoteFieldApi).optional()), - paymentMethod: core.serialization.property("PaymentMethod", core.serialization.list(RemoteFieldApi).optional()), - project: core.serialization.property("Project", core.serialization.list(RemoteFieldApi).optional()), - paymentTerm: core.serialization.property("PaymentTerm", core.serialization.list(RemoteFieldApi).optional()), -}); - -export declare namespace RemoteFieldApiResponse { - export interface Raw { - Account?: RemoteFieldApi.Raw[] | null; - AccountingAttachment?: RemoteFieldApi.Raw[] | null; - BalanceSheet?: RemoteFieldApi.Raw[] | null; - CashFlowStatement?: RemoteFieldApi.Raw[] | null; - CompanyInfo?: RemoteFieldApi.Raw[] | null; - Contact?: RemoteFieldApi.Raw[] | null; - IncomeStatement?: RemoteFieldApi.Raw[] | null; - CreditNote?: RemoteFieldApi.Raw[] | null; - Item?: RemoteFieldApi.Raw[] | null; - PurchaseOrder?: RemoteFieldApi.Raw[] | null; - TrackingCategory?: RemoteFieldApi.Raw[] | null; - JournalEntry?: RemoteFieldApi.Raw[] | null; - TaxRate?: RemoteFieldApi.Raw[] | null; - Invoice?: RemoteFieldApi.Raw[] | null; - Payment?: RemoteFieldApi.Raw[] | null; - Expense?: RemoteFieldApi.Raw[] | null; - VendorCredit?: RemoteFieldApi.Raw[] | null; - Transaction?: RemoteFieldApi.Raw[] | null; - AccountingPeriod?: RemoteFieldApi.Raw[] | null; - GeneralLedgerTransaction?: RemoteFieldApi.Raw[] | null; - BankFeedAccount?: RemoteFieldApi.Raw[] | null; - Employee?: RemoteFieldApi.Raw[] | null; - PaymentMethod?: RemoteFieldApi.Raw[] | null; - Project?: RemoteFieldApi.Raw[] | null; - PaymentTerm?: RemoteFieldApi.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/RemoteFieldClass.ts b/src/serialization/resources/accounting/types/RemoteFieldClass.ts deleted file mode 100644 index 61f303a1d..000000000 --- a/src/serialization/resources/accounting/types/RemoteFieldClass.ts +++ /dev/null @@ -1,44 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { FieldFormatEnum } from "./FieldFormatEnum"; -import { FieldTypeEnum } from "./FieldTypeEnum"; -import { ItemSchema } from "./ItemSchema"; - -export const RemoteFieldClass: core.serialization.ObjectSchema< - serializers.accounting.RemoteFieldClass.Raw, - Merge.accounting.RemoteFieldClass -> = core.serialization.object({ - id: core.serialization.string().optional(), - displayName: core.serialization.property("display_name", core.serialization.string().optional()), - remoteKeyName: core.serialization.property("remote_key_name", core.serialization.string().optional()), - description: core.serialization.string().optional(), - isCustom: core.serialization.property("is_custom", core.serialization.boolean().optional()), - isCommonModelField: core.serialization.property("is_common_model_field", core.serialization.boolean().optional()), - isRequired: core.serialization.property("is_required", core.serialization.boolean().optional()), - fieldType: core.serialization.property("field_type", FieldTypeEnum.optional()), - fieldFormat: core.serialization.property("field_format", FieldFormatEnum.optional()), - fieldChoices: core.serialization.property( - "field_choices", - core.serialization.list(core.serialization.string()).optional(), - ), - itemSchema: core.serialization.property("item_schema", ItemSchema.optional()), -}); - -export declare namespace RemoteFieldClass { - export interface Raw { - id?: string | null; - display_name?: string | null; - remote_key_name?: string | null; - description?: string | null; - is_custom?: boolean | null; - is_common_model_field?: boolean | null; - is_required?: boolean | null; - field_type?: FieldTypeEnum.Raw | null; - field_format?: FieldFormatEnum.Raw | null; - field_choices?: string[] | null; - item_schema?: ItemSchema.Raw | null; - } -} diff --git a/src/serialization/resources/accounting/types/RemoteFieldRemoteFieldClass.ts b/src/serialization/resources/accounting/types/RemoteFieldRemoteFieldClass.ts deleted file mode 100644 index b92f0b411..000000000 --- a/src/serialization/resources/accounting/types/RemoteFieldRemoteFieldClass.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { RemoteFieldClass } from "./RemoteFieldClass"; - -export const RemoteFieldRemoteFieldClass: core.serialization.Schema< - serializers.accounting.RemoteFieldRemoteFieldClass.Raw, - Merge.accounting.RemoteFieldRemoteFieldClass -> = core.serialization.undiscriminatedUnion([core.serialization.string(), RemoteFieldClass]); - -export declare namespace RemoteFieldRemoteFieldClass { - export type Raw = string | RemoteFieldClass.Raw; -} diff --git a/src/serialization/resources/accounting/types/RemoteFieldRequest.ts b/src/serialization/resources/accounting/types/RemoteFieldRequest.ts deleted file mode 100644 index 9ccdfd7b5..000000000 --- a/src/serialization/resources/accounting/types/RemoteFieldRequest.ts +++ /dev/null @@ -1,21 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { RemoteFieldRequestRemoteFieldClass } from "./RemoteFieldRequestRemoteFieldClass"; - -export const RemoteFieldRequest: core.serialization.ObjectSchema< - serializers.accounting.RemoteFieldRequest.Raw, - Merge.accounting.RemoteFieldRequest -> = core.serialization.object({ - remoteFieldClass: core.serialization.property("remote_field_class", RemoteFieldRequestRemoteFieldClass), - value: core.serialization.unknown().optional(), -}); - -export declare namespace RemoteFieldRequest { - export interface Raw { - remote_field_class: RemoteFieldRequestRemoteFieldClass.Raw; - value?: unknown | null; - } -} diff --git a/src/serialization/resources/accounting/types/RemoteFieldRequestRemoteFieldClass.ts b/src/serialization/resources/accounting/types/RemoteFieldRequestRemoteFieldClass.ts deleted file mode 100644 index e396fb7de..000000000 --- a/src/serialization/resources/accounting/types/RemoteFieldRequestRemoteFieldClass.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { RemoteFieldClass } from "./RemoteFieldClass"; - -export const RemoteFieldRequestRemoteFieldClass: core.serialization.Schema< - serializers.accounting.RemoteFieldRequestRemoteFieldClass.Raw, - Merge.accounting.RemoteFieldRequestRemoteFieldClass -> = core.serialization.undiscriminatedUnion([core.serialization.string(), RemoteFieldClass]); - -export declare namespace RemoteFieldRequestRemoteFieldClass { - export type Raw = string | RemoteFieldClass.Raw; -} diff --git a/src/serialization/resources/accounting/types/RemoteKey.ts b/src/serialization/resources/accounting/types/RemoteKey.ts deleted file mode 100644 index 7b8c03511..000000000 --- a/src/serialization/resources/accounting/types/RemoteKey.ts +++ /dev/null @@ -1,20 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const RemoteKey: core.serialization.ObjectSchema< - serializers.accounting.RemoteKey.Raw, - Merge.accounting.RemoteKey -> = core.serialization.object({ - name: core.serialization.string(), - key: core.serialization.string(), -}); - -export declare namespace RemoteKey { - export interface Raw { - name: string; - key: string; - } -} diff --git a/src/serialization/resources/accounting/types/RemoteResponse.ts b/src/serialization/resources/accounting/types/RemoteResponse.ts deleted file mode 100644 index 50f57c36e..000000000 --- a/src/serialization/resources/accounting/types/RemoteResponse.ts +++ /dev/null @@ -1,34 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { ResponseTypeEnum } from "./ResponseTypeEnum"; - -export const RemoteResponse: core.serialization.ObjectSchema< - serializers.accounting.RemoteResponse.Raw, - Merge.accounting.RemoteResponse -> = core.serialization.object({ - method: core.serialization.string(), - path: core.serialization.string(), - status: core.serialization.number(), - response: core.serialization.unknown(), - responseHeaders: core.serialization.property( - "response_headers", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - responseType: core.serialization.property("response_type", ResponseTypeEnum.optional()), - headers: core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), -}); - -export declare namespace RemoteResponse { - export interface Raw { - method: string; - path: string; - status: number; - response?: unknown; - response_headers?: Record | null; - response_type?: ResponseTypeEnum.Raw | null; - headers?: Record | null; - } -} diff --git a/src/serialization/resources/accounting/types/ReportItem.ts b/src/serialization/resources/accounting/types/ReportItem.ts deleted file mode 100644 index 2824188d8..000000000 --- a/src/serialization/resources/accounting/types/ReportItem.ts +++ /dev/null @@ -1,37 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const ReportItem: core.serialization.ObjectSchema< - serializers.accounting.ReportItem.Raw, - Merge.accounting.ReportItem -> = core.serialization.object({ - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - createdAt: core.serialization.property("created_at", core.serialization.date().optional()), - modifiedAt: core.serialization.property("modified_at", core.serialization.date().optional()), - name: core.serialization.string().optional(), - value: core.serialization.number().optional(), - subItems: core.serialization.property( - "sub_items", - core.serialization - .list(core.serialization.record(core.serialization.string(), core.serialization.unknown())) - .optional(), - ), - company: core.serialization.string().optional(), - remoteWasDeleted: core.serialization.property("remote_was_deleted", core.serialization.boolean().optional()), -}); - -export declare namespace ReportItem { - export interface Raw { - remote_id?: string | null; - created_at?: string | null; - modified_at?: string | null; - name?: string | null; - value?: number | null; - sub_items?: Record[] | null; - company?: string | null; - remote_was_deleted?: boolean | null; - } -} diff --git a/src/serialization/resources/accounting/types/RequestFormatEnum.ts b/src/serialization/resources/accounting/types/RequestFormatEnum.ts deleted file mode 100644 index 12aa26135..000000000 --- a/src/serialization/resources/accounting/types/RequestFormatEnum.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const RequestFormatEnum: core.serialization.Schema< - serializers.accounting.RequestFormatEnum.Raw, - Merge.accounting.RequestFormatEnum -> = core.serialization.enum_(["JSON", "XML", "MULTIPART"]); - -export declare namespace RequestFormatEnum { - export type Raw = "JSON" | "XML" | "MULTIPART"; -} diff --git a/src/serialization/resources/accounting/types/ResponseTypeEnum.ts b/src/serialization/resources/accounting/types/ResponseTypeEnum.ts deleted file mode 100644 index c98560253..000000000 --- a/src/serialization/resources/accounting/types/ResponseTypeEnum.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const ResponseTypeEnum: core.serialization.Schema< - serializers.accounting.ResponseTypeEnum.Raw, - Merge.accounting.ResponseTypeEnum -> = core.serialization.enum_(["JSON", "BASE64_GZIP"]); - -export declare namespace ResponseTypeEnum { - export type Raw = "JSON" | "BASE64_GZIP"; -} diff --git a/src/serialization/resources/accounting/types/RoleEnum.ts b/src/serialization/resources/accounting/types/RoleEnum.ts deleted file mode 100644 index 20190f6cc..000000000 --- a/src/serialization/resources/accounting/types/RoleEnum.ts +++ /dev/null @@ -1,12 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const RoleEnum: core.serialization.Schema = - core.serialization.enum_(["ADMIN", "DEVELOPER", "MEMBER", "API", "SYSTEM", "MERGE_TEAM"]); - -export declare namespace RoleEnum { - export type Raw = "ADMIN" | "DEVELOPER" | "MEMBER" | "API" | "SYSTEM" | "MERGE_TEAM"; -} diff --git a/src/serialization/resources/accounting/types/SelectiveSyncConfigurationsUsageEnum.ts b/src/serialization/resources/accounting/types/SelectiveSyncConfigurationsUsageEnum.ts deleted file mode 100644 index 3e964aa9b..000000000 --- a/src/serialization/resources/accounting/types/SelectiveSyncConfigurationsUsageEnum.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const SelectiveSyncConfigurationsUsageEnum: core.serialization.Schema< - serializers.accounting.SelectiveSyncConfigurationsUsageEnum.Raw, - Merge.accounting.SelectiveSyncConfigurationsUsageEnum -> = core.serialization.enum_(["IN_NEXT_SYNC", "IN_LAST_SYNC"]); - -export declare namespace SelectiveSyncConfigurationsUsageEnum { - export type Raw = "IN_NEXT_SYNC" | "IN_LAST_SYNC"; -} diff --git a/src/serialization/resources/accounting/types/Status7D1Enum.ts b/src/serialization/resources/accounting/types/Status7D1Enum.ts deleted file mode 100644 index 3daf936f2..000000000 --- a/src/serialization/resources/accounting/types/Status7D1Enum.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const Status7D1Enum: core.serialization.Schema< - serializers.accounting.Status7D1Enum.Raw, - Merge.accounting.Status7D1Enum -> = core.serialization.enum_(["ACTIVE", "ARCHIVED"]); - -export declare namespace Status7D1Enum { - export type Raw = "ACTIVE" | "ARCHIVED"; -} diff --git a/src/serialization/resources/accounting/types/Status895Enum.ts b/src/serialization/resources/accounting/types/Status895Enum.ts deleted file mode 100644 index 9190af9a3..000000000 --- a/src/serialization/resources/accounting/types/Status895Enum.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const Status895Enum: core.serialization.Schema< - serializers.accounting.Status895Enum.Raw, - Merge.accounting.Status895Enum -> = core.serialization.enum_(["ACTIVE", "INACTIVE"]); - -export declare namespace Status895Enum { - export type Raw = "ACTIVE" | "INACTIVE"; -} diff --git a/src/serialization/resources/accounting/types/StatusFd5Enum.ts b/src/serialization/resources/accounting/types/StatusFd5Enum.ts deleted file mode 100644 index 3af9abc58..000000000 --- a/src/serialization/resources/accounting/types/StatusFd5Enum.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const StatusFd5Enum: core.serialization.Schema< - serializers.accounting.StatusFd5Enum.Raw, - Merge.accounting.StatusFd5Enum -> = core.serialization.enum_(["SYNCING", "DONE", "FAILED", "DISABLED", "PAUSED", "PARTIALLY_SYNCED"]); - -export declare namespace StatusFd5Enum { - export type Raw = "SYNCING" | "DONE" | "FAILED" | "DISABLED" | "PAUSED" | "PARTIALLY_SYNCED"; -} diff --git a/src/serialization/resources/accounting/types/SyncStatus.ts b/src/serialization/resources/accounting/types/SyncStatus.ts deleted file mode 100644 index 8e1575ef1..000000000 --- a/src/serialization/resources/accounting/types/SyncStatus.ts +++ /dev/null @@ -1,40 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { LastSyncResultEnum } from "./LastSyncResultEnum"; -import { SelectiveSyncConfigurationsUsageEnum } from "./SelectiveSyncConfigurationsUsageEnum"; -import { SyncStatusStatus } from "./SyncStatusStatus"; - -export const SyncStatus: core.serialization.ObjectSchema< - serializers.accounting.SyncStatus.Raw, - Merge.accounting.SyncStatus -> = core.serialization.object({ - modelName: core.serialization.property("model_name", core.serialization.string()), - modelId: core.serialization.property("model_id", core.serialization.string()), - lastSyncStart: core.serialization.property("last_sync_start", core.serialization.date().optional()), - nextSyncStart: core.serialization.property("next_sync_start", core.serialization.date().optional()), - lastSyncResult: core.serialization.property("last_sync_result", LastSyncResultEnum.optional()), - lastSyncFinished: core.serialization.property("last_sync_finished", core.serialization.date().optional()), - status: SyncStatusStatus, - isInitialSync: core.serialization.property("is_initial_sync", core.serialization.boolean()), - selectiveSyncConfigurationsUsage: core.serialization.property( - "selective_sync_configurations_usage", - SelectiveSyncConfigurationsUsageEnum.optional(), - ), -}); - -export declare namespace SyncStatus { - export interface Raw { - model_name: string; - model_id: string; - last_sync_start?: string | null; - next_sync_start?: string | null; - last_sync_result?: LastSyncResultEnum.Raw | null; - last_sync_finished?: string | null; - status: SyncStatusStatus.Raw; - is_initial_sync: boolean; - selective_sync_configurations_usage?: SelectiveSyncConfigurationsUsageEnum.Raw | null; - } -} diff --git a/src/serialization/resources/accounting/types/SyncStatusStatus.ts b/src/serialization/resources/accounting/types/SyncStatusStatus.ts deleted file mode 100644 index 234711ba1..000000000 --- a/src/serialization/resources/accounting/types/SyncStatusStatus.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { StatusFd5Enum } from "./StatusFd5Enum"; - -export const SyncStatusStatus: core.serialization.Schema< - serializers.accounting.SyncStatusStatus.Raw, - Merge.accounting.SyncStatusStatus -> = core.serialization.undiscriminatedUnion([StatusFd5Enum, core.serialization.string()]); - -export declare namespace SyncStatusStatus { - export type Raw = StatusFd5Enum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/TaxComponent.ts b/src/serialization/resources/accounting/types/TaxComponent.ts deleted file mode 100644 index 6c2b73b30..000000000 --- a/src/serialization/resources/accounting/types/TaxComponent.ts +++ /dev/null @@ -1,35 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TaxComponentComponentType } from "./TaxComponentComponentType"; - -export const TaxComponent: core.serialization.ObjectSchema< - serializers.accounting.TaxComponent.Raw, - Merge.accounting.TaxComponent -> = core.serialization.object({ - id: core.serialization.string().optional(), - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - createdAt: core.serialization.property("created_at", core.serialization.date().optional()), - modifiedAt: core.serialization.property("modified_at", core.serialization.date().optional()), - name: core.serialization.string().optional(), - rate: core.serialization.string().optional(), - isCompound: core.serialization.property("is_compound", core.serialization.boolean().optional()), - componentType: core.serialization.property("component_type", TaxComponentComponentType.optional()), - remoteWasDeleted: core.serialization.property("remote_was_deleted", core.serialization.boolean().optional()), -}); - -export declare namespace TaxComponent { - export interface Raw { - id?: string | null; - remote_id?: string | null; - created_at?: string | null; - modified_at?: string | null; - name?: string | null; - rate?: string | null; - is_compound?: boolean | null; - component_type?: TaxComponentComponentType.Raw | null; - remote_was_deleted?: boolean | null; - } -} diff --git a/src/serialization/resources/accounting/types/TaxComponentComponentType.ts b/src/serialization/resources/accounting/types/TaxComponentComponentType.ts deleted file mode 100644 index 97324596a..000000000 --- a/src/serialization/resources/accounting/types/TaxComponentComponentType.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { ComponentTypeEnum } from "./ComponentTypeEnum"; - -export const TaxComponentComponentType: core.serialization.Schema< - serializers.accounting.TaxComponentComponentType.Raw, - Merge.accounting.TaxComponentComponentType -> = core.serialization.undiscriminatedUnion([ComponentTypeEnum, core.serialization.string()]); - -export declare namespace TaxComponentComponentType { - export type Raw = ComponentTypeEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/TaxRate.ts b/src/serialization/resources/accounting/types/TaxRate.ts deleted file mode 100644 index 8ca2c6326..000000000 --- a/src/serialization/resources/accounting/types/TaxRate.ts +++ /dev/null @@ -1,56 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { RemoteData } from "./RemoteData"; -import { TaxRateCompany } from "./TaxRateCompany"; -import { TaxRateStatus } from "./TaxRateStatus"; -import { TaxRateTaxComponentsItem } from "./TaxRateTaxComponentsItem"; - -export const TaxRate: core.serialization.ObjectSchema = - core.serialization.object({ - id: core.serialization.string().optional(), - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - createdAt: core.serialization.property("created_at", core.serialization.date().optional()), - modifiedAt: core.serialization.property("modified_at", core.serialization.date().optional()), - company: TaxRateCompany.optional(), - code: core.serialization.string().optional(), - name: core.serialization.string().optional(), - description: core.serialization.string().optional(), - status: TaxRateStatus.optional(), - country: core.serialization.string().optional(), - totalTaxRate: core.serialization.property("total_tax_rate", core.serialization.number().optional()), - effectiveTaxRate: core.serialization.property("effective_tax_rate", core.serialization.number().optional()), - taxComponents: core.serialization.property( - "tax_components", - core.serialization.list(TaxRateTaxComponentsItem).optional(), - ), - remoteWasDeleted: core.serialization.property("remote_was_deleted", core.serialization.boolean().optional()), - fieldMappings: core.serialization.property( - "field_mappings", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - remoteData: core.serialization.property("remote_data", core.serialization.list(RemoteData).optional()), - }); - -export declare namespace TaxRate { - export interface Raw { - id?: string | null; - remote_id?: string | null; - created_at?: string | null; - modified_at?: string | null; - company?: TaxRateCompany.Raw | null; - code?: string | null; - name?: string | null; - description?: string | null; - status?: TaxRateStatus.Raw | null; - country?: string | null; - total_tax_rate?: number | null; - effective_tax_rate?: number | null; - tax_components?: TaxRateTaxComponentsItem.Raw[] | null; - remote_was_deleted?: boolean | null; - field_mappings?: Record | null; - remote_data?: RemoteData.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/TaxRateCompany.ts b/src/serialization/resources/accounting/types/TaxRateCompany.ts deleted file mode 100644 index 536bb6af5..000000000 --- a/src/serialization/resources/accounting/types/TaxRateCompany.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CompanyInfo } from "./CompanyInfo"; - -export const TaxRateCompany: core.serialization.Schema< - serializers.accounting.TaxRateCompany.Raw, - Merge.accounting.TaxRateCompany -> = core.serialization.undiscriminatedUnion([core.serialization.string(), CompanyInfo]); - -export declare namespace TaxRateCompany { - export type Raw = string | CompanyInfo.Raw; -} diff --git a/src/serialization/resources/accounting/types/TaxRateStatus.ts b/src/serialization/resources/accounting/types/TaxRateStatus.ts deleted file mode 100644 index 2831da1b1..000000000 --- a/src/serialization/resources/accounting/types/TaxRateStatus.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Status7D1Enum } from "./Status7D1Enum"; - -export const TaxRateStatus: core.serialization.Schema< - serializers.accounting.TaxRateStatus.Raw, - Merge.accounting.TaxRateStatus -> = core.serialization.undiscriminatedUnion([Status7D1Enum, core.serialization.string()]); - -export declare namespace TaxRateStatus { - export type Raw = Status7D1Enum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/TaxRateTaxComponentsItem.ts b/src/serialization/resources/accounting/types/TaxRateTaxComponentsItem.ts deleted file mode 100644 index e5b3faa14..000000000 --- a/src/serialization/resources/accounting/types/TaxRateTaxComponentsItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TaxComponent } from "./TaxComponent"; - -export const TaxRateTaxComponentsItem: core.serialization.Schema< - serializers.accounting.TaxRateTaxComponentsItem.Raw, - Merge.accounting.TaxRateTaxComponentsItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), TaxComponent]); - -export declare namespace TaxRateTaxComponentsItem { - export type Raw = string | TaxComponent.Raw; -} diff --git a/src/serialization/resources/accounting/types/TrackingCategory.ts b/src/serialization/resources/accounting/types/TrackingCategory.ts deleted file mode 100644 index 44865b69e..000000000 --- a/src/serialization/resources/accounting/types/TrackingCategory.ts +++ /dev/null @@ -1,44 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TrackingCategoryCategoryType } from "./TrackingCategoryCategoryType"; -import { TrackingCategoryCompany } from "./TrackingCategoryCompany"; -import { TrackingCategoryStatus } from "./TrackingCategoryStatus"; - -export const TrackingCategory: core.serialization.ObjectSchema< - serializers.accounting.TrackingCategory.Raw, - Merge.accounting.TrackingCategory -> = core.serialization.object({ - id: core.serialization.string().optional(), - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - createdAt: core.serialization.property("created_at", core.serialization.date().optional()), - modifiedAt: core.serialization.property("modified_at", core.serialization.date().optional()), - name: core.serialization.string().optional(), - status: TrackingCategoryStatus.optional(), - categoryType: core.serialization.property("category_type", TrackingCategoryCategoryType.optional()), - parentCategory: core.serialization.property("parent_category", core.serialization.string().optional()), - company: TrackingCategoryCompany.optional(), - remoteWasDeleted: core.serialization.property("remote_was_deleted", core.serialization.boolean().optional()), - fieldMappings: core.serialization.property( - "field_mappings", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), -}); - -export declare namespace TrackingCategory { - export interface Raw { - id?: string | null; - remote_id?: string | null; - created_at?: string | null; - modified_at?: string | null; - name?: string | null; - status?: TrackingCategoryStatus.Raw | null; - category_type?: TrackingCategoryCategoryType.Raw | null; - parent_category?: string | null; - company?: TrackingCategoryCompany.Raw | null; - remote_was_deleted?: boolean | null; - field_mappings?: Record | null; - } -} diff --git a/src/serialization/resources/accounting/types/TrackingCategoryCategoryType.ts b/src/serialization/resources/accounting/types/TrackingCategoryCategoryType.ts deleted file mode 100644 index d43df8938..000000000 --- a/src/serialization/resources/accounting/types/TrackingCategoryCategoryType.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CategoryTypeEnum } from "./CategoryTypeEnum"; - -export const TrackingCategoryCategoryType: core.serialization.Schema< - serializers.accounting.TrackingCategoryCategoryType.Raw, - Merge.accounting.TrackingCategoryCategoryType -> = core.serialization.undiscriminatedUnion([CategoryTypeEnum, core.serialization.string()]); - -export declare namespace TrackingCategoryCategoryType { - export type Raw = CategoryTypeEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/TrackingCategoryCompany.ts b/src/serialization/resources/accounting/types/TrackingCategoryCompany.ts deleted file mode 100644 index 278063968..000000000 --- a/src/serialization/resources/accounting/types/TrackingCategoryCompany.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CompanyInfo } from "./CompanyInfo"; - -export const TrackingCategoryCompany: core.serialization.Schema< - serializers.accounting.TrackingCategoryCompany.Raw, - Merge.accounting.TrackingCategoryCompany -> = core.serialization.undiscriminatedUnion([core.serialization.string(), CompanyInfo]); - -export declare namespace TrackingCategoryCompany { - export type Raw = string | CompanyInfo.Raw; -} diff --git a/src/serialization/resources/accounting/types/TrackingCategoryStatus.ts b/src/serialization/resources/accounting/types/TrackingCategoryStatus.ts deleted file mode 100644 index b98738b75..000000000 --- a/src/serialization/resources/accounting/types/TrackingCategoryStatus.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Status7D1Enum } from "./Status7D1Enum"; - -export const TrackingCategoryStatus: core.serialization.Schema< - serializers.accounting.TrackingCategoryStatus.Raw, - Merge.accounting.TrackingCategoryStatus -> = core.serialization.undiscriminatedUnion([Status7D1Enum, core.serialization.string()]); - -export declare namespace TrackingCategoryStatus { - export type Raw = Status7D1Enum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/Transaction.ts b/src/serialization/resources/accounting/types/Transaction.ts deleted file mode 100644 index f1fb2fe4a..000000000 --- a/src/serialization/resources/accounting/types/Transaction.ts +++ /dev/null @@ -1,69 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { RemoteData } from "./RemoteData"; -import { TransactionAccount } from "./TransactionAccount"; -import { TransactionAccountingPeriod } from "./TransactionAccountingPeriod"; -import { TransactionContact } from "./TransactionContact"; -import { TransactionCurrency } from "./TransactionCurrency"; -import { TransactionLineItem } from "./TransactionLineItem"; -import { TransactionTrackingCategoriesItem } from "./TransactionTrackingCategoriesItem"; - -export const Transaction: core.serialization.ObjectSchema< - serializers.accounting.Transaction.Raw, - Merge.accounting.Transaction -> = core.serialization.object({ - id: core.serialization.string().optional(), - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - createdAt: core.serialization.property("created_at", core.serialization.date().optional()), - modifiedAt: core.serialization.property("modified_at", core.serialization.date().optional()), - transactionType: core.serialization.property("transaction_type", core.serialization.string().optional()), - number: core.serialization.string().optional(), - transactionDate: core.serialization.property("transaction_date", core.serialization.date().optional()), - account: TransactionAccount.optional(), - contact: TransactionContact.optional(), - inclusiveOfTax: core.serialization.property("inclusive_of_tax", core.serialization.boolean().optional()), - totalAmount: core.serialization.property("total_amount", core.serialization.string().optional()), - currency: TransactionCurrency.optional(), - exchangeRate: core.serialization.property("exchange_rate", core.serialization.string().optional()), - company: core.serialization.string().optional(), - trackingCategories: core.serialization.property( - "tracking_categories", - core.serialization.list(TransactionTrackingCategoriesItem.optional()).optional(), - ), - lineItems: core.serialization.property("line_items", core.serialization.list(TransactionLineItem).optional()), - remoteWasDeleted: core.serialization.property("remote_was_deleted", core.serialization.boolean().optional()), - accountingPeriod: core.serialization.property("accounting_period", TransactionAccountingPeriod.optional()), - fieldMappings: core.serialization.property( - "field_mappings", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - remoteData: core.serialization.property("remote_data", core.serialization.list(RemoteData).optional()), -}); - -export declare namespace Transaction { - export interface Raw { - id?: string | null; - remote_id?: string | null; - created_at?: string | null; - modified_at?: string | null; - transaction_type?: string | null; - number?: string | null; - transaction_date?: string | null; - account?: TransactionAccount.Raw | null; - contact?: TransactionContact.Raw | null; - inclusive_of_tax?: boolean | null; - total_amount?: string | null; - currency?: TransactionCurrency.Raw | null; - exchange_rate?: string | null; - company?: string | null; - tracking_categories?: (TransactionTrackingCategoriesItem.Raw | null | undefined)[] | null; - line_items?: TransactionLineItem.Raw[] | null; - remote_was_deleted?: boolean | null; - accounting_period?: TransactionAccountingPeriod.Raw | null; - field_mappings?: Record | null; - remote_data?: RemoteData.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/TransactionAccount.ts b/src/serialization/resources/accounting/types/TransactionAccount.ts deleted file mode 100644 index 8c83d3ea2..000000000 --- a/src/serialization/resources/accounting/types/TransactionAccount.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Account } from "./Account"; - -export const TransactionAccount: core.serialization.Schema< - serializers.accounting.TransactionAccount.Raw, - Merge.accounting.TransactionAccount -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Account]); - -export declare namespace TransactionAccount { - export type Raw = string | Account.Raw; -} diff --git a/src/serialization/resources/accounting/types/TransactionAccountingPeriod.ts b/src/serialization/resources/accounting/types/TransactionAccountingPeriod.ts deleted file mode 100644 index 2bae22f93..000000000 --- a/src/serialization/resources/accounting/types/TransactionAccountingPeriod.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { AccountingPeriod } from "./AccountingPeriod"; - -export const TransactionAccountingPeriod: core.serialization.Schema< - serializers.accounting.TransactionAccountingPeriod.Raw, - Merge.accounting.TransactionAccountingPeriod -> = core.serialization.undiscriminatedUnion([core.serialization.string(), AccountingPeriod]); - -export declare namespace TransactionAccountingPeriod { - export type Raw = string | AccountingPeriod.Raw; -} diff --git a/src/serialization/resources/accounting/types/TransactionContact.ts b/src/serialization/resources/accounting/types/TransactionContact.ts deleted file mode 100644 index 1dbaa0c21..000000000 --- a/src/serialization/resources/accounting/types/TransactionContact.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Contact } from "./Contact"; - -export const TransactionContact: core.serialization.Schema< - serializers.accounting.TransactionContact.Raw, - Merge.accounting.TransactionContact -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Contact]); - -export declare namespace TransactionContact { - export type Raw = string | Contact.Raw; -} diff --git a/src/serialization/resources/accounting/types/TransactionCurrency.ts b/src/serialization/resources/accounting/types/TransactionCurrency.ts deleted file mode 100644 index 5f28b3607..000000000 --- a/src/serialization/resources/accounting/types/TransactionCurrency.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TransactionCurrencyEnum } from "./TransactionCurrencyEnum"; - -export const TransactionCurrency: core.serialization.Schema< - serializers.accounting.TransactionCurrency.Raw, - Merge.accounting.TransactionCurrency -> = core.serialization.undiscriminatedUnion([TransactionCurrencyEnum, core.serialization.string()]); - -export declare namespace TransactionCurrency { - export type Raw = TransactionCurrencyEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/TransactionCurrencyEnum.ts b/src/serialization/resources/accounting/types/TransactionCurrencyEnum.ts deleted file mode 100644 index fcdda5a15..000000000 --- a/src/serialization/resources/accounting/types/TransactionCurrencyEnum.ts +++ /dev/null @@ -1,627 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const TransactionCurrencyEnum: core.serialization.Schema< - serializers.accounting.TransactionCurrencyEnum.Raw, - Merge.accounting.TransactionCurrencyEnum -> = core.serialization.enum_([ - "XUA", - "AFN", - "AFA", - "ALL", - "ALK", - "DZD", - "ADP", - "AOA", - "AOK", - "AON", - "AOR", - "ARA", - "ARS", - "ARM", - "ARP", - "ARL", - "AMD", - "AWG", - "AUD", - "ATS", - "AZN", - "AZM", - "BSD", - "BHD", - "BDT", - "BBD", - "BYN", - "BYB", - "BYR", - "BEF", - "BEC", - "BEL", - "BZD", - "BMD", - "BTN", - "BOB", - "BOL", - "BOV", - "BOP", - "BAM", - "BAD", - "BAN", - "BWP", - "BRC", - "BRZ", - "BRE", - "BRR", - "BRN", - "BRB", - "BRL", - "GBP", - "BND", - "BGL", - "BGN", - "BGO", - "BGM", - "BUK", - "BIF", - "XPF", - "KHR", - "CAD", - "CVE", - "KYD", - "XAF", - "CLE", - "CLP", - "CLF", - "CNX", - "CNY", - "CNH", - "COP", - "COU", - "KMF", - "CDF", - "CRC", - "HRD", - "HRK", - "CUC", - "CUP", - "CYP", - "CZK", - "CSK", - "DKK", - "DJF", - "DOP", - "NLG", - "XCD", - "DDM", - "ECS", - "ECV", - "EGP", - "GQE", - "ERN", - "EEK", - "ETB", - "EUR", - "XBA", - "XEU", - "XBB", - "XBC", - "XBD", - "FKP", - "FJD", - "FIM", - "FRF", - "XFO", - "XFU", - "GMD", - "GEK", - "GEL", - "DEM", - "GHS", - "GHC", - "GIP", - "XAU", - "GRD", - "GTQ", - "GWP", - "GNF", - "GNS", - "GYD", - "HTG", - "HNL", - "HKD", - "HUF", - "IMP", - "ISK", - "ISJ", - "INR", - "IDR", - "IRR", - "IQD", - "IEP", - "ILS", - "ILP", - "ILR", - "ITL", - "JMD", - "JPY", - "JOD", - "KZT", - "KES", - "KWD", - "KGS", - "LAK", - "LVL", - "LVR", - "LBP", - "LSL", - "LRD", - "LYD", - "LTL", - "LTT", - "LUL", - "LUC", - "LUF", - "MOP", - "MKD", - "MKN", - "MGA", - "MGF", - "MWK", - "MYR", - "MVR", - "MVP", - "MLF", - "MTL", - "MTP", - "MRU", - "MRO", - "MUR", - "MXV", - "MXN", - "MXP", - "MDC", - "MDL", - "MCF", - "MNT", - "MAD", - "MAF", - "MZE", - "MZN", - "MZM", - "MMK", - "NAD", - "NPR", - "ANG", - "TWD", - "NZD", - "NIO", - "NIC", - "NGN", - "KPW", - "NOK", - "OMR", - "PKR", - "XPD", - "PAB", - "PGK", - "PYG", - "PEI", - "PEN", - "PES", - "PHP", - "XPT", - "PLN", - "PLZ", - "PTE", - "GWE", - "QAR", - "XRE", - "RHD", - "RON", - "ROL", - "RUB", - "RUR", - "RWF", - "SVC", - "WST", - "SAR", - "RSD", - "CSD", - "SCR", - "SLL", - "XAG", - "SGD", - "SKK", - "SIT", - "SBD", - "SOS", - "ZAR", - "ZAL", - "KRH", - "KRW", - "KRO", - "SSP", - "SUR", - "ESP", - "ESA", - "ESB", - "XDR", - "LKR", - "SHP", - "XSU", - "SDD", - "SDG", - "SDP", - "SRD", - "SRG", - "SZL", - "SEK", - "CHF", - "SYP", - "STN", - "STD", - "TVD", - "TJR", - "TJS", - "TZS", - "XTS", - "THB", - "XXX", - "TPE", - "TOP", - "TTD", - "TND", - "TRY", - "TRL", - "TMT", - "TMM", - "USD", - "USN", - "USS", - "UGX", - "UGS", - "UAH", - "UAK", - "AED", - "UYW", - "UYU", - "UYP", - "UYI", - "UZS", - "VUV", - "VES", - "VEB", - "VEF", - "VND", - "VNN", - "CHE", - "CHW", - "XOF", - "YDD", - "YER", - "YUN", - "YUD", - "YUM", - "YUR", - "ZWN", - "ZRN", - "ZRZ", - "ZMW", - "ZMK", - "ZWD", - "ZWR", - "ZWL", -]); - -export declare namespace TransactionCurrencyEnum { - export type Raw = - | "XUA" - | "AFN" - | "AFA" - | "ALL" - | "ALK" - | "DZD" - | "ADP" - | "AOA" - | "AOK" - | "AON" - | "AOR" - | "ARA" - | "ARS" - | "ARM" - | "ARP" - | "ARL" - | "AMD" - | "AWG" - | "AUD" - | "ATS" - | "AZN" - | "AZM" - | "BSD" - | "BHD" - | "BDT" - | "BBD" - | "BYN" - | "BYB" - | "BYR" - | "BEF" - | "BEC" - | "BEL" - | "BZD" - | "BMD" - | "BTN" - | "BOB" - | "BOL" - | "BOV" - | "BOP" - | "BAM" - | "BAD" - | "BAN" - | "BWP" - | "BRC" - | "BRZ" - | "BRE" - | "BRR" - | "BRN" - | "BRB" - | "BRL" - | "GBP" - | "BND" - | "BGL" - | "BGN" - | "BGO" - | "BGM" - | "BUK" - | "BIF" - | "XPF" - | "KHR" - | "CAD" - | "CVE" - | "KYD" - | "XAF" - | "CLE" - | "CLP" - | "CLF" - | "CNX" - | "CNY" - | "CNH" - | "COP" - | "COU" - | "KMF" - | "CDF" - | "CRC" - | "HRD" - | "HRK" - | "CUC" - | "CUP" - | "CYP" - | "CZK" - | "CSK" - | "DKK" - | "DJF" - | "DOP" - | "NLG" - | "XCD" - | "DDM" - | "ECS" - | "ECV" - | "EGP" - | "GQE" - | "ERN" - | "EEK" - | "ETB" - | "EUR" - | "XBA" - | "XEU" - | "XBB" - | "XBC" - | "XBD" - | "FKP" - | "FJD" - | "FIM" - | "FRF" - | "XFO" - | "XFU" - | "GMD" - | "GEK" - | "GEL" - | "DEM" - | "GHS" - | "GHC" - | "GIP" - | "XAU" - | "GRD" - | "GTQ" - | "GWP" - | "GNF" - | "GNS" - | "GYD" - | "HTG" - | "HNL" - | "HKD" - | "HUF" - | "IMP" - | "ISK" - | "ISJ" - | "INR" - | "IDR" - | "IRR" - | "IQD" - | "IEP" - | "ILS" - | "ILP" - | "ILR" - | "ITL" - | "JMD" - | "JPY" - | "JOD" - | "KZT" - | "KES" - | "KWD" - | "KGS" - | "LAK" - | "LVL" - | "LVR" - | "LBP" - | "LSL" - | "LRD" - | "LYD" - | "LTL" - | "LTT" - | "LUL" - | "LUC" - | "LUF" - | "MOP" - | "MKD" - | "MKN" - | "MGA" - | "MGF" - | "MWK" - | "MYR" - | "MVR" - | "MVP" - | "MLF" - | "MTL" - | "MTP" - | "MRU" - | "MRO" - | "MUR" - | "MXV" - | "MXN" - | "MXP" - | "MDC" - | "MDL" - | "MCF" - | "MNT" - | "MAD" - | "MAF" - | "MZE" - | "MZN" - | "MZM" - | "MMK" - | "NAD" - | "NPR" - | "ANG" - | "TWD" - | "NZD" - | "NIO" - | "NIC" - | "NGN" - | "KPW" - | "NOK" - | "OMR" - | "PKR" - | "XPD" - | "PAB" - | "PGK" - | "PYG" - | "PEI" - | "PEN" - | "PES" - | "PHP" - | "XPT" - | "PLN" - | "PLZ" - | "PTE" - | "GWE" - | "QAR" - | "XRE" - | "RHD" - | "RON" - | "ROL" - | "RUB" - | "RUR" - | "RWF" - | "SVC" - | "WST" - | "SAR" - | "RSD" - | "CSD" - | "SCR" - | "SLL" - | "XAG" - | "SGD" - | "SKK" - | "SIT" - | "SBD" - | "SOS" - | "ZAR" - | "ZAL" - | "KRH" - | "KRW" - | "KRO" - | "SSP" - | "SUR" - | "ESP" - | "ESA" - | "ESB" - | "XDR" - | "LKR" - | "SHP" - | "XSU" - | "SDD" - | "SDG" - | "SDP" - | "SRD" - | "SRG" - | "SZL" - | "SEK" - | "CHF" - | "SYP" - | "STN" - | "STD" - | "TVD" - | "TJR" - | "TJS" - | "TZS" - | "XTS" - | "THB" - | "XXX" - | "TPE" - | "TOP" - | "TTD" - | "TND" - | "TRY" - | "TRL" - | "TMT" - | "TMM" - | "USD" - | "USN" - | "USS" - | "UGX" - | "UGS" - | "UAH" - | "UAK" - | "AED" - | "UYW" - | "UYU" - | "UYP" - | "UYI" - | "UZS" - | "VUV" - | "VES" - | "VEB" - | "VEF" - | "VND" - | "VNN" - | "CHE" - | "CHW" - | "XOF" - | "YDD" - | "YER" - | "YUN" - | "YUD" - | "YUM" - | "YUR" - | "ZWN" - | "ZRN" - | "ZRZ" - | "ZMW" - | "ZMK" - | "ZWD" - | "ZWR" - | "ZWL"; -} diff --git a/src/serialization/resources/accounting/types/TransactionLineItem.ts b/src/serialization/resources/accounting/types/TransactionLineItem.ts deleted file mode 100644 index 5250d5362..000000000 --- a/src/serialization/resources/accounting/types/TransactionLineItem.ts +++ /dev/null @@ -1,55 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TransactionLineItemCurrency } from "./TransactionLineItemCurrency"; -import { TransactionLineItemItem } from "./TransactionLineItemItem"; - -export const TransactionLineItem: core.serialization.ObjectSchema< - serializers.accounting.TransactionLineItem.Raw, - Merge.accounting.TransactionLineItem -> = core.serialization.object({ - id: core.serialization.string().optional(), - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - createdAt: core.serialization.property("created_at", core.serialization.date().optional()), - modifiedAt: core.serialization.property("modified_at", core.serialization.date().optional()), - memo: core.serialization.string().optional(), - unitPrice: core.serialization.property("unit_price", core.serialization.string().optional()), - quantity: core.serialization.string().optional(), - item: TransactionLineItemItem.optional(), - account: core.serialization.string().optional(), - trackingCategory: core.serialization.property("tracking_category", core.serialization.string().optional()), - trackingCategories: core.serialization.property( - "tracking_categories", - core.serialization.list(core.serialization.string().optional()).optional(), - ), - totalLineAmount: core.serialization.property("total_line_amount", core.serialization.string().optional()), - taxRate: core.serialization.property("tax_rate", core.serialization.string().optional()), - currency: TransactionLineItemCurrency.optional(), - exchangeRate: core.serialization.property("exchange_rate", core.serialization.string().optional()), - company: core.serialization.string().optional(), - remoteWasDeleted: core.serialization.property("remote_was_deleted", core.serialization.boolean().optional()), -}); - -export declare namespace TransactionLineItem { - export interface Raw { - id?: string | null; - remote_id?: string | null; - created_at?: string | null; - modified_at?: string | null; - memo?: string | null; - unit_price?: string | null; - quantity?: string | null; - item?: TransactionLineItemItem.Raw | null; - account?: string | null; - tracking_category?: string | null; - tracking_categories?: (string | null | undefined)[] | null; - total_line_amount?: string | null; - tax_rate?: string | null; - currency?: TransactionLineItemCurrency.Raw | null; - exchange_rate?: string | null; - company?: string | null; - remote_was_deleted?: boolean | null; - } -} diff --git a/src/serialization/resources/accounting/types/TransactionLineItemCurrency.ts b/src/serialization/resources/accounting/types/TransactionLineItemCurrency.ts deleted file mode 100644 index 45dd79d60..000000000 --- a/src/serialization/resources/accounting/types/TransactionLineItemCurrency.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TransactionCurrencyEnum } from "./TransactionCurrencyEnum"; - -export const TransactionLineItemCurrency: core.serialization.Schema< - serializers.accounting.TransactionLineItemCurrency.Raw, - Merge.accounting.TransactionLineItemCurrency -> = core.serialization.undiscriminatedUnion([TransactionCurrencyEnum, core.serialization.string()]); - -export declare namespace TransactionLineItemCurrency { - export type Raw = TransactionCurrencyEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/TransactionLineItemItem.ts b/src/serialization/resources/accounting/types/TransactionLineItemItem.ts deleted file mode 100644 index b4454b131..000000000 --- a/src/serialization/resources/accounting/types/TransactionLineItemItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Item } from "./Item"; - -export const TransactionLineItemItem: core.serialization.Schema< - serializers.accounting.TransactionLineItemItem.Raw, - Merge.accounting.TransactionLineItemItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Item]); - -export declare namespace TransactionLineItemItem { - export type Raw = string | Item.Raw; -} diff --git a/src/serialization/resources/accounting/types/TransactionTrackingCategoriesItem.ts b/src/serialization/resources/accounting/types/TransactionTrackingCategoriesItem.ts deleted file mode 100644 index a6f595008..000000000 --- a/src/serialization/resources/accounting/types/TransactionTrackingCategoriesItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TrackingCategory } from "./TrackingCategory"; - -export const TransactionTrackingCategoriesItem: core.serialization.Schema< - serializers.accounting.TransactionTrackingCategoriesItem.Raw, - Merge.accounting.TransactionTrackingCategoriesItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), TrackingCategory]); - -export declare namespace TransactionTrackingCategoriesItem { - export type Raw = string | TrackingCategory.Raw; -} diff --git a/src/serialization/resources/accounting/types/Type2BbEnum.ts b/src/serialization/resources/accounting/types/Type2BbEnum.ts deleted file mode 100644 index 4f412a28f..000000000 --- a/src/serialization/resources/accounting/types/Type2BbEnum.ts +++ /dev/null @@ -1,14 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const Type2BbEnum: core.serialization.Schema< - serializers.accounting.Type2BbEnum.Raw, - Merge.accounting.Type2BbEnum -> = core.serialization.enum_(["INVENTORY", "NON_INVENTORY", "SERVICE", "UNKNOWN"]); - -export declare namespace Type2BbEnum { - export type Raw = "INVENTORY" | "NON_INVENTORY" | "SERVICE" | "UNKNOWN"; -} diff --git a/src/serialization/resources/accounting/types/UnderlyingTransactionTypeEnum.ts b/src/serialization/resources/accounting/types/UnderlyingTransactionTypeEnum.ts deleted file mode 100644 index dd29986a2..000000000 --- a/src/serialization/resources/accounting/types/UnderlyingTransactionTypeEnum.ts +++ /dev/null @@ -1,29 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const UnderlyingTransactionTypeEnum: core.serialization.Schema< - serializers.accounting.UnderlyingTransactionTypeEnum.Raw, - Merge.accounting.UnderlyingTransactionTypeEnum -> = core.serialization.enum_([ - "INVOICE", - "EXPENSE", - "TRANSACTION", - "JOURNAL_ENTRY", - "PAYMENT", - "VENDOR_CREDIT", - "CREDIT_NOTE", -]); - -export declare namespace UnderlyingTransactionTypeEnum { - export type Raw = - | "INVOICE" - | "EXPENSE" - | "TRANSACTION" - | "JOURNAL_ENTRY" - | "PAYMENT" - | "VENDOR_CREDIT" - | "CREDIT_NOTE"; -} diff --git a/src/serialization/resources/accounting/types/ValidationProblemSource.ts b/src/serialization/resources/accounting/types/ValidationProblemSource.ts deleted file mode 100644 index 022946b72..000000000 --- a/src/serialization/resources/accounting/types/ValidationProblemSource.ts +++ /dev/null @@ -1,18 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const ValidationProblemSource: core.serialization.ObjectSchema< - serializers.accounting.ValidationProblemSource.Raw, - Merge.accounting.ValidationProblemSource -> = core.serialization.object({ - pointer: core.serialization.string(), -}); - -export declare namespace ValidationProblemSource { - export interface Raw { - pointer: string; - } -} diff --git a/src/serialization/resources/accounting/types/VendorCredit.ts b/src/serialization/resources/accounting/types/VendorCredit.ts deleted file mode 100644 index 59c58a95d..000000000 --- a/src/serialization/resources/accounting/types/VendorCredit.ts +++ /dev/null @@ -1,72 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import * as serializers from "../../../index"; -import { RemoteData } from "./RemoteData"; -import { VendorCreditAccountingPeriod } from "./VendorCreditAccountingPeriod"; -import { VendorCreditCompany } from "./VendorCreditCompany"; -import { VendorCreditCurrency } from "./VendorCreditCurrency"; -import { VendorCreditLine } from "./VendorCreditLine"; -import { VendorCreditTrackingCategoriesItem } from "./VendorCreditTrackingCategoriesItem"; -import { VendorCreditVendor } from "./VendorCreditVendor"; - -export const VendorCredit: core.serialization.ObjectSchema< - serializers.accounting.VendorCredit.Raw, - Merge.accounting.VendorCredit -> = core.serialization.object({ - id: core.serialization.string().optional(), - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - createdAt: core.serialization.property("created_at", core.serialization.date().optional()), - modifiedAt: core.serialization.property("modified_at", core.serialization.date().optional()), - number: core.serialization.string().optional(), - transactionDate: core.serialization.property("transaction_date", core.serialization.date().optional()), - vendor: VendorCreditVendor.optional(), - totalAmount: core.serialization.property("total_amount", core.serialization.number().optional()), - currency: VendorCreditCurrency.optional(), - exchangeRate: core.serialization.property("exchange_rate", core.serialization.string().optional()), - inclusiveOfTax: core.serialization.property("inclusive_of_tax", core.serialization.boolean().optional()), - company: VendorCreditCompany.optional(), - lines: core.serialization.list(VendorCreditLine).optional(), - trackingCategories: core.serialization.property( - "tracking_categories", - core.serialization.list(VendorCreditTrackingCategoriesItem.optional()).optional(), - ), - appliedToLines: core.serialization.property( - "applied_to_lines", - core.serialization - .list(core.serialization.lazyObject(() => serializers.accounting.VendorCreditApplyLineForVendorCredit)) - .optional(), - ), - remoteWasDeleted: core.serialization.property("remote_was_deleted", core.serialization.boolean().optional()), - accountingPeriod: core.serialization.property("accounting_period", VendorCreditAccountingPeriod.optional()), - fieldMappings: core.serialization.property( - "field_mappings", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - remoteData: core.serialization.property("remote_data", core.serialization.list(RemoteData).optional()), -}); - -export declare namespace VendorCredit { - export interface Raw { - id?: string | null; - remote_id?: string | null; - created_at?: string | null; - modified_at?: string | null; - number?: string | null; - transaction_date?: string | null; - vendor?: VendorCreditVendor.Raw | null; - total_amount?: number | null; - currency?: VendorCreditCurrency.Raw | null; - exchange_rate?: string | null; - inclusive_of_tax?: boolean | null; - company?: VendorCreditCompany.Raw | null; - lines?: VendorCreditLine.Raw[] | null; - tracking_categories?: (VendorCreditTrackingCategoriesItem.Raw | null | undefined)[] | null; - applied_to_lines?: serializers.accounting.VendorCreditApplyLineForVendorCredit.Raw[] | null; - remote_was_deleted?: boolean | null; - accounting_period?: VendorCreditAccountingPeriod.Raw | null; - field_mappings?: Record | null; - remote_data?: RemoteData.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/VendorCreditAccountingPeriod.ts b/src/serialization/resources/accounting/types/VendorCreditAccountingPeriod.ts deleted file mode 100644 index 631bb84d6..000000000 --- a/src/serialization/resources/accounting/types/VendorCreditAccountingPeriod.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { AccountingPeriod } from "./AccountingPeriod"; - -export const VendorCreditAccountingPeriod: core.serialization.Schema< - serializers.accounting.VendorCreditAccountingPeriod.Raw, - Merge.accounting.VendorCreditAccountingPeriod -> = core.serialization.undiscriminatedUnion([core.serialization.string(), AccountingPeriod]); - -export declare namespace VendorCreditAccountingPeriod { - export type Raw = string | AccountingPeriod.Raw; -} diff --git a/src/serialization/resources/accounting/types/VendorCreditApplyLineForInvoice.ts b/src/serialization/resources/accounting/types/VendorCreditApplyLineForInvoice.ts deleted file mode 100644 index 2f7edc375..000000000 --- a/src/serialization/resources/accounting/types/VendorCreditApplyLineForInvoice.ts +++ /dev/null @@ -1,33 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import * as serializers from "../../../index"; - -export const VendorCreditApplyLineForInvoice: core.serialization.ObjectSchema< - serializers.accounting.VendorCreditApplyLineForInvoice.Raw, - Merge.accounting.VendorCreditApplyLineForInvoice -> = core.serialization.object({ - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - createdAt: core.serialization.property("created_at", core.serialization.date().optional()), - modifiedAt: core.serialization.property("modified_at", core.serialization.date().optional()), - vendorCredit: core.serialization.property( - "vendor_credit", - core.serialization.lazy(() => serializers.accounting.VendorCreditApplyLineForInvoiceVendorCredit).optional(), - ), - appliedDate: core.serialization.property("applied_date", core.serialization.date().optional()), - appliedAmount: core.serialization.property("applied_amount", core.serialization.string().optional()), - remoteWasDeleted: core.serialization.property("remote_was_deleted", core.serialization.boolean().optional()), -}); - -export declare namespace VendorCreditApplyLineForInvoice { - export interface Raw { - remote_id?: string | null; - created_at?: string | null; - modified_at?: string | null; - vendor_credit?: serializers.accounting.VendorCreditApplyLineForInvoiceVendorCredit.Raw | null; - applied_date?: string | null; - applied_amount?: string | null; - remote_was_deleted?: boolean | null; - } -} diff --git a/src/serialization/resources/accounting/types/VendorCreditApplyLineForInvoiceVendorCredit.ts b/src/serialization/resources/accounting/types/VendorCreditApplyLineForInvoiceVendorCredit.ts deleted file mode 100644 index f14cc921c..000000000 --- a/src/serialization/resources/accounting/types/VendorCreditApplyLineForInvoiceVendorCredit.ts +++ /dev/null @@ -1,17 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import * as serializers from "../../../index"; - -export const VendorCreditApplyLineForInvoiceVendorCredit: core.serialization.Schema< - serializers.accounting.VendorCreditApplyLineForInvoiceVendorCredit.Raw, - Merge.accounting.VendorCreditApplyLineForInvoiceVendorCredit -> = core.serialization.undiscriminatedUnion([ - core.serialization.string(), - core.serialization.lazyObject(() => serializers.accounting.VendorCredit), -]); - -export declare namespace VendorCreditApplyLineForInvoiceVendorCredit { - export type Raw = string | serializers.accounting.VendorCredit.Raw; -} diff --git a/src/serialization/resources/accounting/types/VendorCreditApplyLineForVendorCredit.ts b/src/serialization/resources/accounting/types/VendorCreditApplyLineForVendorCredit.ts deleted file mode 100644 index dad71afe0..000000000 --- a/src/serialization/resources/accounting/types/VendorCreditApplyLineForVendorCredit.ts +++ /dev/null @@ -1,32 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import * as serializers from "../../../index"; - -export const VendorCreditApplyLineForVendorCredit: core.serialization.ObjectSchema< - serializers.accounting.VendorCreditApplyLineForVendorCredit.Raw, - Merge.accounting.VendorCreditApplyLineForVendorCredit -> = core.serialization.object({ - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - createdAt: core.serialization.property("created_at", core.serialization.date().optional()), - modifiedAt: core.serialization.property("modified_at", core.serialization.date().optional()), - invoice: core.serialization - .lazy(() => serializers.accounting.VendorCreditApplyLineForVendorCreditInvoice) - .optional(), - appliedDate: core.serialization.property("applied_date", core.serialization.date().optional()), - appliedAmount: core.serialization.property("applied_amount", core.serialization.string().optional()), - remoteWasDeleted: core.serialization.property("remote_was_deleted", core.serialization.boolean().optional()), -}); - -export declare namespace VendorCreditApplyLineForVendorCredit { - export interface Raw { - remote_id?: string | null; - created_at?: string | null; - modified_at?: string | null; - invoice?: serializers.accounting.VendorCreditApplyLineForVendorCreditInvoice.Raw | null; - applied_date?: string | null; - applied_amount?: string | null; - remote_was_deleted?: boolean | null; - } -} diff --git a/src/serialization/resources/accounting/types/VendorCreditApplyLineForVendorCreditInvoice.ts b/src/serialization/resources/accounting/types/VendorCreditApplyLineForVendorCreditInvoice.ts deleted file mode 100644 index b624dd470..000000000 --- a/src/serialization/resources/accounting/types/VendorCreditApplyLineForVendorCreditInvoice.ts +++ /dev/null @@ -1,17 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import * as serializers from "../../../index"; - -export const VendorCreditApplyLineForVendorCreditInvoice: core.serialization.Schema< - serializers.accounting.VendorCreditApplyLineForVendorCreditInvoice.Raw, - Merge.accounting.VendorCreditApplyLineForVendorCreditInvoice -> = core.serialization.undiscriminatedUnion([ - core.serialization.string(), - core.serialization.lazyObject(() => serializers.accounting.Invoice), -]); - -export declare namespace VendorCreditApplyLineForVendorCreditInvoice { - export type Raw = string | serializers.accounting.Invoice.Raw; -} diff --git a/src/serialization/resources/accounting/types/VendorCreditApplyLineForVendorCreditRequest.ts b/src/serialization/resources/accounting/types/VendorCreditApplyLineForVendorCreditRequest.ts deleted file mode 100644 index 2db45978e..000000000 --- a/src/serialization/resources/accounting/types/VendorCreditApplyLineForVendorCreditRequest.ts +++ /dev/null @@ -1,35 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { VendorCreditApplyLineForVendorCreditRequestInvoice } from "./VendorCreditApplyLineForVendorCreditRequestInvoice"; - -export const VendorCreditApplyLineForVendorCreditRequest: core.serialization.ObjectSchema< - serializers.accounting.VendorCreditApplyLineForVendorCreditRequest.Raw, - Merge.accounting.VendorCreditApplyLineForVendorCreditRequest -> = core.serialization.object({ - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - invoice: VendorCreditApplyLineForVendorCreditRequestInvoice.optional(), - appliedDate: core.serialization.property("applied_date", core.serialization.date().optional()), - appliedAmount: core.serialization.property("applied_amount", core.serialization.string().optional()), - integrationParams: core.serialization.property( - "integration_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - linkedAccountParams: core.serialization.property( - "linked_account_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), -}); - -export declare namespace VendorCreditApplyLineForVendorCreditRequest { - export interface Raw { - remote_id?: string | null; - invoice?: VendorCreditApplyLineForVendorCreditRequestInvoice.Raw | null; - applied_date?: string | null; - applied_amount?: string | null; - integration_params?: Record | null; - linked_account_params?: Record | null; - } -} diff --git a/src/serialization/resources/accounting/types/VendorCreditApplyLineForVendorCreditRequestInvoice.ts b/src/serialization/resources/accounting/types/VendorCreditApplyLineForVendorCreditRequestInvoice.ts deleted file mode 100644 index 4ed67b028..000000000 --- a/src/serialization/resources/accounting/types/VendorCreditApplyLineForVendorCreditRequestInvoice.ts +++ /dev/null @@ -1,17 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import * as serializers from "../../../index"; - -export const VendorCreditApplyLineForVendorCreditRequestInvoice: core.serialization.Schema< - serializers.accounting.VendorCreditApplyLineForVendorCreditRequestInvoice.Raw, - Merge.accounting.VendorCreditApplyLineForVendorCreditRequestInvoice -> = core.serialization.undiscriminatedUnion([ - core.serialization.string(), - core.serialization.lazyObject(() => serializers.accounting.Invoice), -]); - -export declare namespace VendorCreditApplyLineForVendorCreditRequestInvoice { - export type Raw = string | serializers.accounting.Invoice.Raw; -} diff --git a/src/serialization/resources/accounting/types/VendorCreditCompany.ts b/src/serialization/resources/accounting/types/VendorCreditCompany.ts deleted file mode 100644 index 42e46e293..000000000 --- a/src/serialization/resources/accounting/types/VendorCreditCompany.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CompanyInfo } from "./CompanyInfo"; - -export const VendorCreditCompany: core.serialization.Schema< - serializers.accounting.VendorCreditCompany.Raw, - Merge.accounting.VendorCreditCompany -> = core.serialization.undiscriminatedUnion([core.serialization.string(), CompanyInfo]); - -export declare namespace VendorCreditCompany { - export type Raw = string | CompanyInfo.Raw; -} diff --git a/src/serialization/resources/accounting/types/VendorCreditCurrency.ts b/src/serialization/resources/accounting/types/VendorCreditCurrency.ts deleted file mode 100644 index 73f0acb71..000000000 --- a/src/serialization/resources/accounting/types/VendorCreditCurrency.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TransactionCurrencyEnum } from "./TransactionCurrencyEnum"; - -export const VendorCreditCurrency: core.serialization.Schema< - serializers.accounting.VendorCreditCurrency.Raw, - Merge.accounting.VendorCreditCurrency -> = core.serialization.undiscriminatedUnion([TransactionCurrencyEnum, core.serialization.string()]); - -export declare namespace VendorCreditCurrency { - export type Raw = TransactionCurrencyEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/VendorCreditLine.ts b/src/serialization/resources/accounting/types/VendorCreditLine.ts deleted file mode 100644 index c0ff49e0d..000000000 --- a/src/serialization/resources/accounting/types/VendorCreditLine.ts +++ /dev/null @@ -1,52 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { VendorCreditLineAccount } from "./VendorCreditLineAccount"; -import { VendorCreditLineContact } from "./VendorCreditLineContact"; -import { VendorCreditLineProject } from "./VendorCreditLineProject"; - -export const VendorCreditLine: core.serialization.ObjectSchema< - serializers.accounting.VendorCreditLine.Raw, - Merge.accounting.VendorCreditLine -> = core.serialization.object({ - id: core.serialization.string().optional(), - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - createdAt: core.serialization.property("created_at", core.serialization.date().optional()), - modifiedAt: core.serialization.property("modified_at", core.serialization.date().optional()), - netAmount: core.serialization.property("net_amount", core.serialization.number().optional()), - trackingCategory: core.serialization.property("tracking_category", core.serialization.string().optional()), - trackingCategories: core.serialization.property( - "tracking_categories", - core.serialization.list(core.serialization.string().optional()).optional(), - ), - description: core.serialization.string().optional(), - account: VendorCreditLineAccount.optional(), - company: core.serialization.string().optional(), - project: VendorCreditLineProject.optional(), - contact: VendorCreditLineContact.optional(), - taxRate: core.serialization.property("tax_rate", core.serialization.string().optional()), - exchangeRate: core.serialization.property("exchange_rate", core.serialization.string().optional()), - remoteWasDeleted: core.serialization.property("remote_was_deleted", core.serialization.boolean().optional()), -}); - -export declare namespace VendorCreditLine { - export interface Raw { - id?: string | null; - remote_id?: string | null; - created_at?: string | null; - modified_at?: string | null; - net_amount?: number | null; - tracking_category?: string | null; - tracking_categories?: (string | null | undefined)[] | null; - description?: string | null; - account?: VendorCreditLineAccount.Raw | null; - company?: string | null; - project?: VendorCreditLineProject.Raw | null; - contact?: VendorCreditLineContact.Raw | null; - tax_rate?: string | null; - exchange_rate?: string | null; - remote_was_deleted?: boolean | null; - } -} diff --git a/src/serialization/resources/accounting/types/VendorCreditLineAccount.ts b/src/serialization/resources/accounting/types/VendorCreditLineAccount.ts deleted file mode 100644 index 6864bb24b..000000000 --- a/src/serialization/resources/accounting/types/VendorCreditLineAccount.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Account } from "./Account"; - -export const VendorCreditLineAccount: core.serialization.Schema< - serializers.accounting.VendorCreditLineAccount.Raw, - Merge.accounting.VendorCreditLineAccount -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Account]); - -export declare namespace VendorCreditLineAccount { - export type Raw = string | Account.Raw; -} diff --git a/src/serialization/resources/accounting/types/VendorCreditLineContact.ts b/src/serialization/resources/accounting/types/VendorCreditLineContact.ts deleted file mode 100644 index cfc5defee..000000000 --- a/src/serialization/resources/accounting/types/VendorCreditLineContact.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Contact } from "./Contact"; - -export const VendorCreditLineContact: core.serialization.Schema< - serializers.accounting.VendorCreditLineContact.Raw, - Merge.accounting.VendorCreditLineContact -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Contact]); - -export declare namespace VendorCreditLineContact { - export type Raw = string | Contact.Raw; -} diff --git a/src/serialization/resources/accounting/types/VendorCreditLineProject.ts b/src/serialization/resources/accounting/types/VendorCreditLineProject.ts deleted file mode 100644 index a4b4fbf6e..000000000 --- a/src/serialization/resources/accounting/types/VendorCreditLineProject.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Project } from "./Project"; - -export const VendorCreditLineProject: core.serialization.Schema< - serializers.accounting.VendorCreditLineProject.Raw, - Merge.accounting.VendorCreditLineProject -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Project]); - -export declare namespace VendorCreditLineProject { - export type Raw = string | Project.Raw; -} diff --git a/src/serialization/resources/accounting/types/VendorCreditLineRequest.ts b/src/serialization/resources/accounting/types/VendorCreditLineRequest.ts deleted file mode 100644 index 437a0ee5a..000000000 --- a/src/serialization/resources/accounting/types/VendorCreditLineRequest.ts +++ /dev/null @@ -1,54 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { VendorCreditLineRequestAccount } from "./VendorCreditLineRequestAccount"; -import { VendorCreditLineRequestContact } from "./VendorCreditLineRequestContact"; -import { VendorCreditLineRequestProject } from "./VendorCreditLineRequestProject"; - -export const VendorCreditLineRequest: core.serialization.ObjectSchema< - serializers.accounting.VendorCreditLineRequest.Raw, - Merge.accounting.VendorCreditLineRequest -> = core.serialization.object({ - remoteId: core.serialization.property("remote_id", core.serialization.string().optional()), - netAmount: core.serialization.property("net_amount", core.serialization.number().optional()), - trackingCategory: core.serialization.property("tracking_category", core.serialization.string().optional()), - trackingCategories: core.serialization.property( - "tracking_categories", - core.serialization.list(core.serialization.string().optional()).optional(), - ), - description: core.serialization.string().optional(), - account: VendorCreditLineRequestAccount.optional(), - company: core.serialization.string().optional(), - project: VendorCreditLineRequestProject.optional(), - contact: VendorCreditLineRequestContact.optional(), - taxRate: core.serialization.property("tax_rate", core.serialization.string().optional()), - exchangeRate: core.serialization.property("exchange_rate", core.serialization.string().optional()), - integrationParams: core.serialization.property( - "integration_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - linkedAccountParams: core.serialization.property( - "linked_account_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), -}); - -export declare namespace VendorCreditLineRequest { - export interface Raw { - remote_id?: string | null; - net_amount?: number | null; - tracking_category?: string | null; - tracking_categories?: (string | null | undefined)[] | null; - description?: string | null; - account?: VendorCreditLineRequestAccount.Raw | null; - company?: string | null; - project?: VendorCreditLineRequestProject.Raw | null; - contact?: VendorCreditLineRequestContact.Raw | null; - tax_rate?: string | null; - exchange_rate?: string | null; - integration_params?: Record | null; - linked_account_params?: Record | null; - } -} diff --git a/src/serialization/resources/accounting/types/VendorCreditLineRequestAccount.ts b/src/serialization/resources/accounting/types/VendorCreditLineRequestAccount.ts deleted file mode 100644 index 57b939bdb..000000000 --- a/src/serialization/resources/accounting/types/VendorCreditLineRequestAccount.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Account } from "./Account"; - -export const VendorCreditLineRequestAccount: core.serialization.Schema< - serializers.accounting.VendorCreditLineRequestAccount.Raw, - Merge.accounting.VendorCreditLineRequestAccount -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Account]); - -export declare namespace VendorCreditLineRequestAccount { - export type Raw = string | Account.Raw; -} diff --git a/src/serialization/resources/accounting/types/VendorCreditLineRequestContact.ts b/src/serialization/resources/accounting/types/VendorCreditLineRequestContact.ts deleted file mode 100644 index d368a2a7c..000000000 --- a/src/serialization/resources/accounting/types/VendorCreditLineRequestContact.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Contact } from "./Contact"; - -export const VendorCreditLineRequestContact: core.serialization.Schema< - serializers.accounting.VendorCreditLineRequestContact.Raw, - Merge.accounting.VendorCreditLineRequestContact -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Contact]); - -export declare namespace VendorCreditLineRequestContact { - export type Raw = string | Contact.Raw; -} diff --git a/src/serialization/resources/accounting/types/VendorCreditLineRequestProject.ts b/src/serialization/resources/accounting/types/VendorCreditLineRequestProject.ts deleted file mode 100644 index e464398ba..000000000 --- a/src/serialization/resources/accounting/types/VendorCreditLineRequestProject.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Project } from "./Project"; - -export const VendorCreditLineRequestProject: core.serialization.Schema< - serializers.accounting.VendorCreditLineRequestProject.Raw, - Merge.accounting.VendorCreditLineRequestProject -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Project]); - -export declare namespace VendorCreditLineRequestProject { - export type Raw = string | Project.Raw; -} diff --git a/src/serialization/resources/accounting/types/VendorCreditRequest.ts b/src/serialization/resources/accounting/types/VendorCreditRequest.ts deleted file mode 100644 index e6bfbd45a..000000000 --- a/src/serialization/resources/accounting/types/VendorCreditRequest.ts +++ /dev/null @@ -1,60 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { VendorCreditApplyLineForVendorCreditRequest } from "./VendorCreditApplyLineForVendorCreditRequest"; -import { VendorCreditRequestAccountingPeriod } from "./VendorCreditRequestAccountingPeriod"; -import { VendorCreditRequestCompany } from "./VendorCreditRequestCompany"; -import { VendorCreditRequestCurrency } from "./VendorCreditRequestCurrency"; -import { VendorCreditRequestTrackingCategoriesItem } from "./VendorCreditRequestTrackingCategoriesItem"; -import { VendorCreditRequestVendor } from "./VendorCreditRequestVendor"; - -export const VendorCreditRequest: core.serialization.ObjectSchema< - serializers.accounting.VendorCreditRequest.Raw, - Merge.accounting.VendorCreditRequest -> = core.serialization.object({ - number: core.serialization.string().optional(), - transactionDate: core.serialization.property("transaction_date", core.serialization.date().optional()), - vendor: VendorCreditRequestVendor.optional(), - totalAmount: core.serialization.property("total_amount", core.serialization.number().optional()), - currency: VendorCreditRequestCurrency.optional(), - exchangeRate: core.serialization.property("exchange_rate", core.serialization.string().optional()), - inclusiveOfTax: core.serialization.property("inclusive_of_tax", core.serialization.boolean().optional()), - company: VendorCreditRequestCompany.optional(), - trackingCategories: core.serialization.property( - "tracking_categories", - core.serialization.list(VendorCreditRequestTrackingCategoriesItem.optional()).optional(), - ), - appliedToLines: core.serialization.property( - "applied_to_lines", - core.serialization.list(VendorCreditApplyLineForVendorCreditRequest).optional(), - ), - accountingPeriod: core.serialization.property("accounting_period", VendorCreditRequestAccountingPeriod.optional()), - integrationParams: core.serialization.property( - "integration_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), - linkedAccountParams: core.serialization.property( - "linked_account_params", - core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(), - ), -}); - -export declare namespace VendorCreditRequest { - export interface Raw { - number?: string | null; - transaction_date?: string | null; - vendor?: VendorCreditRequestVendor.Raw | null; - total_amount?: number | null; - currency?: VendorCreditRequestCurrency.Raw | null; - exchange_rate?: string | null; - inclusive_of_tax?: boolean | null; - company?: VendorCreditRequestCompany.Raw | null; - tracking_categories?: (VendorCreditRequestTrackingCategoriesItem.Raw | null | undefined)[] | null; - applied_to_lines?: VendorCreditApplyLineForVendorCreditRequest.Raw[] | null; - accounting_period?: VendorCreditRequestAccountingPeriod.Raw | null; - integration_params?: Record | null; - linked_account_params?: Record | null; - } -} diff --git a/src/serialization/resources/accounting/types/VendorCreditRequestAccountingPeriod.ts b/src/serialization/resources/accounting/types/VendorCreditRequestAccountingPeriod.ts deleted file mode 100644 index 8582f76a2..000000000 --- a/src/serialization/resources/accounting/types/VendorCreditRequestAccountingPeriod.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { AccountingPeriod } from "./AccountingPeriod"; - -export const VendorCreditRequestAccountingPeriod: core.serialization.Schema< - serializers.accounting.VendorCreditRequestAccountingPeriod.Raw, - Merge.accounting.VendorCreditRequestAccountingPeriod -> = core.serialization.undiscriminatedUnion([core.serialization.string(), AccountingPeriod]); - -export declare namespace VendorCreditRequestAccountingPeriod { - export type Raw = string | AccountingPeriod.Raw; -} diff --git a/src/serialization/resources/accounting/types/VendorCreditRequestCompany.ts b/src/serialization/resources/accounting/types/VendorCreditRequestCompany.ts deleted file mode 100644 index e03fe58a7..000000000 --- a/src/serialization/resources/accounting/types/VendorCreditRequestCompany.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { CompanyInfo } from "./CompanyInfo"; - -export const VendorCreditRequestCompany: core.serialization.Schema< - serializers.accounting.VendorCreditRequestCompany.Raw, - Merge.accounting.VendorCreditRequestCompany -> = core.serialization.undiscriminatedUnion([core.serialization.string(), CompanyInfo]); - -export declare namespace VendorCreditRequestCompany { - export type Raw = string | CompanyInfo.Raw; -} diff --git a/src/serialization/resources/accounting/types/VendorCreditRequestCurrency.ts b/src/serialization/resources/accounting/types/VendorCreditRequestCurrency.ts deleted file mode 100644 index 72a8a65eb..000000000 --- a/src/serialization/resources/accounting/types/VendorCreditRequestCurrency.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TransactionCurrencyEnum } from "./TransactionCurrencyEnum"; - -export const VendorCreditRequestCurrency: core.serialization.Schema< - serializers.accounting.VendorCreditRequestCurrency.Raw, - Merge.accounting.VendorCreditRequestCurrency -> = core.serialization.undiscriminatedUnion([TransactionCurrencyEnum, core.serialization.string()]); - -export declare namespace VendorCreditRequestCurrency { - export type Raw = TransactionCurrencyEnum.Raw | string; -} diff --git a/src/serialization/resources/accounting/types/VendorCreditRequestTrackingCategoriesItem.ts b/src/serialization/resources/accounting/types/VendorCreditRequestTrackingCategoriesItem.ts deleted file mode 100644 index d85225fc1..000000000 --- a/src/serialization/resources/accounting/types/VendorCreditRequestTrackingCategoriesItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TrackingCategory } from "./TrackingCategory"; - -export const VendorCreditRequestTrackingCategoriesItem: core.serialization.Schema< - serializers.accounting.VendorCreditRequestTrackingCategoriesItem.Raw, - Merge.accounting.VendorCreditRequestTrackingCategoriesItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), TrackingCategory]); - -export declare namespace VendorCreditRequestTrackingCategoriesItem { - export type Raw = string | TrackingCategory.Raw; -} diff --git a/src/serialization/resources/accounting/types/VendorCreditRequestVendor.ts b/src/serialization/resources/accounting/types/VendorCreditRequestVendor.ts deleted file mode 100644 index a43c54616..000000000 --- a/src/serialization/resources/accounting/types/VendorCreditRequestVendor.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Contact } from "./Contact"; - -export const VendorCreditRequestVendor: core.serialization.Schema< - serializers.accounting.VendorCreditRequestVendor.Raw, - Merge.accounting.VendorCreditRequestVendor -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Contact]); - -export declare namespace VendorCreditRequestVendor { - export type Raw = string | Contact.Raw; -} diff --git a/src/serialization/resources/accounting/types/VendorCreditResponse.ts b/src/serialization/resources/accounting/types/VendorCreditResponse.ts deleted file mode 100644 index ffc99c20c..000000000 --- a/src/serialization/resources/accounting/types/VendorCreditResponse.ts +++ /dev/null @@ -1,27 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import * as serializers from "../../../index"; -import { DebugModeLog } from "./DebugModeLog"; -import { ErrorValidationProblem } from "./ErrorValidationProblem"; -import { WarningValidationProblem } from "./WarningValidationProblem"; - -export const VendorCreditResponse: core.serialization.ObjectSchema< - serializers.accounting.VendorCreditResponse.Raw, - Merge.accounting.VendorCreditResponse -> = core.serialization.object({ - model: core.serialization.lazyObject(() => serializers.accounting.VendorCredit), - warnings: core.serialization.list(WarningValidationProblem), - errors: core.serialization.list(ErrorValidationProblem), - logs: core.serialization.list(DebugModeLog).optional(), -}); - -export declare namespace VendorCreditResponse { - export interface Raw { - model: serializers.accounting.VendorCredit.Raw; - warnings: WarningValidationProblem.Raw[]; - errors: ErrorValidationProblem.Raw[]; - logs?: DebugModeLog.Raw[] | null; - } -} diff --git a/src/serialization/resources/accounting/types/VendorCreditTrackingCategoriesItem.ts b/src/serialization/resources/accounting/types/VendorCreditTrackingCategoriesItem.ts deleted file mode 100644 index a8367a2d8..000000000 --- a/src/serialization/resources/accounting/types/VendorCreditTrackingCategoriesItem.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { TrackingCategory } from "./TrackingCategory"; - -export const VendorCreditTrackingCategoriesItem: core.serialization.Schema< - serializers.accounting.VendorCreditTrackingCategoriesItem.Raw, - Merge.accounting.VendorCreditTrackingCategoriesItem -> = core.serialization.undiscriminatedUnion([core.serialization.string(), TrackingCategory]); - -export declare namespace VendorCreditTrackingCategoriesItem { - export type Raw = string | TrackingCategory.Raw; -} diff --git a/src/serialization/resources/accounting/types/VendorCreditVendor.ts b/src/serialization/resources/accounting/types/VendorCreditVendor.ts deleted file mode 100644 index 3f48678bd..000000000 --- a/src/serialization/resources/accounting/types/VendorCreditVendor.ts +++ /dev/null @@ -1,15 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { Contact } from "./Contact"; - -export const VendorCreditVendor: core.serialization.Schema< - serializers.accounting.VendorCreditVendor.Raw, - Merge.accounting.VendorCreditVendor -> = core.serialization.undiscriminatedUnion([core.serialization.string(), Contact]); - -export declare namespace VendorCreditVendor { - export type Raw = string | Contact.Raw; -} diff --git a/src/serialization/resources/accounting/types/WarningValidationProblem.ts b/src/serialization/resources/accounting/types/WarningValidationProblem.ts deleted file mode 100644 index a30805753..000000000 --- a/src/serialization/resources/accounting/types/WarningValidationProblem.ts +++ /dev/null @@ -1,25 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; -import { ValidationProblemSource } from "./ValidationProblemSource"; - -export const WarningValidationProblem: core.serialization.ObjectSchema< - serializers.accounting.WarningValidationProblem.Raw, - Merge.accounting.WarningValidationProblem -> = core.serialization.object({ - source: ValidationProblemSource.optional(), - title: core.serialization.string(), - detail: core.serialization.string(), - problemType: core.serialization.property("problem_type", core.serialization.string()), -}); - -export declare namespace WarningValidationProblem { - export interface Raw { - source?: ValidationProblemSource.Raw | null; - title: string; - detail: string; - problem_type: string; - } -} diff --git a/src/serialization/resources/accounting/types/WebhookReceiver.ts b/src/serialization/resources/accounting/types/WebhookReceiver.ts deleted file mode 100644 index b5dbb6091..000000000 --- a/src/serialization/resources/accounting/types/WebhookReceiver.ts +++ /dev/null @@ -1,22 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import type * as Merge from "../../../../api/index"; -import * as core from "../../../../core"; -import type * as serializers from "../../../index"; - -export const WebhookReceiver: core.serialization.ObjectSchema< - serializers.accounting.WebhookReceiver.Raw, - Merge.accounting.WebhookReceiver -> = core.serialization.object({ - event: core.serialization.string(), - isActive: core.serialization.property("is_active", core.serialization.boolean()), - key: core.serialization.string().optional(), -}); - -export declare namespace WebhookReceiver { - export interface Raw { - event: string; - is_active: boolean; - key?: string | null; - } -} diff --git a/src/serialization/resources/accounting/types/index.ts b/src/serialization/resources/accounting/types/index.ts deleted file mode 100644 index 22194d0a9..000000000 --- a/src/serialization/resources/accounting/types/index.ts +++ /dev/null @@ -1,515 +0,0 @@ -export * from "./Account"; -export * from "./AccountAccountType"; -export * from "./AccountAccountTypeEnum"; -export * from "./AccountClassification"; -export * from "./AccountCurrency"; -export * from "./AccountDetails"; -export * from "./AccountDetailsAndActions"; -export * from "./AccountDetailsAndActionsCategory"; -export * from "./AccountDetailsAndActionsIntegration"; -export * from "./AccountDetailsAndActionsStatus"; -export * from "./AccountDetailsAndActionsStatusEnum"; -export * from "./AccountDetailsCategory"; -export * from "./AccountIntegration"; -export * from "./AccountingAttachment"; -export * from "./AccountingAttachmentRequest"; -export * from "./AccountingAttachmentResponse"; -export * from "./AccountingPeriod"; -export * from "./AccountingPeriodStatus"; -export * from "./AccountingPhoneNumber"; -export * from "./AccountingPhoneNumberRequest"; -export * from "./AccountRequest"; -export * from "./AccountRequestAccountType"; -export * from "./AccountRequestClassification"; -export * from "./AccountRequestCurrency"; -export * from "./AccountRequestStatus"; -export * from "./AccountResponse"; -export * from "./AccountStatus"; -export * from "./AccountStatusEnum"; -export * from "./AccountToken"; -export * from "./Address"; -export * from "./AddressCountry"; -export * from "./AddressRequest"; -export * from "./AddressRequestCountry"; -export * from "./AddressRequestType"; -export * from "./AddressType"; -export * from "./AddressTypeEnum"; -export * from "./AdvancedMetadata"; -export * from "./AsyncPassthroughReciept"; -export * from "./AsyncPostTask"; -export * from "./AsyncPostTaskResult"; -export * from "./AsyncPostTaskStatus"; -export * from "./AsyncPostTaskStatusEnum"; -export * from "./AuditLogEvent"; -export * from "./AuditLogEventEventType"; -export * from "./AuditLogEventRole"; -export * from "./AvailableActions"; -export * from "./BalanceSheet"; -export * from "./BalanceSheetCompany"; -export * from "./BalanceSheetCurrency"; -export * from "./BankFeedAccount"; -export * from "./BankFeedAccountAccountType"; -export * from "./BankFeedAccountAccountTypeEnum"; -export * from "./BankFeedAccountCurrency"; -export * from "./BankFeedAccountFeedStatus"; -export * from "./BankFeedAccountRequest"; -export * from "./BankFeedAccountRequestAccountType"; -export * from "./BankFeedAccountRequestCurrency"; -export * from "./BankFeedAccountRequestFeedStatus"; -export * from "./BankFeedAccountResponse"; -export * from "./BankFeedTransaction"; -export * from "./BankFeedTransactionBankFeedAccount"; -export * from "./BankFeedTransactionCreditOrDebit"; -export * from "./BankFeedTransactionRequestRequest"; -export * from "./BankFeedTransactionRequestRequestBankFeedAccount"; -export * from "./BankFeedTransactionRequestRequestCreditOrDebit"; -export * from "./BankFeedTransactionResponse"; -export * from "./CashFlowStatement"; -export * from "./CashFlowStatementCompany"; -export * from "./CashFlowStatementCurrency"; -export * from "./CategoriesEnum"; -export * from "./CategoryEnum"; -export * from "./CategoryTypeEnum"; -export * from "./ClassificationEnum"; -export * from "./CommonModelScopeApi"; -export * from "./CommonModelScopesBodyRequest"; -export * from "./CompanyInfo"; -export * from "./CompanyInfoCurrency"; -export * from "./ComponentTypeEnum"; -export * from "./Contact"; -export * from "./ContactAddressesItem"; -export * from "./ContactRequest"; -export * from "./ContactRequestAddressesItem"; -export * from "./ContactRequestStatus"; -export * from "./ContactResponse"; -export * from "./ContactStatus"; -export * from "./CountryEnum"; -export * from "./CreditNote"; -export * from "./CreditNoteAccountingPeriod"; -export * from "./CreditNoteAppliedPaymentsItem"; -export * from "./CreditNoteApplyLineForCreditNote"; -export * from "./CreditNoteApplyLineForCreditNoteInvoice"; -export * from "./CreditNoteApplyLineForCreditNoteRequest"; -export * from "./CreditNoteApplyLineForCreditNoteRequestInvoice"; -export * from "./CreditNoteApplyLineForInvoice"; -export * from "./CreditNoteApplyLineForInvoiceCreditNote"; -export * from "./CreditNoteCompany"; -export * from "./CreditNoteContact"; -export * from "./CreditNoteCurrency"; -export * from "./CreditNoteLineItem"; -export * from "./CreditNoteLineItemCompany"; -export * from "./CreditNoteLineItemContact"; -export * from "./CreditNoteLineItemItem"; -export * from "./CreditNoteLineItemProject"; -export * from "./CreditNoteLineItemRequest"; -export * from "./CreditNoteLineItemRequestCompany"; -export * from "./CreditNoteLineItemRequestContact"; -export * from "./CreditNoteLineItemRequestItem"; -export * from "./CreditNoteLineItemRequestProject"; -export * from "./CreditNotePaymentsItem"; -export * from "./CreditNoteRequest"; -export * from "./CreditNoteRequestAccountingPeriod"; -export * from "./CreditNoteRequestAppliedPaymentsItem"; -export * from "./CreditNoteRequestCompany"; -export * from "./CreditNoteRequestContact"; -export * from "./CreditNoteRequestCurrency"; -export * from "./CreditNoteRequestLineItemsItem"; -export * from "./CreditNoteRequestPaymentsItem"; -export * from "./CreditNoteRequestStatus"; -export * from "./CreditNoteRequestTrackingCategoriesItem"; -export * from "./CreditNoteResponse"; -export * from "./CreditNoteStatus"; -export * from "./CreditNoteStatusEnum"; -export * from "./CreditNoteTrackingCategoriesItem"; -export * from "./CreditOrDebitEnum"; -export * from "./DataPassthroughRequest"; -export * from "./DataPassthroughRequestMethod"; -export * from "./DebugModeLog"; -export * from "./DebugModelLogSummary"; -export * from "./Employee"; -export * from "./EmployeeCompany"; -export * from "./EmployeeStatus"; -export * from "./EnabledActionsEnum"; -export * from "./EncodingEnum"; -export * from "./ErrorValidationProblem"; -export * from "./EventTypeEnum"; -export * from "./Expense"; -export * from "./ExpenseAccount"; -export * from "./ExpenseAccountingPeriod"; -export * from "./ExpenseCompany"; -export * from "./ExpenseContact"; -export * from "./ExpenseCurrency"; -export * from "./ExpenseEmployee"; -export * from "./ExpenseLine"; -export * from "./ExpenseLineAccount"; -export * from "./ExpenseLineContact"; -export * from "./ExpenseLineCurrency"; -export * from "./ExpenseLineEmployee"; -export * from "./ExpenseLineItem"; -export * from "./ExpenseLineProject"; -export * from "./ExpenseLineRequest"; -export * from "./ExpenseLineRequestAccount"; -export * from "./ExpenseLineRequestContact"; -export * from "./ExpenseLineRequestCurrency"; -export * from "./ExpenseLineRequestEmployee"; -export * from "./ExpenseLineRequestItem"; -export * from "./ExpenseLineRequestProject"; -export * from "./ExpenseLineRequestTrackingCategoriesItem"; -export * from "./ExpenseLineRequestTrackingCategory"; -export * from "./ExpenseLineTrackingCategoriesItem"; -export * from "./ExpenseLineTrackingCategory"; -export * from "./ExpenseReport"; -export * from "./ExpenseReportCompany"; -export * from "./ExpenseReportLine"; -export * from "./ExpenseReportLineAccount"; -export * from "./ExpenseReportLineCompany"; -export * from "./ExpenseReportLineContact"; -export * from "./ExpenseReportLineEmployee"; -export * from "./ExpenseReportLineProject"; -export * from "./ExpenseReportLineRequest"; -export * from "./ExpenseReportLineRequestAccount"; -export * from "./ExpenseReportLineRequestCompany"; -export * from "./ExpenseReportLineRequestContact"; -export * from "./ExpenseReportLineRequestEmployee"; -export * from "./ExpenseReportLineRequestProject"; -export * from "./ExpenseReportLineRequestTaxRate"; -export * from "./ExpenseReportLineTaxRate"; -export * from "./ExpenseReportRequest"; -export * from "./ExpenseReportRequestAccountingPeriod"; -export * from "./ExpenseReportRequestCompany"; -export * from "./ExpenseReportRequestEmployee"; -export * from "./ExpenseReportResponse"; -export * from "./ExpenseReportStatus"; -export * from "./ExpenseReportStatusEnum"; -export * from "./ExpenseRequest"; -export * from "./ExpenseRequestAccount"; -export * from "./ExpenseRequestAccountingPeriod"; -export * from "./ExpenseRequestCompany"; -export * from "./ExpenseRequestContact"; -export * from "./ExpenseRequestCurrency"; -export * from "./ExpenseRequestEmployee"; -export * from "./ExpenseRequestTrackingCategoriesItem"; -export * from "./ExpenseResponse"; -export * from "./ExpenseTrackingCategoriesItem"; -export * from "./ExternalTargetFieldApi"; -export * from "./ExternalTargetFieldApiResponse"; -export * from "./FeedStatusEnum"; -export * from "./FieldFormatEnum"; -export * from "./FieldMappingApiInstance"; -export * from "./FieldMappingApiInstanceRemoteField"; -export * from "./FieldMappingApiInstanceRemoteFieldRemoteEndpointInfo"; -export * from "./FieldMappingApiInstanceResponse"; -export * from "./FieldMappingApiInstanceTargetField"; -export * from "./FieldMappingInstanceResponse"; -export * from "./FieldPermissionDeserializer"; -export * from "./FieldPermissionDeserializerRequest"; -export * from "./FieldTypeEnum"; -export * from "./GeneralLedgerTransaction"; -export * from "./GeneralLedgerTransactionAccountingPeriod"; -export * from "./GeneralLedgerTransactionCompany"; -export * from "./GeneralLedgerTransactionGeneralLedgerTransactionLinesItem"; -export * from "./GeneralLedgerTransactionLine"; -export * from "./GeneralLedgerTransactionLineAccount"; -export * from "./GeneralLedgerTransactionLineBaseCurrency"; -export * from "./GeneralLedgerTransactionLineCompany"; -export * from "./GeneralLedgerTransactionLineContact"; -export * from "./GeneralLedgerTransactionLineEmployee"; -export * from "./GeneralLedgerTransactionLineItem"; -export * from "./GeneralLedgerTransactionLineProject"; -export * from "./GeneralLedgerTransactionLineTrackingCategoriesItem"; -export * from "./GeneralLedgerTransactionLineTransactionCurrency"; -export * from "./GeneralLedgerTransactionTrackingCategoriesItem"; -export * from "./GeneralLedgerTransactionUnderlyingTransactionType"; -export * from "./IncomeStatement"; -export * from "./IncomeStatementCompany"; -export * from "./IncomeStatementCurrency"; -export * from "./IndividualCommonModelScopeDeserializer"; -export * from "./IndividualCommonModelScopeDeserializerRequest"; -export * from "./Invoice"; -export * from "./InvoiceAccountingPeriod"; -export * from "./InvoiceAppliedCreditNotesItem"; -export * from "./InvoiceAppliedPaymentsItem"; -export * from "./InvoiceAppliedVendorCreditsItem"; -export * from "./InvoiceCompany"; -export * from "./InvoiceContact"; -export * from "./InvoiceCurrency"; -export * from "./InvoiceEmployee"; -export * from "./InvoiceLineItem"; -export * from "./InvoiceLineItemAccount"; -export * from "./InvoiceLineItemContact"; -export * from "./InvoiceLineItemCurrency"; -export * from "./InvoiceLineItemEmployee"; -export * from "./InvoiceLineItemItem"; -export * from "./InvoiceLineItemProject"; -export * from "./InvoiceLineItemRequest"; -export * from "./InvoiceLineItemRequestAccount"; -export * from "./InvoiceLineItemRequestContact"; -export * from "./InvoiceLineItemRequestCurrency"; -export * from "./InvoiceLineItemRequestEmployee"; -export * from "./InvoiceLineItemRequestItem"; -export * from "./InvoiceLineItemRequestProject"; -export * from "./InvoiceLineItemRequestTrackingCategoriesItem"; -export * from "./InvoiceLineItemRequestTrackingCategory"; -export * from "./InvoiceLineItemTrackingCategoriesItem"; -export * from "./InvoiceLineItemTrackingCategory"; -export * from "./InvoicePaymentsItem"; -export * from "./InvoicePaymentTerm"; -export * from "./InvoicePurchaseOrdersItem"; -export * from "./InvoiceRequest"; -export * from "./InvoiceRequestCompany"; -export * from "./InvoiceRequestContact"; -export * from "./InvoiceRequestCurrency"; -export * from "./InvoiceRequestEmployee"; -export * from "./InvoiceRequestPaymentsItem"; -export * from "./InvoiceRequestPaymentTerm"; -export * from "./InvoiceRequestPurchaseOrdersItem"; -export * from "./InvoiceRequestStatus"; -export * from "./InvoiceRequestTrackingCategoriesItem"; -export * from "./InvoiceRequestType"; -export * from "./InvoiceResponse"; -export * from "./InvoiceStatus"; -export * from "./InvoiceStatusEnum"; -export * from "./InvoiceTrackingCategoriesItem"; -export * from "./InvoiceType"; -export * from "./InvoiceTypeEnum"; -export * from "./Issue"; -export * from "./IssueStatus"; -export * from "./IssueStatusEnum"; -export * from "./Item"; -export * from "./ItemCompany"; -export * from "./ItemFormatEnum"; -export * from "./ItemPurchaseAccount"; -export * from "./ItemPurchaseTaxRate"; -export * from "./ItemRequestRequest"; -export * from "./ItemRequestRequestCompany"; -export * from "./ItemRequestRequestPurchaseAccount"; -export * from "./ItemRequestRequestPurchaseTaxRate"; -export * from "./ItemRequestRequestSalesAccount"; -export * from "./ItemRequestRequestSalesTaxRate"; -export * from "./ItemRequestRequestStatus"; -export * from "./ItemRequestRequestType"; -export * from "./ItemResponse"; -export * from "./ItemSalesAccount"; -export * from "./ItemSalesTaxRate"; -export * from "./ItemSchema"; -export * from "./ItemStatus"; -export * from "./ItemType"; -export * from "./ItemTypeEnum"; -export * from "./JournalEntry"; -export * from "./JournalEntryAccountingPeriod"; -export * from "./JournalEntryAppliedPaymentsItem"; -export * from "./JournalEntryCompany"; -export * from "./JournalEntryCurrency"; -export * from "./JournalEntryPaymentsItem"; -export * from "./JournalEntryPostingStatus"; -export * from "./JournalEntryRequest"; -export * from "./JournalEntryRequestCompany"; -export * from "./JournalEntryRequestCurrency"; -export * from "./JournalEntryRequestPaymentsItem"; -export * from "./JournalEntryRequestPostingStatus"; -export * from "./JournalEntryRequestTrackingCategoriesItem"; -export * from "./JournalEntryResponse"; -export * from "./JournalEntryTrackingCategoriesItem"; -export * from "./JournalLine"; -export * from "./JournalLineAccount"; -export * from "./JournalLineCurrency"; -export * from "./JournalLineProject"; -export * from "./JournalLineRequest"; -export * from "./JournalLineRequestAccount"; -export * from "./JournalLineRequestCurrency"; -export * from "./JournalLineRequestProject"; -export * from "./JournalLineRequestTrackingCategoriesItem"; -export * from "./JournalLineRequestTrackingCategory"; -export * from "./JournalLineTrackingCategoriesItem"; -export * from "./JournalLineTrackingCategory"; -export * from "./LanguageEnum"; -export * from "./LastSyncResultEnum"; -export * from "./LinkedAccountStatus"; -export * from "./LinkToken"; -export * from "./MetaResponse"; -export * from "./MethodEnum"; -export * from "./MethodTypeEnum"; -export * from "./ModelOperation"; -export * from "./ModelPermissionDeserializer"; -export * from "./ModelPermissionDeserializerRequest"; -export * from "./MultipartFormFieldRequest"; -export * from "./MultipartFormFieldRequestEncoding"; -export * from "./PaginatedAccountDetailsAndActionsList"; -export * from "./PaginatedAccountingAttachmentList"; -export * from "./PaginatedAccountingPeriodList"; -export * from "./PaginatedAccountList"; -export * from "./PaginatedAuditLogEventList"; -export * from "./PaginatedBalanceSheetList"; -export * from "./PaginatedBankFeedAccountList"; -export * from "./PaginatedBankFeedTransactionList"; -export * from "./PaginatedCashFlowStatementList"; -export * from "./PaginatedCompanyInfoList"; -export * from "./PaginatedContactList"; -export * from "./PaginatedCreditNoteList"; -export * from "./PaginatedEmployeeList"; -export * from "./PaginatedExpenseList"; -export * from "./PaginatedExpenseReportLineList"; -export * from "./PaginatedExpenseReportList"; -export * from "./PaginatedGeneralLedgerTransactionList"; -export * from "./PaginatedIncomeStatementList"; -export * from "./PaginatedInvoiceList"; -export * from "./PaginatedIssueList"; -export * from "./PaginatedItemList"; -export * from "./PaginatedJournalEntryList"; -export * from "./PaginatedPaymentList"; -export * from "./PaginatedPaymentMethodList"; -export * from "./PaginatedPaymentTermList"; -export * from "./PaginatedProjectList"; -export * from "./PaginatedPurchaseOrderList"; -export * from "./PaginatedRemoteFieldClassList"; -export * from "./PaginatedSyncStatusList"; -export * from "./PaginatedTaxRateList"; -export * from "./PaginatedTrackingCategoryList"; -export * from "./PaginatedTransactionList"; -export * from "./PaginatedVendorCreditList"; -export * from "./PatchedContactRequest"; -export * from "./PatchedContactRequestAddressesItem"; -export * from "./PatchedItemRequestRequest"; -export * from "./PatchedItemRequestRequestStatus"; -export * from "./PatchedItemRequestRequestType"; -export * from "./PatchedPaymentRequest"; -export * from "./PatchedPaymentRequestAccount"; -export * from "./PatchedPaymentRequestAccountingPeriod"; -export * from "./PatchedPaymentRequestAppliedToLinesItem"; -export * from "./PatchedPaymentRequestCompany"; -export * from "./PatchedPaymentRequestContact"; -export * from "./PatchedPaymentRequestCurrency"; -export * from "./PatchedPaymentRequestPaymentMethod"; -export * from "./PatchedPaymentRequestTrackingCategoriesItem"; -export * from "./PatchedPaymentRequestType"; -export * from "./Payment"; -export * from "./PaymentAccount"; -export * from "./PaymentAccountingPeriod"; -export * from "./PaymentAppliedToLinesItem"; -export * from "./PaymentCompany"; -export * from "./PaymentContact"; -export * from "./PaymentCurrency"; -export * from "./PaymentLineItem"; -export * from "./PaymentLineItemRequest"; -export * from "./PaymentMethod"; -export * from "./PaymentMethodMethodType"; -export * from "./PaymentPaymentMethod"; -export * from "./PaymentRequest"; -export * from "./PaymentRequestAccount"; -export * from "./PaymentRequestAccountingPeriod"; -export * from "./PaymentRequestAppliedToLinesItem"; -export * from "./PaymentRequestCompany"; -export * from "./PaymentRequestContact"; -export * from "./PaymentRequestCurrency"; -export * from "./PaymentRequestPaymentMethod"; -export * from "./PaymentRequestTrackingCategoriesItem"; -export * from "./PaymentRequestType"; -export * from "./PaymentResponse"; -export * from "./PaymentTerm"; -export * from "./PaymentTermCompany"; -export * from "./PaymentTrackingCategoriesItem"; -export * from "./PaymentType"; -export * from "./PaymentTypeEnum"; -export * from "./PostingStatusEnum"; -export * from "./Project"; -export * from "./ProjectCompany"; -export * from "./ProjectContact"; -export * from "./PurchaseOrder"; -export * from "./PurchaseOrderAccountingPeriod"; -export * from "./PurchaseOrderCompany"; -export * from "./PurchaseOrderCurrency"; -export * from "./PurchaseOrderDeliveryAddress"; -export * from "./PurchaseOrderLineItem"; -export * from "./PurchaseOrderLineItemCurrency"; -export * from "./PurchaseOrderLineItemItem"; -export * from "./PurchaseOrderLineItemRequest"; -export * from "./PurchaseOrderLineItemRequestCurrency"; -export * from "./PurchaseOrderLineItemRequestItem"; -export * from "./PurchaseOrderPaymentTerm"; -export * from "./PurchaseOrderRequest"; -export * from "./PurchaseOrderRequestCompany"; -export * from "./PurchaseOrderRequestCurrency"; -export * from "./PurchaseOrderRequestDeliveryAddress"; -export * from "./PurchaseOrderRequestPaymentTerm"; -export * from "./PurchaseOrderRequestStatus"; -export * from "./PurchaseOrderRequestTrackingCategoriesItem"; -export * from "./PurchaseOrderRequestVendor"; -export * from "./PurchaseOrderResponse"; -export * from "./PurchaseOrderStatus"; -export * from "./PurchaseOrderStatusEnum"; -export * from "./PurchaseOrderTrackingCategoriesItem"; -export * from "./PurchaseOrderVendor"; -export * from "./RemoteData"; -export * from "./RemoteEndpointInfo"; -export * from "./RemoteField"; -export * from "./RemoteFieldApi"; -export * from "./RemoteFieldApiCoverage"; -export * from "./RemoteFieldApiResponse"; -export * from "./RemoteFieldClass"; -export * from "./RemoteFieldRemoteFieldClass"; -export * from "./RemoteFieldRequest"; -export * from "./RemoteFieldRequestRemoteFieldClass"; -export * from "./RemoteKey"; -export * from "./RemoteResponse"; -export * from "./ReportItem"; -export * from "./RequestFormatEnum"; -export * from "./ResponseTypeEnum"; -export * from "./RoleEnum"; -export * from "./SelectiveSyncConfigurationsUsageEnum"; -export * from "./Status7D1Enum"; -export * from "./Status895Enum"; -export * from "./StatusFd5Enum"; -export * from "./SyncStatus"; -export * from "./SyncStatusStatus"; -export * from "./TaxComponent"; -export * from "./TaxComponentComponentType"; -export * from "./TaxRate"; -export * from "./TaxRateCompany"; -export * from "./TaxRateStatus"; -export * from "./TaxRateTaxComponentsItem"; -export * from "./TrackingCategory"; -export * from "./TrackingCategoryCategoryType"; -export * from "./TrackingCategoryCompany"; -export * from "./TrackingCategoryStatus"; -export * from "./Transaction"; -export * from "./TransactionAccount"; -export * from "./TransactionAccountingPeriod"; -export * from "./TransactionContact"; -export * from "./TransactionCurrency"; -export * from "./TransactionCurrencyEnum"; -export * from "./TransactionLineItem"; -export * from "./TransactionLineItemCurrency"; -export * from "./TransactionLineItemItem"; -export * from "./TransactionTrackingCategoriesItem"; -export * from "./Type2BbEnum"; -export * from "./UnderlyingTransactionTypeEnum"; -export * from "./ValidationProblemSource"; -export * from "./VendorCredit"; -export * from "./VendorCreditAccountingPeriod"; -export * from "./VendorCreditApplyLineForInvoice"; -export * from "./VendorCreditApplyLineForInvoiceVendorCredit"; -export * from "./VendorCreditApplyLineForVendorCredit"; -export * from "./VendorCreditApplyLineForVendorCreditInvoice"; -export * from "./VendorCreditApplyLineForVendorCreditRequest"; -export * from "./VendorCreditApplyLineForVendorCreditRequestInvoice"; -export * from "./VendorCreditCompany"; -export * from "./VendorCreditCurrency"; -export * from "./VendorCreditLine"; -export * from "./VendorCreditLineAccount"; -export * from "./VendorCreditLineContact"; -export * from "./VendorCreditLineProject"; -export * from "./VendorCreditLineRequest"; -export * from "./VendorCreditLineRequestAccount"; -export * from "./VendorCreditLineRequestContact"; -export * from "./VendorCreditLineRequestProject"; -export * from "./VendorCreditRequest"; -export * from "./VendorCreditRequestAccountingPeriod"; -export * from "./VendorCreditRequestCompany"; -export * from "./VendorCreditRequestCurrency"; -export * from "./VendorCreditRequestTrackingCategoriesItem"; -export * from "./VendorCreditRequestVendor"; -export * from "./VendorCreditResponse"; -export * from "./VendorCreditTrackingCategoriesItem"; -export * from "./VendorCreditVendor"; -export * from "./WarningValidationProblem"; -export * from "./WebhookReceiver"; diff --git a/src/serialization/resources/index.ts b/src/serialization/resources/index.ts index 759acc241..588d17d86 100644 --- a/src/serialization/resources/index.ts +++ b/src/serialization/resources/index.ts @@ -1,4 +1,3 @@ -export * as accounting from "./accounting"; export * as ats from "./ats"; export * as crm from "./crm"; export * as filestorage from "./filestorage"; diff --git a/src/version.ts b/src/version.ts index 68e5be6bd..af16f1280 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const SDK_VERSION = "3.0.1"; +export const SDK_VERSION = "3.0.2"; diff --git a/tests/wire/accounting/accountDetails.test.ts b/tests/wire/accounting/accountDetails.test.ts deleted file mode 100644 index a02f33376..000000000 --- a/tests/wire/accounting/accountDetails.test.ts +++ /dev/null @@ -1,54 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import { MergeClient } from "../../../src/Client"; -import { mockServerPool } from "../../mock-server/MockServerPool"; - -describe("AccountDetailsClient", () => { - test("retrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - id: "0496d4c2-42e6-4072-80b3-7b69bfdc76fd", - integration: "BambooHR", - integration_slug: "bamboohr", - category: "hris", - end_user_origin_id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - end_user_organization_name: "Waystar Royco", - end_user_email_address: "kendall.roy@waystar-royco.com", - status: "COMPLETE", - webhook_listener_url: "https://api.merge.dev/api/integrations/webhook-listener/7fc3mee0UW8ecV4", - is_duplicate: true, - account_type: "PRODUCTION", - completed_at: "2024-08-26T20:11:19Z", - }; - server - .mockEndpoint() - .get("/accounting/v1/account-details") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.accountDetails.retrieve(); - expect(response).toEqual({ - id: "0496d4c2-42e6-4072-80b3-7b69bfdc76fd", - integration: "BambooHR", - integrationSlug: "bamboohr", - category: "hris", - endUserOriginId: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - endUserOrganizationName: "Waystar Royco", - endUserEmailAddress: "kendall.roy@waystar-royco.com", - status: "COMPLETE", - webhookListenerUrl: "https://api.merge.dev/api/integrations/webhook-listener/7fc3mee0UW8ecV4", - isDuplicate: true, - accountType: "PRODUCTION", - completedAt: new Date("2024-08-26T20:11:19.000Z"), - }); - }); -}); diff --git a/tests/wire/accounting/accountToken.test.ts b/tests/wire/accounting/accountToken.test.ts deleted file mode 100644 index b2c44fe84..000000000 --- a/tests/wire/accounting/accountToken.test.ts +++ /dev/null @@ -1,62 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import { MergeClient } from "../../../src/Client"; -import { mockServerPool } from "../../mock-server/MockServerPool"; - -describe("AccountTokenClient", () => { - test("retrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - account_token: "T9klMDQrcHdm9jrtHuOS2Nf06BIHwMNjpPXPMB", - integration: { - name: "name", - abbreviated_name: "abbreviated_name", - categories: ["hris"], - image: "image", - square_image: "square_image", - color: "color", - slug: "slug", - api_endpoints_to_documentation_urls: { key: "value" }, - webhook_setup_guide_url: "webhook_setup_guide_url", - category_beta_status: { key: "value" }, - }, - id: "0496d4c2-42e6-4072-80b3-7b69bfdc76fd", - }; - server - .mockEndpoint() - .get("/accounting/v1/account-token/public_token") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.accountToken.retrieve("public_token"); - expect(response).toEqual({ - accountToken: "T9klMDQrcHdm9jrtHuOS2Nf06BIHwMNjpPXPMB", - integration: { - name: "name", - abbreviatedName: "abbreviated_name", - categories: ["hris"], - image: "image", - squareImage: "square_image", - color: "color", - slug: "slug", - apiEndpointsToDocumentationUrls: { - key: "value", - }, - webhookSetupGuideUrl: "webhook_setup_guide_url", - categoryBetaStatus: { - key: "value", - }, - }, - id: "0496d4c2-42e6-4072-80b3-7b69bfdc76fd", - }); - }); -}); diff --git a/tests/wire/accounting/accountingPeriods.test.ts b/tests/wire/accounting/accountingPeriods.test.ts deleted file mode 100644 index a2dd69ed1..000000000 --- a/tests/wire/accounting/accountingPeriods.test.ts +++ /dev/null @@ -1,145 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import { MergeClient } from "../../../src/Client"; -import { mockServerPool } from "../../mock-server/MockServerPool"; - -describe("AccountingPeriodsClient", () => { - test("list", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "3015f7b1-4d01-460d-bfab-02a52d16cbd0", - remote_id: "2804580", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - name: "April 2020 Financials", - status: "ACTIVE", - start_date: "2020-03-31T00:00:00Z", - end_date: "2020-05-01T00:00:00Z", - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/accounting-periods") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.accountingPeriods.list({ - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - pageSize: 1, - }); - expect(response).toEqual({ - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "3015f7b1-4d01-460d-bfab-02a52d16cbd0", - remoteId: "2804580", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - name: "April 2020 Financials", - status: "ACTIVE", - startDate: new Date("2020-03-31T00:00:00.000Z"), - endDate: new Date("2020-05-01T00:00:00.000Z"), - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - }, - ], - }); - }); - - test("retrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - id: "3015f7b1-4d01-460d-bfab-02a52d16cbd0", - remote_id: "2804580", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - name: "April 2020 Financials", - status: "ACTIVE", - start_date: "2020-03-31T00:00:00Z", - end_date: "2020-05-01T00:00:00Z", - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - }; - server - .mockEndpoint() - .get("/accounting/v1/accounting-periods/id") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.accountingPeriods.retrieve("id", { - includeRemoteData: true, - includeShellData: true, - }); - expect(response).toEqual({ - id: "3015f7b1-4d01-460d-bfab-02a52d16cbd0", - remoteId: "2804580", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - name: "April 2020 Financials", - status: "ACTIVE", - startDate: new Date("2020-03-31T00:00:00.000Z"), - endDate: new Date("2020-05-01T00:00:00.000Z"), - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - }); - }); -}); diff --git a/tests/wire/accounting/accounts.test.ts b/tests/wire/accounting/accounts.test.ts deleted file mode 100644 index c40158350..000000000 --- a/tests/wire/accounting/accounts.test.ts +++ /dev/null @@ -1,756 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import { MergeClient } from "../../../src/Client"; -import { mockServerPool } from "../../mock-server/MockServerPool"; - -describe("AccountsClient", () => { - test("list", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "21", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - name: "Cash", - description: "Cash", - classification: "ASSET", - type: "Asset", - account_type: "BANK", - status: "ACTIVE", - current_balance: 1.1, - currency: "XUA", - account_number: "X12Y9AB", - parent_account: "22d92d6c-22f9-11ed-861d-0242ac120002", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/accounts") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.accounts.list({ - accountType: "account_type", - classification: "", - companyId: "company_id", - createdAfter: new Date("2024-01-15T09:30:00.000Z"), - createdBefore: new Date("2024-01-15T09:30:00.000Z"), - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - expand: "company", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - name: "name", - pageSize: 1, - remoteFields: "classification", - remoteId: "remote_id", - showEnumOrigins: "classification", - status: "", - }); - expect(response).toEqual({ - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "21", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - name: "Cash", - description: "Cash", - classification: "ASSET", - type: "Asset", - accountType: "BANK", - status: "ACTIVE", - currentBalance: 1.1, - currency: "XUA", - accountNumber: "X12Y9AB", - parentAccount: "22d92d6c-22f9-11ed-861d-0242ac120002", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - }, - ], - }); - }); - - test("create", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - const rawRequestBody = { model: {} }; - const rawResponseBody = { - model: { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "21", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - name: "Cash", - description: "Cash", - classification: "ASSET", - type: "Asset", - account_type: "BANK", - status: "ACTIVE", - current_balance: 1.1, - currency: "XUA", - account_number: "X12Y9AB", - parent_account: "22d92d6c-22f9-11ed-861d-0242ac120002", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - }, - warnings: [ - { - source: { pointer: "pointer" }, - title: "Unrecognized Field", - detail: "An unrecognized field, age, was passed in with request data.", - problem_type: "UNRECOGNIZED_FIELD", - }, - ], - errors: [ - { - source: { pointer: "pointer" }, - title: "Missing Required Field", - detail: "custom_fields is a required field on model.", - problem_type: "MISSING_REQUIRED_FIELD", - }, - ], - logs: [ - { - log_id: "99433219-8017-4acd-bb3c-ceb23d663832", - dashboard_view: "https://app.merge.dev/logs/99433219-8017-4acd-bb3c-ceb23d663832", - log_summary: { - url: "www.exampleintegration.com/api/v1/exampleapi", - method: "POST", - status_code: 200, - }, - }, - ], - }; - server - .mockEndpoint() - .post("/accounting/v1/accounts") - .jsonBody(rawRequestBody) - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.accounts.create({ - isDebugMode: true, - runAsync: true, - model: {}, - }); - expect(response).toEqual({ - model: { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "21", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - name: "Cash", - description: "Cash", - classification: "ASSET", - type: "Asset", - accountType: "BANK", - status: "ACTIVE", - currentBalance: 1.1, - currency: "XUA", - accountNumber: "X12Y9AB", - parentAccount: "22d92d6c-22f9-11ed-861d-0242ac120002", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - }, - warnings: [ - { - source: { - pointer: "pointer", - }, - title: "Unrecognized Field", - detail: "An unrecognized field, age, was passed in with request data.", - problemType: "UNRECOGNIZED_FIELD", - }, - ], - errors: [ - { - source: { - pointer: "pointer", - }, - title: "Missing Required Field", - detail: "custom_fields is a required field on model.", - problemType: "MISSING_REQUIRED_FIELD", - }, - ], - logs: [ - { - logId: "99433219-8017-4acd-bb3c-ceb23d663832", - dashboardView: "https://app.merge.dev/logs/99433219-8017-4acd-bb3c-ceb23d663832", - logSummary: { - url: "www.exampleintegration.com/api/v1/exampleapi", - method: "POST", - statusCode: 200, - }, - }, - ], - }); - }); - - test("retrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "21", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - name: "Cash", - description: "Cash", - classification: "ASSET", - type: "Asset", - account_type: "BANK", - status: "ACTIVE", - current_balance: 1.1, - currency: "XUA", - account_number: "X12Y9AB", - parent_account: "22d92d6c-22f9-11ed-861d-0242ac120002", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - }; - server - .mockEndpoint() - .get("/accounting/v1/accounts/id") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.accounts.retrieve("id", { - expand: "company", - includeRemoteData: true, - includeShellData: true, - remoteFields: "classification", - showEnumOrigins: "classification", - }); - expect(response).toEqual({ - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "21", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - name: "Cash", - description: "Cash", - classification: "ASSET", - type: "Asset", - accountType: "BANK", - status: "ACTIVE", - currentBalance: 1.1, - currency: "XUA", - accountNumber: "X12Y9AB", - parentAccount: "22d92d6c-22f9-11ed-861d-0242ac120002", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - }); - }); - - test("metaPostRetrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - request_schema: { - type: "object", - properties: { - model: { - type: "object", - required: [ - "last_name", - "first_name", - "merge_categories", - "new_york_city_neighborhood", - "favorite_tv_shows", - "favorite_watch", - ], - properties: { - email_addresses: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - email_address_type: { type: "string", title: "email_address_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "email_addresses", - description: "Array of email_addresses objects", - }, - urls: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - url_type: { type: "string", title: "url_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "urls", - description: "Array of urls objects", - }, - first_name: { type: "string", title: "first_name", description: "The first name." }, - last_name: { type: "string", title: "last_name", description: "The last name." }, - phone_numbers: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - phone_number_type: { type: "string", title: "phone_number_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "phone_numbers", - description: "Array of phone_numbers objects", - }, - tags: { - type: "array", - items: { type: "string", format: "uuid" }, - title: "tags", - description: "Array of tags names", - }, - attachments: { - type: "array", - items: { - type: "object", - properties: { - id: { type: "string", title: "id" }, - file_url: { type: "string", title: "file_url" }, - file_name: { type: "string", title: "file_name" }, - attachment_type: { type: "string", title: "attachment_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "attachments", - description: "Array of attachments objects ", - }, - merge_categories: { - type: "array", - categories: { - type: "string", - enum: [ - "HRIS", - "ATS", - "Accounting", - "Ticketing", - "File Storage", - "CRM", - "Marketing Automation", - ], - enum_information: [ - { value: "HRIS", description: "Merge HRIS Category" }, - { value: "ATS", description: "Merge ATS Category" }, - { value: "Accounting", description: "Merge Accounting Category" }, - { value: "Ticketing", description: "Merge Ticketing Category" }, - { value: "File Storage", description: "Merge File Storage Category" }, - { value: "CRM", description: "Merge CRM Category" }, - { - value: "Marketing Automation", - description: "Merge Marketing Automation Category", - }, - ], - }, - title: "Merge Categories", - description: "Array of Merge's Unified API Categories", - }, - new_york_city_neighborhood: { - type: "string", - title: "Borough", - description: "One of the 5 Boroughs of New York City", - }, - favorite_tv_shows: { - type: "array", - items: { type: "string", format: "uuid" }, - title: "Favorite TV Shows", - description: "Array of TV Show objects on merge.tv_shows", - }, - favorite_watch: { - type: "string", - title: "Favorite Watch", - description: "Favorite watch of all time", - }, - }, - }, - }, - }, - remote_field_classes: { key: "value" }, - status: { linked_account_status: "linked_account_status", can_make_request: true }, - has_conditional_params: true, - has_required_linked_account_params: true, - }; - server - .mockEndpoint() - .get("/accounting/v1/accounts/meta/post") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.accounts.metaPostRetrieve(); - expect(response).toEqual({ - requestSchema: { - type: "object", - properties: { - model: { - type: "object", - required: [ - "last_name", - "first_name", - "merge_categories", - "new_york_city_neighborhood", - "favorite_tv_shows", - "favorite_watch", - ], - properties: { - email_addresses: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - email_address_type: { - type: "string", - title: "email_address_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "email_addresses", - description: "Array of email_addresses objects", - }, - urls: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - url_type: { - type: "string", - title: "url_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "urls", - description: "Array of urls objects", - }, - first_name: { - type: "string", - title: "first_name", - description: "The first name.", - }, - last_name: { - type: "string", - title: "last_name", - description: "The last name.", - }, - phone_numbers: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - phone_number_type: { - type: "string", - title: "phone_number_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "phone_numbers", - description: "Array of phone_numbers objects", - }, - tags: { - type: "array", - items: { - type: "string", - format: "uuid", - }, - title: "tags", - description: "Array of tags names", - }, - attachments: { - type: "array", - items: { - type: "object", - properties: { - id: { - type: "string", - title: "id", - }, - file_url: { - type: "string", - title: "file_url", - }, - file_name: { - type: "string", - title: "file_name", - }, - attachment_type: { - type: "string", - title: "attachment_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "attachments", - description: "Array of attachments objects ", - }, - merge_categories: { - type: "array", - categories: { - type: "string", - enum: [ - "HRIS", - "ATS", - "Accounting", - "Ticketing", - "File Storage", - "CRM", - "Marketing Automation", - ], - enum_information: [ - { - value: "HRIS", - description: "Merge HRIS Category", - }, - { - value: "ATS", - description: "Merge ATS Category", - }, - { - value: "Accounting", - description: "Merge Accounting Category", - }, - { - value: "Ticketing", - description: "Merge Ticketing Category", - }, - { - value: "File Storage", - description: "Merge File Storage Category", - }, - { - value: "CRM", - description: "Merge CRM Category", - }, - { - value: "Marketing Automation", - description: "Merge Marketing Automation Category", - }, - ], - }, - title: "Merge Categories", - description: "Array of Merge's Unified API Categories", - }, - new_york_city_neighborhood: { - type: "string", - title: "Borough", - description: "One of the 5 Boroughs of New York City", - }, - favorite_tv_shows: { - type: "array", - items: { - type: "string", - format: "uuid", - }, - title: "Favorite TV Shows", - description: "Array of TV Show objects on merge.tv_shows", - }, - favorite_watch: { - type: "string", - title: "Favorite Watch", - description: "Favorite watch of all time", - }, - }, - }, - }, - }, - remoteFieldClasses: { - key: "value", - }, - status: { - linkedAccountStatus: "linked_account_status", - canMakeRequest: true, - }, - hasConditionalParams: true, - hasRequiredLinkedAccountParams: true, - }); - }); -}); diff --git a/tests/wire/accounting/addresses.test.ts b/tests/wire/accounting/addresses.test.ts deleted file mode 100644 index b294bec0f..000000000 --- a/tests/wire/accounting/addresses.test.ts +++ /dev/null @@ -1,55 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import { MergeClient } from "../../../src/Client"; -import { mockServerPool } from "../../mock-server/MockServerPool"; - -describe("AddressesClient", () => { - test("retrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - type: "BILLING", - street_1: "2920 Broadway", - street_2: "2nd Floor", - city: "New York", - state: "NY", - country_subdivision: "NY", - country: "AF", - zip_code: "10027", - }; - server - .mockEndpoint() - .get("/accounting/v1/addresses/id") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.addresses.retrieve("id", { - includeRemoteData: true, - includeShellData: true, - remoteFields: "type", - showEnumOrigins: "type", - }); - expect(response).toEqual({ - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - type: "BILLING", - street1: "2920 Broadway", - street2: "2nd Floor", - city: "New York", - state: "NY", - countrySubdivision: "NY", - country: "AF", - zipCode: "10027", - }); - }); -}); diff --git a/tests/wire/accounting/asyncPassthrough.test.ts b/tests/wire/accounting/asyncPassthrough.test.ts deleted file mode 100644 index 3693260ef..000000000 --- a/tests/wire/accounting/asyncPassthrough.test.ts +++ /dev/null @@ -1,93 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import { MergeClient } from "../../../src/Client"; -import { mockServerPool } from "../../mock-server/MockServerPool"; - -describe("AsyncPassthroughClient", () => { - test("create", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - const rawRequestBody = { method: "GET", path: "/scooters" }; - const rawResponseBody = { async_passthrough_receipt_id: "fd29020f-2695-445e-922e-dcd5e81903fd" }; - server - .mockEndpoint() - .post("/accounting/v1/async-passthrough") - .jsonBody(rawRequestBody) - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.asyncPassthrough.create({ - method: "GET", - path: "/scooters", - }); - expect(response).toEqual({ - asyncPassthroughReceiptId: "fd29020f-2695-445e-922e-dcd5e81903fd", - }); - }); - - test("retrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - method: "GET", - path: "/scooters", - status: 200, - response: { - scooters: [ - { company: "Lime", model: "Gen 2.5" }, - { company: "Bird", model: "Bird Zero" }, - ], - }, - response_headers: { "X-Page-Token": "value" }, - response_type: "JSON", - headers: { "EXTRA-HEADER": "value", Authorization: "" }, - }; - server - .mockEndpoint() - .get("/accounting/v1/async-passthrough/async_passthrough_receipt_id") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.asyncPassthrough.retrieve("async_passthrough_receipt_id"); - expect(response).toEqual({ - method: "GET", - path: "/scooters", - status: 200, - response: { - scooters: [ - { - company: "Lime", - model: "Gen 2.5", - }, - { - company: "Bird", - model: "Bird Zero", - }, - ], - }, - responseHeaders: { - "X-Page-Token": "value", - }, - responseType: "JSON", - headers: { - "EXTRA-HEADER": "value", - Authorization: "", - }, - }); - }); -}); diff --git a/tests/wire/accounting/asyncTasks.test.ts b/tests/wire/accounting/asyncTasks.test.ts deleted file mode 100644 index 6863526ec..000000000 --- a/tests/wire/accounting/asyncTasks.test.ts +++ /dev/null @@ -1,145 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import { MergeClient } from "../../../src/Client"; -import { mockServerPool } from "../../mock-server/MockServerPool"; - -describe("AsyncTasksClient", () => { - test("retrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - status: "QUEUED", - result: { - status_code: 201, - response: { - model: { - id: "9871b4a9-f5d2-4f3b-a66b-dfedbed42c46", - remote_id: "990110", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - integration_params: { unique_integration_field: "unique_integration_field_value" }, - linked_account_params: { unique_linked_account_field: "unique_linked_account_field_value" }, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - type: "ACCOUNTS_RECEIVABLE", - contact: "022a2bef-57e5-4def-8ed2-7c41bd9a5ed8", - number: "AIQ12546", - issue_date: "2020-03-31T00:00:00Z", - due_date: "2020-04-15T00:00:00Z", - memo: "Weekly Payment", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - employee: "7442f0d5-722d-45bd-b807-6e38489d37fe", - paid_on_date: "2020-04-01T00:00:00Z", - currency: "USD", - exchange_rate: "2.9", - status: "DRAFT", - total_discount: 0, - sub_total: 100, - total_tax_amount: 5, - total_amount: 105, - balance: 105, - inclusive_of_tax: false, - remote_updated_at: "2020-04-01T00:00:00Z", - tracking_categories: [ - "7dc5ca17-d311-44cd-9ce0-333080367a18", - "6aa0700c-48e1-4c4a-8162-02e6a582df05", - "8c933d61-8f5b-4360-ac0c-c9dc87bee763", - ], - purchase_orders: [ - "e7378d8f-3992-4c2a-8417-ebdc4f2bfeb7", - "dd70ca2f-b120-46fa-889a-9604037f45fd", - "889b281d-739c-4759-95b8-0aedb3947131", - ], - accounting_period: "7dc5ca17-d311-44cd-9ce0-333080367a18", - payments: ["b26fd49a-cbae-470a-a8f8-bcbc119e0390"], - applied_payments: ["9017594e-dc33-4113-a5d2-b0f928e34fdd"], - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - }, - }, - }, - }; - server - .mockEndpoint() - .get("/accounting/v1/async-tasks/id") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.asyncTasks.retrieve("id"); - expect(response).toEqual({ - status: "QUEUED", - result: { - statusCode: 201, - response: { - model: { - id: "9871b4a9-f5d2-4f3b-a66b-dfedbed42c46", - remote_id: "990110", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - integration_params: { - unique_integration_field: "unique_integration_field_value", - }, - linked_account_params: { - unique_linked_account_field: "unique_linked_account_field_value", - }, - field_mappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - type: "ACCOUNTS_RECEIVABLE", - contact: "022a2bef-57e5-4def-8ed2-7c41bd9a5ed8", - number: "AIQ12546", - issue_date: "2020-03-31T00:00:00Z", - due_date: "2020-04-15T00:00:00Z", - memo: "Weekly Payment", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - employee: "7442f0d5-722d-45bd-b807-6e38489d37fe", - paid_on_date: "2020-04-01T00:00:00Z", - currency: "USD", - exchange_rate: "2.9", - status: "DRAFT", - total_discount: 0, - sub_total: 100, - total_tax_amount: 5, - total_amount: 105, - balance: 105, - inclusive_of_tax: false, - remote_updated_at: "2020-04-01T00:00:00Z", - tracking_categories: [ - "7dc5ca17-d311-44cd-9ce0-333080367a18", - "6aa0700c-48e1-4c4a-8162-02e6a582df05", - "8c933d61-8f5b-4360-ac0c-c9dc87bee763", - ], - purchase_orders: [ - "e7378d8f-3992-4c2a-8417-ebdc4f2bfeb7", - "dd70ca2f-b120-46fa-889a-9604037f45fd", - "889b281d-739c-4759-95b8-0aedb3947131", - ], - accounting_period: "7dc5ca17-d311-44cd-9ce0-333080367a18", - payments: ["b26fd49a-cbae-470a-a8f8-bcbc119e0390"], - applied_payments: ["9017594e-dc33-4113-a5d2-b0f928e34fdd"], - remote_data: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - }, - }, - }, - }); - }); -}); diff --git a/tests/wire/accounting/attachments.test.ts b/tests/wire/accounting/attachments.test.ts deleted file mode 100644 index 009f8a317..000000000 --- a/tests/wire/accounting/attachments.test.ts +++ /dev/null @@ -1,698 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import { MergeClient } from "../../../src/Client"; -import { mockServerPool } from "../../mock-server/MockServerPool"; - -describe("AttachmentsClient", () => { - test("list", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "1018270", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - file_name: "invoice.png", - file_url: "https://merge-brand.s3.amazonaws.com/20210315/rect-logo-270x80%402x.png", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/attachments") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.attachments.list({ - companyId: "company_id", - createdAfter: new Date("2024-01-15T09:30:00.000Z"), - createdBefore: new Date("2024-01-15T09:30:00.000Z"), - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - pageSize: 1, - remoteId: "remote_id", - }); - expect(response).toEqual({ - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "1018270", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - fileName: "invoice.png", - fileUrl: "https://merge-brand.s3.amazonaws.com/20210315/rect-logo-270x80%402x.png", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - }, - ], - }); - }); - - test("create", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - const rawRequestBody = { model: {} }; - const rawResponseBody = { - model: { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "1018270", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - file_name: "invoice.png", - file_url: "https://merge-brand.s3.amazonaws.com/20210315/rect-logo-270x80%402x.png", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - }, - warnings: [ - { - source: { pointer: "pointer" }, - title: "Unrecognized Field", - detail: "An unrecognized field, age, was passed in with request data.", - problem_type: "UNRECOGNIZED_FIELD", - }, - ], - errors: [ - { - source: { pointer: "pointer" }, - title: "Missing Required Field", - detail: "custom_fields is a required field on model.", - problem_type: "MISSING_REQUIRED_FIELD", - }, - ], - logs: [ - { - log_id: "99433219-8017-4acd-bb3c-ceb23d663832", - dashboard_view: "https://app.merge.dev/logs/99433219-8017-4acd-bb3c-ceb23d663832", - log_summary: { - url: "www.exampleintegration.com/api/v1/exampleapi", - method: "POST", - status_code: 200, - }, - }, - ], - }; - server - .mockEndpoint() - .post("/accounting/v1/attachments") - .jsonBody(rawRequestBody) - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.attachments.create({ - isDebugMode: true, - runAsync: true, - model: {}, - }); - expect(response).toEqual({ - model: { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "1018270", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - fileName: "invoice.png", - fileUrl: "https://merge-brand.s3.amazonaws.com/20210315/rect-logo-270x80%402x.png", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - }, - warnings: [ - { - source: { - pointer: "pointer", - }, - title: "Unrecognized Field", - detail: "An unrecognized field, age, was passed in with request data.", - problemType: "UNRECOGNIZED_FIELD", - }, - ], - errors: [ - { - source: { - pointer: "pointer", - }, - title: "Missing Required Field", - detail: "custom_fields is a required field on model.", - problemType: "MISSING_REQUIRED_FIELD", - }, - ], - logs: [ - { - logId: "99433219-8017-4acd-bb3c-ceb23d663832", - dashboardView: "https://app.merge.dev/logs/99433219-8017-4acd-bb3c-ceb23d663832", - logSummary: { - url: "www.exampleintegration.com/api/v1/exampleapi", - method: "POST", - statusCode: 200, - }, - }, - ], - }); - }); - - test("retrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "1018270", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - file_name: "invoice.png", - file_url: "https://merge-brand.s3.amazonaws.com/20210315/rect-logo-270x80%402x.png", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - }; - server - .mockEndpoint() - .get("/accounting/v1/attachments/id") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.attachments.retrieve("id", { - includeRemoteData: true, - includeShellData: true, - }); - expect(response).toEqual({ - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "1018270", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - fileName: "invoice.png", - fileUrl: "https://merge-brand.s3.amazonaws.com/20210315/rect-logo-270x80%402x.png", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - }); - }); - - test("metaPostRetrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - request_schema: { - type: "object", - properties: { - model: { - type: "object", - required: [ - "last_name", - "first_name", - "merge_categories", - "new_york_city_neighborhood", - "favorite_tv_shows", - "favorite_watch", - ], - properties: { - email_addresses: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - email_address_type: { type: "string", title: "email_address_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "email_addresses", - description: "Array of email_addresses objects", - }, - urls: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - url_type: { type: "string", title: "url_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "urls", - description: "Array of urls objects", - }, - first_name: { type: "string", title: "first_name", description: "The first name." }, - last_name: { type: "string", title: "last_name", description: "The last name." }, - phone_numbers: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - phone_number_type: { type: "string", title: "phone_number_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "phone_numbers", - description: "Array of phone_numbers objects", - }, - tags: { - type: "array", - items: { type: "string", format: "uuid" }, - title: "tags", - description: "Array of tags names", - }, - attachments: { - type: "array", - items: { - type: "object", - properties: { - id: { type: "string", title: "id" }, - file_url: { type: "string", title: "file_url" }, - file_name: { type: "string", title: "file_name" }, - attachment_type: { type: "string", title: "attachment_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "attachments", - description: "Array of attachments objects ", - }, - merge_categories: { - type: "array", - categories: { - type: "string", - enum: [ - "HRIS", - "ATS", - "Accounting", - "Ticketing", - "File Storage", - "CRM", - "Marketing Automation", - ], - enum_information: [ - { value: "HRIS", description: "Merge HRIS Category" }, - { value: "ATS", description: "Merge ATS Category" }, - { value: "Accounting", description: "Merge Accounting Category" }, - { value: "Ticketing", description: "Merge Ticketing Category" }, - { value: "File Storage", description: "Merge File Storage Category" }, - { value: "CRM", description: "Merge CRM Category" }, - { - value: "Marketing Automation", - description: "Merge Marketing Automation Category", - }, - ], - }, - title: "Merge Categories", - description: "Array of Merge's Unified API Categories", - }, - new_york_city_neighborhood: { - type: "string", - title: "Borough", - description: "One of the 5 Boroughs of New York City", - }, - favorite_tv_shows: { - type: "array", - items: { type: "string", format: "uuid" }, - title: "Favorite TV Shows", - description: "Array of TV Show objects on merge.tv_shows", - }, - favorite_watch: { - type: "string", - title: "Favorite Watch", - description: "Favorite watch of all time", - }, - }, - }, - }, - }, - remote_field_classes: { key: "value" }, - status: { linked_account_status: "linked_account_status", can_make_request: true }, - has_conditional_params: true, - has_required_linked_account_params: true, - }; - server - .mockEndpoint() - .get("/accounting/v1/attachments/meta/post") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.attachments.metaPostRetrieve(); - expect(response).toEqual({ - requestSchema: { - type: "object", - properties: { - model: { - type: "object", - required: [ - "last_name", - "first_name", - "merge_categories", - "new_york_city_neighborhood", - "favorite_tv_shows", - "favorite_watch", - ], - properties: { - email_addresses: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - email_address_type: { - type: "string", - title: "email_address_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "email_addresses", - description: "Array of email_addresses objects", - }, - urls: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - url_type: { - type: "string", - title: "url_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "urls", - description: "Array of urls objects", - }, - first_name: { - type: "string", - title: "first_name", - description: "The first name.", - }, - last_name: { - type: "string", - title: "last_name", - description: "The last name.", - }, - phone_numbers: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - phone_number_type: { - type: "string", - title: "phone_number_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "phone_numbers", - description: "Array of phone_numbers objects", - }, - tags: { - type: "array", - items: { - type: "string", - format: "uuid", - }, - title: "tags", - description: "Array of tags names", - }, - attachments: { - type: "array", - items: { - type: "object", - properties: { - id: { - type: "string", - title: "id", - }, - file_url: { - type: "string", - title: "file_url", - }, - file_name: { - type: "string", - title: "file_name", - }, - attachment_type: { - type: "string", - title: "attachment_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "attachments", - description: "Array of attachments objects ", - }, - merge_categories: { - type: "array", - categories: { - type: "string", - enum: [ - "HRIS", - "ATS", - "Accounting", - "Ticketing", - "File Storage", - "CRM", - "Marketing Automation", - ], - enum_information: [ - { - value: "HRIS", - description: "Merge HRIS Category", - }, - { - value: "ATS", - description: "Merge ATS Category", - }, - { - value: "Accounting", - description: "Merge Accounting Category", - }, - { - value: "Ticketing", - description: "Merge Ticketing Category", - }, - { - value: "File Storage", - description: "Merge File Storage Category", - }, - { - value: "CRM", - description: "Merge CRM Category", - }, - { - value: "Marketing Automation", - description: "Merge Marketing Automation Category", - }, - ], - }, - title: "Merge Categories", - description: "Array of Merge's Unified API Categories", - }, - new_york_city_neighborhood: { - type: "string", - title: "Borough", - description: "One of the 5 Boroughs of New York City", - }, - favorite_tv_shows: { - type: "array", - items: { - type: "string", - format: "uuid", - }, - title: "Favorite TV Shows", - description: "Array of TV Show objects on merge.tv_shows", - }, - favorite_watch: { - type: "string", - title: "Favorite Watch", - description: "Favorite watch of all time", - }, - }, - }, - }, - }, - remoteFieldClasses: { - key: "value", - }, - status: { - linkedAccountStatus: "linked_account_status", - canMakeRequest: true, - }, - hasConditionalParams: true, - hasRequiredLinkedAccountParams: true, - }); - }); -}); diff --git a/tests/wire/accounting/auditTrail.test.ts b/tests/wire/accounting/auditTrail.test.ts deleted file mode 100644 index 365ee5008..000000000 --- a/tests/wire/accounting/auditTrail.test.ts +++ /dev/null @@ -1,67 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import { MergeClient } from "../../../src/Client"; -import { mockServerPool } from "../../mock-server/MockServerPool"; - -describe("AuditTrailClient", () => { - test("list", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "b5ceea2a-7171-47ce-8090-165cfce5572c", - user_name: "Gil Feig", - user_email: "hello@merge.dev", - role: "ADMIN", - ip_address: "192.0.2.123", - event_type: "CREATED_REMOTE_PRODUCTION_API_KEY", - event_description: - "Organization-wide Scopes for model hris.Employee updated from Read to Read+Write", - created_at: "2024-01-15T09:30:00Z", - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/audit-trail") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.auditTrail.list({ - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - endDate: "end_date", - eventType: "event_type", - pageSize: 1, - startDate: "start_date", - userEmail: "user_email", - }); - expect(response).toEqual({ - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "b5ceea2a-7171-47ce-8090-165cfce5572c", - userName: "Gil Feig", - userEmail: "hello@merge.dev", - role: "ADMIN", - ipAddress: "192.0.2.123", - eventType: "CREATED_REMOTE_PRODUCTION_API_KEY", - eventDescription: - "Organization-wide Scopes for model hris.Employee updated from Read to Read+Write", - createdAt: new Date("2024-01-15T09:30:00.000Z"), - }, - ], - }); - }); -}); diff --git a/tests/wire/accounting/availableActions.test.ts b/tests/wire/accounting/availableActions.test.ts deleted file mode 100644 index 389daa51a..000000000 --- a/tests/wire/accounting/availableActions.test.ts +++ /dev/null @@ -1,76 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import { MergeClient } from "../../../src/Client"; -import { mockServerPool } from "../../mock-server/MockServerPool"; - -describe("AvailableActionsClient", () => { - test("retrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - integration: { - name: "name", - abbreviated_name: "abbreviated_name", - categories: ["hris"], - image: "image", - square_image: "square_image", - color: "color", - slug: "slug", - api_endpoints_to_documentation_urls: { key: "value" }, - webhook_setup_guide_url: "webhook_setup_guide_url", - category_beta_status: { key: "value" }, - }, - passthrough_available: true, - available_model_operations: [ - { - model_name: "Candidate", - available_operations: ["FETCH", "CREATE"], - required_post_parameters: ["remote_user_id"], - supported_fields: ["first_name", "last_name", "company", "title"], - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/available-actions") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.availableActions.retrieve(); - expect(response).toEqual({ - integration: { - name: "name", - abbreviatedName: "abbreviated_name", - categories: ["hris"], - image: "image", - squareImage: "square_image", - color: "color", - slug: "slug", - apiEndpointsToDocumentationUrls: { - key: "value", - }, - webhookSetupGuideUrl: "webhook_setup_guide_url", - categoryBetaStatus: { - key: "value", - }, - }, - passthroughAvailable: true, - availableModelOperations: [ - { - modelName: "Candidate", - availableOperations: ["FETCH", "CREATE"], - requiredPostParameters: ["remote_user_id"], - supportedFields: ["first_name", "last_name", "company", "title"], - }, - ], - }); - }); -}); diff --git a/tests/wire/accounting/balanceSheets.test.ts b/tests/wire/accounting/balanceSheets.test.ts deleted file mode 100644 index b8a0dbd93..000000000 --- a/tests/wire/accounting/balanceSheets.test.ts +++ /dev/null @@ -1,387 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import { MergeClient } from "../../../src/Client"; -import { mockServerPool } from "../../mock-server/MockServerPool"; - -describe("BalanceSheetsClient", () => { - test("list", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "9871b4a9-f5d2-4f3b-a66b-dfedbed42c46", - remote_id: "8937018", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - name: "BalanceSheet", - currency: "XUA", - company: "company", - date: "2021-10-01T00:00:00Z", - net_assets: 1000, - assets: [ - { - remote_id: "10010", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - name: "Assets", - value: 1000, - sub_items: [ - { remote_id: "10300", name: "Revenue - San Francisco", value: 500 }, - { remote_id: "10301", name: "Revenue - New York", value: 500 }, - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - }, - ], - liabilities: [ - { - remote_id: "10011", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - name: "Liabilities", - value: 500, - sub_items: [ - { remote_id: "10300", name: "Revenue - San Francisco", value: 500 }, - { remote_id: "10301", name: "Revenue - New York", value: 500 }, - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - }, - ], - equity: [ - { - remote_id: "10012", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - name: "Equity", - value: 500, - sub_items: [ - { remote_id: "10300", name: "Revenue - San Francisco", value: 500 }, - { remote_id: "10301", name: "Revenue - New York", value: 500 }, - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - }, - ], - remote_generated_at: "2021-10-01T00:00:00Z", - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/platform-endpoint", data: ["Varies by platform"] }], - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/balance-sheets") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.balanceSheets.list({ - companyId: "company_id", - createdAfter: new Date("2024-01-15T09:30:00.000Z"), - createdBefore: new Date("2024-01-15T09:30:00.000Z"), - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - expand: "company", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - pageSize: 1, - remoteId: "remote_id", - }); - expect(response).toEqual({ - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "9871b4a9-f5d2-4f3b-a66b-dfedbed42c46", - remoteId: "8937018", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - name: "BalanceSheet", - currency: "XUA", - company: "company", - date: new Date("2021-10-01T00:00:00.000Z"), - netAssets: 1000, - assets: [ - { - remoteId: "10010", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - name: "Assets", - value: 1000, - subItems: [ - { - remote_id: "10300", - name: "Revenue - San Francisco", - value: 500, - }, - { - remote_id: "10301", - name: "Revenue - New York", - value: 500, - }, - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - }, - ], - liabilities: [ - { - remoteId: "10011", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - name: "Liabilities", - value: 500, - subItems: [ - { - remote_id: "10300", - name: "Revenue - San Francisco", - value: 500, - }, - { - remote_id: "10301", - name: "Revenue - New York", - value: 500, - }, - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - }, - ], - equity: [ - { - remoteId: "10012", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - name: "Equity", - value: 500, - subItems: [ - { - remote_id: "10300", - name: "Revenue - San Francisco", - value: 500, - }, - { - remote_id: "10301", - name: "Revenue - New York", - value: 500, - }, - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - }, - ], - remoteGeneratedAt: new Date("2021-10-01T00:00:00.000Z"), - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/platform-endpoint", - data: ["Varies by platform"], - }, - ], - }, - ], - }); - }); - - test("retrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - id: "9871b4a9-f5d2-4f3b-a66b-dfedbed42c46", - remote_id: "8937018", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - name: "BalanceSheet", - currency: "XUA", - company: "company", - date: "2021-10-01T00:00:00Z", - net_assets: 1000, - assets: [ - { - remote_id: "10010", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - name: "Assets", - value: 1000, - sub_items: [ - { remote_id: "10300", name: "Revenue - San Francisco", value: 500 }, - { remote_id: "10301", name: "Revenue - New York", value: 500 }, - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - remote_was_deleted: true, - }, - ], - liabilities: [ - { - remote_id: "10011", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - name: "Liabilities", - value: 500, - sub_items: [ - { remote_id: "10300", name: "Revenue - San Francisco", value: 500 }, - { remote_id: "10301", name: "Revenue - New York", value: 500 }, - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - remote_was_deleted: true, - }, - ], - equity: [ - { - remote_id: "10012", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - name: "Equity", - value: 500, - sub_items: [ - { remote_id: "10300", name: "Revenue - San Francisco", value: 500 }, - { remote_id: "10301", name: "Revenue - New York", value: 500 }, - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - remote_was_deleted: true, - }, - ], - remote_generated_at: "2021-10-01T00:00:00Z", - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/platform-endpoint", data: ["Varies by platform"] }], - }; - server - .mockEndpoint() - .get("/accounting/v1/balance-sheets/id") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.balanceSheets.retrieve("id", { - expand: "company", - includeRemoteData: true, - includeShellData: true, - }); - expect(response).toEqual({ - id: "9871b4a9-f5d2-4f3b-a66b-dfedbed42c46", - remoteId: "8937018", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - name: "BalanceSheet", - currency: "XUA", - company: "company", - date: new Date("2021-10-01T00:00:00.000Z"), - netAssets: 1000, - assets: [ - { - remoteId: "10010", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - name: "Assets", - value: 1000, - subItems: [ - { - remote_id: "10300", - name: "Revenue - San Francisco", - value: 500, - }, - { - remote_id: "10301", - name: "Revenue - New York", - value: 500, - }, - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - remoteWasDeleted: true, - }, - ], - liabilities: [ - { - remoteId: "10011", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - name: "Liabilities", - value: 500, - subItems: [ - { - remote_id: "10300", - name: "Revenue - San Francisco", - value: 500, - }, - { - remote_id: "10301", - name: "Revenue - New York", - value: 500, - }, - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - remoteWasDeleted: true, - }, - ], - equity: [ - { - remoteId: "10012", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - name: "Equity", - value: 500, - subItems: [ - { - remote_id: "10300", - name: "Revenue - San Francisco", - value: 500, - }, - { - remote_id: "10301", - name: "Revenue - New York", - value: 500, - }, - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - remoteWasDeleted: true, - }, - ], - remoteGeneratedAt: new Date("2021-10-01T00:00:00.000Z"), - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/platform-endpoint", - data: ["Varies by platform"], - }, - ], - }); - }); -}); diff --git a/tests/wire/accounting/bankFeedAccounts.test.ts b/tests/wire/accounting/bankFeedAccounts.test.ts deleted file mode 100644 index 0de0abc45..000000000 --- a/tests/wire/accounting/bankFeedAccounts.test.ts +++ /dev/null @@ -1,727 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import { MergeClient } from "../../../src/Client"; -import { mockServerPool } from "../../mock-server/MockServerPool"; - -describe("BankFeedAccountsClient", () => { - test("list", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "b26fd49a-cbae-470a-a8f8-bcbc119e0390", - remote_id: "987300", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - source_account_id: "123566909", - target_account_id: "49cd5a42-b311-4750-9361-52e2ed1d4653", - source_account_name: "Travel Bank Account", - source_account_number: "12567", - target_account_name: "Netsuite Travel Bank Account", - currency: "XUA", - feed_status: "ACTIVE", - feed_start_date: "2024-02-02T00:00:00Z", - source_account_balance: 123.94, - account_type: "BANK", - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [], - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/bank-feed-accounts") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.bankFeedAccounts.list({ - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - pageSize: 1, - }); - expect(response).toEqual({ - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "b26fd49a-cbae-470a-a8f8-bcbc119e0390", - remoteId: "987300", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - sourceAccountId: "123566909", - targetAccountId: "49cd5a42-b311-4750-9361-52e2ed1d4653", - sourceAccountName: "Travel Bank Account", - sourceAccountNumber: "12567", - targetAccountName: "Netsuite Travel Bank Account", - currency: "XUA", - feedStatus: "ACTIVE", - feedStartDate: new Date("2024-02-02T00:00:00.000Z"), - sourceAccountBalance: 123.94, - accountType: "BANK", - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [], - }, - ], - }); - }); - - test("create", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - const rawRequestBody = { model: {} }; - const rawResponseBody = { - model: { - id: "b26fd49a-cbae-470a-a8f8-bcbc119e0390", - remote_id: "987300", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - source_account_id: "123566909", - target_account_id: "49cd5a42-b311-4750-9361-52e2ed1d4653", - source_account_name: "Travel Bank Account", - source_account_number: "12567", - target_account_name: "Netsuite Travel Bank Account", - currency: "XUA", - feed_status: "ACTIVE", - feed_start_date: "2024-02-02T00:00:00Z", - source_account_balance: 123.94, - account_type: "BANK", - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ key: "value" }], - }, - warnings: [ - { - source: { pointer: "pointer" }, - title: "Unrecognized Field", - detail: "An unrecognized field, age, was passed in with request data.", - problem_type: "UNRECOGNIZED_FIELD", - }, - ], - errors: [ - { - source: { pointer: "pointer" }, - title: "Missing Required Field", - detail: "custom_fields is a required field on model.", - problem_type: "MISSING_REQUIRED_FIELD", - }, - ], - logs: [ - { - log_id: "99433219-8017-4acd-bb3c-ceb23d663832", - dashboard_view: "https://app.merge.dev/logs/99433219-8017-4acd-bb3c-ceb23d663832", - log_summary: { - url: "www.exampleintegration.com/api/v1/exampleapi", - method: "POST", - status_code: 200, - }, - }, - ], - }; - server - .mockEndpoint() - .post("/accounting/v1/bank-feed-accounts") - .jsonBody(rawRequestBody) - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.bankFeedAccounts.create({ - isDebugMode: true, - runAsync: true, - model: {}, - }); - expect(response).toEqual({ - model: { - id: "b26fd49a-cbae-470a-a8f8-bcbc119e0390", - remoteId: "987300", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - sourceAccountId: "123566909", - targetAccountId: "49cd5a42-b311-4750-9361-52e2ed1d4653", - sourceAccountName: "Travel Bank Account", - sourceAccountNumber: "12567", - targetAccountName: "Netsuite Travel Bank Account", - currency: "XUA", - feedStatus: "ACTIVE", - feedStartDate: new Date("2024-02-02T00:00:00.000Z"), - sourceAccountBalance: 123.94, - accountType: "BANK", - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - key: "value", - }, - ], - }, - warnings: [ - { - source: { - pointer: "pointer", - }, - title: "Unrecognized Field", - detail: "An unrecognized field, age, was passed in with request data.", - problemType: "UNRECOGNIZED_FIELD", - }, - ], - errors: [ - { - source: { - pointer: "pointer", - }, - title: "Missing Required Field", - detail: "custom_fields is a required field on model.", - problemType: "MISSING_REQUIRED_FIELD", - }, - ], - logs: [ - { - logId: "99433219-8017-4acd-bb3c-ceb23d663832", - dashboardView: "https://app.merge.dev/logs/99433219-8017-4acd-bb3c-ceb23d663832", - logSummary: { - url: "www.exampleintegration.com/api/v1/exampleapi", - method: "POST", - statusCode: 200, - }, - }, - ], - }); - }); - - test("retrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - id: "b26fd49a-cbae-470a-a8f8-bcbc119e0390", - remote_id: "987300", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - source_account_id: "123566909", - target_account_id: "49cd5a42-b311-4750-9361-52e2ed1d4653", - source_account_name: "Travel Bank Account", - source_account_number: "12567", - target_account_name: "Netsuite Travel Bank Account", - currency: "XUA", - feed_status: "ACTIVE", - feed_start_date: "2024-02-02T00:00:00Z", - source_account_balance: 123.94, - account_type: "BANK", - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ key: "value" }], - }; - server - .mockEndpoint() - .get("/accounting/v1/bank-feed-accounts/id") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.bankFeedAccounts.retrieve("id", { - includeRemoteData: true, - includeShellData: true, - }); - expect(response).toEqual({ - id: "b26fd49a-cbae-470a-a8f8-bcbc119e0390", - remoteId: "987300", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - sourceAccountId: "123566909", - targetAccountId: "49cd5a42-b311-4750-9361-52e2ed1d4653", - sourceAccountName: "Travel Bank Account", - sourceAccountNumber: "12567", - targetAccountName: "Netsuite Travel Bank Account", - currency: "XUA", - feedStatus: "ACTIVE", - feedStartDate: new Date("2024-02-02T00:00:00.000Z"), - sourceAccountBalance: 123.94, - accountType: "BANK", - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - key: "value", - }, - ], - }); - }); - - test("metaPostRetrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - request_schema: { - type: "object", - properties: { - model: { - type: "object", - required: [ - "last_name", - "first_name", - "merge_categories", - "new_york_city_neighborhood", - "favorite_tv_shows", - "favorite_watch", - ], - properties: { - email_addresses: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - email_address_type: { type: "string", title: "email_address_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "email_addresses", - description: "Array of email_addresses objects", - }, - urls: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - url_type: { type: "string", title: "url_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "urls", - description: "Array of urls objects", - }, - first_name: { type: "string", title: "first_name", description: "The first name." }, - last_name: { type: "string", title: "last_name", description: "The last name." }, - phone_numbers: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - phone_number_type: { type: "string", title: "phone_number_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "phone_numbers", - description: "Array of phone_numbers objects", - }, - tags: { - type: "array", - items: { type: "string", format: "uuid" }, - title: "tags", - description: "Array of tags names", - }, - attachments: { - type: "array", - items: { - type: "object", - properties: { - id: { type: "string", title: "id" }, - file_url: { type: "string", title: "file_url" }, - file_name: { type: "string", title: "file_name" }, - attachment_type: { type: "string", title: "attachment_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "attachments", - description: "Array of attachments objects ", - }, - merge_categories: { - type: "array", - categories: { - type: "string", - enum: [ - "HRIS", - "ATS", - "Accounting", - "Ticketing", - "File Storage", - "CRM", - "Marketing Automation", - ], - enum_information: [ - { value: "HRIS", description: "Merge HRIS Category" }, - { value: "ATS", description: "Merge ATS Category" }, - { value: "Accounting", description: "Merge Accounting Category" }, - { value: "Ticketing", description: "Merge Ticketing Category" }, - { value: "File Storage", description: "Merge File Storage Category" }, - { value: "CRM", description: "Merge CRM Category" }, - { - value: "Marketing Automation", - description: "Merge Marketing Automation Category", - }, - ], - }, - title: "Merge Categories", - description: "Array of Merge's Unified API Categories", - }, - new_york_city_neighborhood: { - type: "string", - title: "Borough", - description: "One of the 5 Boroughs of New York City", - }, - favorite_tv_shows: { - type: "array", - items: { type: "string", format: "uuid" }, - title: "Favorite TV Shows", - description: "Array of TV Show objects on merge.tv_shows", - }, - favorite_watch: { - type: "string", - title: "Favorite Watch", - description: "Favorite watch of all time", - }, - }, - }, - }, - }, - remote_field_classes: { key: "value" }, - status: { linked_account_status: "linked_account_status", can_make_request: true }, - has_conditional_params: true, - has_required_linked_account_params: true, - }; - server - .mockEndpoint() - .get("/accounting/v1/bank-feed-accounts/meta/post") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.bankFeedAccounts.metaPostRetrieve(); - expect(response).toEqual({ - requestSchema: { - type: "object", - properties: { - model: { - type: "object", - required: [ - "last_name", - "first_name", - "merge_categories", - "new_york_city_neighborhood", - "favorite_tv_shows", - "favorite_watch", - ], - properties: { - email_addresses: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - email_address_type: { - type: "string", - title: "email_address_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "email_addresses", - description: "Array of email_addresses objects", - }, - urls: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - url_type: { - type: "string", - title: "url_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "urls", - description: "Array of urls objects", - }, - first_name: { - type: "string", - title: "first_name", - description: "The first name.", - }, - last_name: { - type: "string", - title: "last_name", - description: "The last name.", - }, - phone_numbers: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - phone_number_type: { - type: "string", - title: "phone_number_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "phone_numbers", - description: "Array of phone_numbers objects", - }, - tags: { - type: "array", - items: { - type: "string", - format: "uuid", - }, - title: "tags", - description: "Array of tags names", - }, - attachments: { - type: "array", - items: { - type: "object", - properties: { - id: { - type: "string", - title: "id", - }, - file_url: { - type: "string", - title: "file_url", - }, - file_name: { - type: "string", - title: "file_name", - }, - attachment_type: { - type: "string", - title: "attachment_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "attachments", - description: "Array of attachments objects ", - }, - merge_categories: { - type: "array", - categories: { - type: "string", - enum: [ - "HRIS", - "ATS", - "Accounting", - "Ticketing", - "File Storage", - "CRM", - "Marketing Automation", - ], - enum_information: [ - { - value: "HRIS", - description: "Merge HRIS Category", - }, - { - value: "ATS", - description: "Merge ATS Category", - }, - { - value: "Accounting", - description: "Merge Accounting Category", - }, - { - value: "Ticketing", - description: "Merge Ticketing Category", - }, - { - value: "File Storage", - description: "Merge File Storage Category", - }, - { - value: "CRM", - description: "Merge CRM Category", - }, - { - value: "Marketing Automation", - description: "Merge Marketing Automation Category", - }, - ], - }, - title: "Merge Categories", - description: "Array of Merge's Unified API Categories", - }, - new_york_city_neighborhood: { - type: "string", - title: "Borough", - description: "One of the 5 Boroughs of New York City", - }, - favorite_tv_shows: { - type: "array", - items: { - type: "string", - format: "uuid", - }, - title: "Favorite TV Shows", - description: "Array of TV Show objects on merge.tv_shows", - }, - favorite_watch: { - type: "string", - title: "Favorite Watch", - description: "Favorite watch of all time", - }, - }, - }, - }, - }, - remoteFieldClasses: { - key: "value", - }, - status: { - linkedAccountStatus: "linked_account_status", - canMakeRequest: true, - }, - hasConditionalParams: true, - hasRequiredLinkedAccountParams: true, - }); - }); -}); diff --git a/tests/wire/accounting/bankFeedTransactions.test.ts b/tests/wire/accounting/bankFeedTransactions.test.ts deleted file mode 100644 index 97b99c349..000000000 --- a/tests/wire/accounting/bankFeedTransactions.test.ts +++ /dev/null @@ -1,685 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import { MergeClient } from "../../../src/Client"; -import { mockServerPool } from "../../mock-server/MockServerPool"; - -describe("BankFeedTransactionsClient", () => { - test("list", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "b26fd49a-cbae-470a-a8f8-bcbc119e0390", - remote_id: "987300", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - bank_feed_account: "bank_feed_account", - transaction_date: "2024-02-02T00:00:00Z", - posted_date: "2024-02-03T00:00:00Z", - amount: 100.1, - description: "Lunch expense", - transaction_type: "payment", - payee: "Elmo's diner", - credit_or_debit: "CREDIT", - source_transaction_id: "124569", - remote_was_deleted: true, - is_processed: true, - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/bank-feed-transactions") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.bankFeedTransactions.list({ - createdAfter: new Date("2024-01-15T09:30:00.000Z"), - createdBefore: new Date("2024-01-15T09:30:00.000Z"), - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - expand: "bank_feed_account", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - isProcessed: true, - modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - pageSize: 1, - remoteId: "remote_id", - }); - expect(response).toEqual({ - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "b26fd49a-cbae-470a-a8f8-bcbc119e0390", - remoteId: "987300", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - bankFeedAccount: "bank_feed_account", - transactionDate: new Date("2024-02-02T00:00:00.000Z"), - postedDate: new Date("2024-02-03T00:00:00.000Z"), - amount: 100.1, - description: "Lunch expense", - transactionType: "payment", - payee: "Elmo's diner", - creditOrDebit: "CREDIT", - sourceTransactionId: "124569", - remoteWasDeleted: true, - isProcessed: true, - }, - ], - }); - }); - - test("create", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - const rawRequestBody = { model: {} }; - const rawResponseBody = { - model: { - id: "b26fd49a-cbae-470a-a8f8-bcbc119e0390", - remote_id: "987300", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - bank_feed_account: "bank_feed_account", - transaction_date: "2024-02-02T00:00:00Z", - posted_date: "2024-02-03T00:00:00Z", - amount: 100.1, - description: "Lunch expense", - transaction_type: "payment", - payee: "Elmo's diner", - credit_or_debit: "CREDIT", - source_transaction_id: "124569", - remote_was_deleted: true, - is_processed: true, - }, - warnings: [ - { - source: { pointer: "pointer" }, - title: "Unrecognized Field", - detail: "An unrecognized field, age, was passed in with request data.", - problem_type: "UNRECOGNIZED_FIELD", - }, - ], - errors: [ - { - source: { pointer: "pointer" }, - title: "Missing Required Field", - detail: "custom_fields is a required field on model.", - problem_type: "MISSING_REQUIRED_FIELD", - }, - ], - logs: [ - { - log_id: "99433219-8017-4acd-bb3c-ceb23d663832", - dashboard_view: "https://app.merge.dev/logs/99433219-8017-4acd-bb3c-ceb23d663832", - log_summary: { - url: "www.exampleintegration.com/api/v1/exampleapi", - method: "POST", - status_code: 200, - }, - }, - ], - }; - server - .mockEndpoint() - .post("/accounting/v1/bank-feed-transactions") - .jsonBody(rawRequestBody) - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.bankFeedTransactions.create({ - isDebugMode: true, - runAsync: true, - model: {}, - }); - expect(response).toEqual({ - model: { - id: "b26fd49a-cbae-470a-a8f8-bcbc119e0390", - remoteId: "987300", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - bankFeedAccount: "bank_feed_account", - transactionDate: new Date("2024-02-02T00:00:00.000Z"), - postedDate: new Date("2024-02-03T00:00:00.000Z"), - amount: 100.1, - description: "Lunch expense", - transactionType: "payment", - payee: "Elmo's diner", - creditOrDebit: "CREDIT", - sourceTransactionId: "124569", - remoteWasDeleted: true, - isProcessed: true, - }, - warnings: [ - { - source: { - pointer: "pointer", - }, - title: "Unrecognized Field", - detail: "An unrecognized field, age, was passed in with request data.", - problemType: "UNRECOGNIZED_FIELD", - }, - ], - errors: [ - { - source: { - pointer: "pointer", - }, - title: "Missing Required Field", - detail: "custom_fields is a required field on model.", - problemType: "MISSING_REQUIRED_FIELD", - }, - ], - logs: [ - { - logId: "99433219-8017-4acd-bb3c-ceb23d663832", - dashboardView: "https://app.merge.dev/logs/99433219-8017-4acd-bb3c-ceb23d663832", - logSummary: { - url: "www.exampleintegration.com/api/v1/exampleapi", - method: "POST", - statusCode: 200, - }, - }, - ], - }); - }); - - test("retrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - id: "b26fd49a-cbae-470a-a8f8-bcbc119e0390", - remote_id: "987300", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - bank_feed_account: "bank_feed_account", - transaction_date: "2024-02-02T00:00:00Z", - posted_date: "2024-02-03T00:00:00Z", - amount: 100.1, - description: "Lunch expense", - transaction_type: "payment", - payee: "Elmo's diner", - credit_or_debit: "CREDIT", - source_transaction_id: "124569", - remote_was_deleted: true, - is_processed: true, - }; - server - .mockEndpoint() - .get("/accounting/v1/bank-feed-transactions/id") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.bankFeedTransactions.retrieve("id", { - expand: "bank_feed_account", - includeRemoteData: true, - includeShellData: true, - }); - expect(response).toEqual({ - id: "b26fd49a-cbae-470a-a8f8-bcbc119e0390", - remoteId: "987300", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - bankFeedAccount: "bank_feed_account", - transactionDate: new Date("2024-02-02T00:00:00.000Z"), - postedDate: new Date("2024-02-03T00:00:00.000Z"), - amount: 100.1, - description: "Lunch expense", - transactionType: "payment", - payee: "Elmo's diner", - creditOrDebit: "CREDIT", - sourceTransactionId: "124569", - remoteWasDeleted: true, - isProcessed: true, - }); - }); - - test("metaPostRetrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - request_schema: { - type: "object", - properties: { - model: { - type: "object", - required: [ - "last_name", - "first_name", - "merge_categories", - "new_york_city_neighborhood", - "favorite_tv_shows", - "favorite_watch", - ], - properties: { - email_addresses: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - email_address_type: { type: "string", title: "email_address_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "email_addresses", - description: "Array of email_addresses objects", - }, - urls: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - url_type: { type: "string", title: "url_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "urls", - description: "Array of urls objects", - }, - first_name: { type: "string", title: "first_name", description: "The first name." }, - last_name: { type: "string", title: "last_name", description: "The last name." }, - phone_numbers: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - phone_number_type: { type: "string", title: "phone_number_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "phone_numbers", - description: "Array of phone_numbers objects", - }, - tags: { - type: "array", - items: { type: "string", format: "uuid" }, - title: "tags", - description: "Array of tags names", - }, - attachments: { - type: "array", - items: { - type: "object", - properties: { - id: { type: "string", title: "id" }, - file_url: { type: "string", title: "file_url" }, - file_name: { type: "string", title: "file_name" }, - attachment_type: { type: "string", title: "attachment_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "attachments", - description: "Array of attachments objects ", - }, - merge_categories: { - type: "array", - categories: { - type: "string", - enum: [ - "HRIS", - "ATS", - "Accounting", - "Ticketing", - "File Storage", - "CRM", - "Marketing Automation", - ], - enum_information: [ - { value: "HRIS", description: "Merge HRIS Category" }, - { value: "ATS", description: "Merge ATS Category" }, - { value: "Accounting", description: "Merge Accounting Category" }, - { value: "Ticketing", description: "Merge Ticketing Category" }, - { value: "File Storage", description: "Merge File Storage Category" }, - { value: "CRM", description: "Merge CRM Category" }, - { - value: "Marketing Automation", - description: "Merge Marketing Automation Category", - }, - ], - }, - title: "Merge Categories", - description: "Array of Merge's Unified API Categories", - }, - new_york_city_neighborhood: { - type: "string", - title: "Borough", - description: "One of the 5 Boroughs of New York City", - }, - favorite_tv_shows: { - type: "array", - items: { type: "string", format: "uuid" }, - title: "Favorite TV Shows", - description: "Array of TV Show objects on merge.tv_shows", - }, - favorite_watch: { - type: "string", - title: "Favorite Watch", - description: "Favorite watch of all time", - }, - }, - }, - }, - }, - remote_field_classes: { key: "value" }, - status: { linked_account_status: "linked_account_status", can_make_request: true }, - has_conditional_params: true, - has_required_linked_account_params: true, - }; - server - .mockEndpoint() - .get("/accounting/v1/bank-feed-transactions/meta/post") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.bankFeedTransactions.metaPostRetrieve(); - expect(response).toEqual({ - requestSchema: { - type: "object", - properties: { - model: { - type: "object", - required: [ - "last_name", - "first_name", - "merge_categories", - "new_york_city_neighborhood", - "favorite_tv_shows", - "favorite_watch", - ], - properties: { - email_addresses: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - email_address_type: { - type: "string", - title: "email_address_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "email_addresses", - description: "Array of email_addresses objects", - }, - urls: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - url_type: { - type: "string", - title: "url_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "urls", - description: "Array of urls objects", - }, - first_name: { - type: "string", - title: "first_name", - description: "The first name.", - }, - last_name: { - type: "string", - title: "last_name", - description: "The last name.", - }, - phone_numbers: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - phone_number_type: { - type: "string", - title: "phone_number_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "phone_numbers", - description: "Array of phone_numbers objects", - }, - tags: { - type: "array", - items: { - type: "string", - format: "uuid", - }, - title: "tags", - description: "Array of tags names", - }, - attachments: { - type: "array", - items: { - type: "object", - properties: { - id: { - type: "string", - title: "id", - }, - file_url: { - type: "string", - title: "file_url", - }, - file_name: { - type: "string", - title: "file_name", - }, - attachment_type: { - type: "string", - title: "attachment_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "attachments", - description: "Array of attachments objects ", - }, - merge_categories: { - type: "array", - categories: { - type: "string", - enum: [ - "HRIS", - "ATS", - "Accounting", - "Ticketing", - "File Storage", - "CRM", - "Marketing Automation", - ], - enum_information: [ - { - value: "HRIS", - description: "Merge HRIS Category", - }, - { - value: "ATS", - description: "Merge ATS Category", - }, - { - value: "Accounting", - description: "Merge Accounting Category", - }, - { - value: "Ticketing", - description: "Merge Ticketing Category", - }, - { - value: "File Storage", - description: "Merge File Storage Category", - }, - { - value: "CRM", - description: "Merge CRM Category", - }, - { - value: "Marketing Automation", - description: "Merge Marketing Automation Category", - }, - ], - }, - title: "Merge Categories", - description: "Array of Merge's Unified API Categories", - }, - new_york_city_neighborhood: { - type: "string", - title: "Borough", - description: "One of the 5 Boroughs of New York City", - }, - favorite_tv_shows: { - type: "array", - items: { - type: "string", - format: "uuid", - }, - title: "Favorite TV Shows", - description: "Array of TV Show objects on merge.tv_shows", - }, - favorite_watch: { - type: "string", - title: "Favorite Watch", - description: "Favorite watch of all time", - }, - }, - }, - }, - }, - remoteFieldClasses: { - key: "value", - }, - status: { - linkedAccountStatus: "linked_account_status", - canMakeRequest: true, - }, - hasConditionalParams: true, - hasRequiredLinkedAccountParams: true, - }); - }); -}); diff --git a/tests/wire/accounting/cashFlowStatements.test.ts b/tests/wire/accounting/cashFlowStatements.test.ts deleted file mode 100644 index c7bfe3a0f..000000000 --- a/tests/wire/accounting/cashFlowStatements.test.ts +++ /dev/null @@ -1,399 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import { MergeClient } from "../../../src/Client"; -import { mockServerPool } from "../../mock-server/MockServerPool"; - -describe("CashFlowStatementsClient", () => { - test("list", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "5b3c1341-a20f-4e51-b72c-f3830a16c97b", - remote_id: "8211088", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - name: "CashFlow", - currency: "XUA", - company: "company", - start_period: "2020-01-01T00:00:00Z", - end_period: "2020-03-31T00:00:00Z", - cash_at_beginning_of_period: 5000, - cash_at_end_of_period: 4063.52, - operating_activities: [ - { - remote_id: "19202938", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-09-18T00:00:00Z", - name: "Operating Activities", - value: 1000, - sub_items: [ - { - remote_id: "23042938", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-09-18T00:00:00Z", - name: "Net Income", - value: 1097.13, - }, - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - }, - ], - investing_activities: [ - { - remote_id: "192406939", - created_at: "2021-11-15T00:00:00Z", - modified_at: "2021-11-18T00:00:00Z", - name: "Equipment", - value: 1000, - sub_items: [ - { - created_at: "2021-11-15T00:00:00Z", - modified_at: "2021-09-18T00:00:00Z", - name: "Equipment", - value: 1000, - }, - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - }, - ], - financing_activities: [ - { - remote_id: "192406939", - created_at: "2021-11-15T00:00:00Z", - modified_at: "2021-11-15T00:00:00Z", - name: "Revenue", - value: 1000, - sub_items: [ - { remote_id: "10300", name: "Revenue - San Francisco", value: 500 }, - { remote_id: "10301", name: "Revenue - New York", value: 500 }, - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - }, - ], - remote_generated_at: "2020-04-01T00:00:00Z", - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/cash-flow-statements") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.cashFlowStatements.list({ - companyId: "company_id", - createdAfter: new Date("2024-01-15T09:30:00.000Z"), - createdBefore: new Date("2024-01-15T09:30:00.000Z"), - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - expand: "company", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - pageSize: 1, - remoteId: "remote_id", - }); - expect(response).toEqual({ - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "5b3c1341-a20f-4e51-b72c-f3830a16c97b", - remoteId: "8211088", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - name: "CashFlow", - currency: "XUA", - company: "company", - startPeriod: new Date("2020-01-01T00:00:00.000Z"), - endPeriod: new Date("2020-03-31T00:00:00.000Z"), - cashAtBeginningOfPeriod: 5000, - cashAtEndOfPeriod: 4063.52, - operatingActivities: [ - { - remoteId: "19202938", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-09-18T00:00:00.000Z"), - name: "Operating Activities", - value: 1000, - subItems: [ - { - remote_id: "23042938", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-09-18T00:00:00Z", - name: "Net Income", - value: 1097.13, - }, - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - }, - ], - investingActivities: [ - { - remoteId: "192406939", - createdAt: new Date("2021-11-15T00:00:00.000Z"), - modifiedAt: new Date("2021-11-18T00:00:00.000Z"), - name: "Equipment", - value: 1000, - subItems: [ - { - created_at: "2021-11-15T00:00:00Z", - modified_at: "2021-09-18T00:00:00Z", - name: "Equipment", - value: 1000, - }, - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - }, - ], - financingActivities: [ - { - remoteId: "192406939", - createdAt: new Date("2021-11-15T00:00:00.000Z"), - modifiedAt: new Date("2021-11-15T00:00:00.000Z"), - name: "Revenue", - value: 1000, - subItems: [ - { - remote_id: "10300", - name: "Revenue - San Francisco", - value: 500, - }, - { - remote_id: "10301", - name: "Revenue - New York", - value: 500, - }, - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - }, - ], - remoteGeneratedAt: new Date("2020-04-01T00:00:00.000Z"), - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - }, - ], - }); - }); - - test("retrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - id: "5b3c1341-a20f-4e51-b72c-f3830a16c97b", - remote_id: "8211088", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - name: "CashFlow", - currency: "XUA", - company: "company", - start_period: "2020-01-01T00:00:00Z", - end_period: "2020-03-31T00:00:00Z", - cash_at_beginning_of_period: 5000, - cash_at_end_of_period: 4063.52, - operating_activities: [ - { - remote_id: "19202938", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-09-18T00:00:00Z", - name: "Operating Activities", - value: 1000, - sub_items: [ - { - remote_id: "23042938", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-09-18T00:00:00Z", - name: "Net Income", - value: 1097.13, - }, - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - remote_was_deleted: true, - }, - ], - investing_activities: [ - { - remote_id: "192406939", - created_at: "2021-11-15T00:00:00Z", - modified_at: "2021-11-18T00:00:00Z", - name: "Equipment", - value: 1000, - sub_items: [ - { - created_at: "2021-11-15T00:00:00Z", - modified_at: "2021-09-18T00:00:00Z", - name: "Equipment", - value: 1000, - }, - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - remote_was_deleted: true, - }, - ], - financing_activities: [ - { - remote_id: "192406939", - created_at: "2021-11-15T00:00:00Z", - modified_at: "2021-11-15T00:00:00Z", - name: "Revenue", - value: 1000, - sub_items: [ - { remote_id: "10300", name: "Revenue - San Francisco", value: 500 }, - { remote_id: "10301", name: "Revenue - New York", value: 500 }, - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - remote_was_deleted: true, - }, - ], - remote_generated_at: "2020-04-01T00:00:00Z", - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - }; - server - .mockEndpoint() - .get("/accounting/v1/cash-flow-statements/id") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.cashFlowStatements.retrieve("id", { - expand: "company", - includeRemoteData: true, - includeShellData: true, - }); - expect(response).toEqual({ - id: "5b3c1341-a20f-4e51-b72c-f3830a16c97b", - remoteId: "8211088", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - name: "CashFlow", - currency: "XUA", - company: "company", - startPeriod: new Date("2020-01-01T00:00:00.000Z"), - endPeriod: new Date("2020-03-31T00:00:00.000Z"), - cashAtBeginningOfPeriod: 5000, - cashAtEndOfPeriod: 4063.52, - operatingActivities: [ - { - remoteId: "19202938", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-09-18T00:00:00.000Z"), - name: "Operating Activities", - value: 1000, - subItems: [ - { - remote_id: "23042938", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-09-18T00:00:00Z", - name: "Net Income", - value: 1097.13, - }, - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - remoteWasDeleted: true, - }, - ], - investingActivities: [ - { - remoteId: "192406939", - createdAt: new Date("2021-11-15T00:00:00.000Z"), - modifiedAt: new Date("2021-11-18T00:00:00.000Z"), - name: "Equipment", - value: 1000, - subItems: [ - { - created_at: "2021-11-15T00:00:00Z", - modified_at: "2021-09-18T00:00:00Z", - name: "Equipment", - value: 1000, - }, - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - remoteWasDeleted: true, - }, - ], - financingActivities: [ - { - remoteId: "192406939", - createdAt: new Date("2021-11-15T00:00:00.000Z"), - modifiedAt: new Date("2021-11-15T00:00:00.000Z"), - name: "Revenue", - value: 1000, - subItems: [ - { - remote_id: "10300", - name: "Revenue - San Francisco", - value: 500, - }, - { - remote_id: "10301", - name: "Revenue - New York", - value: 500, - }, - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - remoteWasDeleted: true, - }, - ], - remoteGeneratedAt: new Date("2020-04-01T00:00:00.000Z"), - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - }); - }); -}); diff --git a/tests/wire/accounting/companyInfo.test.ts b/tests/wire/accounting/companyInfo.test.ts deleted file mode 100644 index a4c42b11b..000000000 --- a/tests/wire/accounting/companyInfo.test.ts +++ /dev/null @@ -1,258 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import { MergeClient } from "../../../src/Client"; -import { mockServerPool } from "../../mock-server/MockServerPool"; - -describe("CompanyInfoClient", () => { - test("list", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "65d8ffd0-211b-4ba4-b85a-fbe2ce220982", - remote_id: "19202938", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - name: "Merge Pickleball Company", - legal_name: "Merge Pickleball Company Inc.", - tax_number: "11-0011000", - fiscal_year_end_month: 12, - fiscal_year_end_day: 31, - currency: "XUA", - remote_created_at: "2020-03-31T00:00:00Z", - urls: [], - addresses: [ - { - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - street_1: "2920 Broadway", - street_2: "2nd Floor", - city: "New York", - state: "NY", - country_subdivision: "NY", - country: "US", - zip_code: "10027", - }, - ], - phone_numbers: [ - { - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - number: "+3198675309", - type: "Mobile", - }, - ], - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/company-info") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.companyInfo.list({ - createdAfter: new Date("2024-01-15T09:30:00.000Z"), - createdBefore: new Date("2024-01-15T09:30:00.000Z"), - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - expand: "addresses", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - pageSize: 1, - remoteId: "remote_id", - }); - expect(response).toEqual({ - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "65d8ffd0-211b-4ba4-b85a-fbe2ce220982", - remoteId: "19202938", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - name: "Merge Pickleball Company", - legalName: "Merge Pickleball Company Inc.", - taxNumber: "11-0011000", - fiscalYearEndMonth: 12, - fiscalYearEndDay: 31, - currency: "XUA", - remoteCreatedAt: new Date("2020-03-31T00:00:00.000Z"), - urls: [], - addresses: [ - { - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - street1: "2920 Broadway", - street2: "2nd Floor", - city: "New York", - state: "NY", - countrySubdivision: "NY", - country: "US", - zipCode: "10027", - }, - ], - phoneNumbers: [ - { - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - number: "+3198675309", - type: "Mobile", - }, - ], - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - }, - ], - }); - }); - - test("retrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - id: "65d8ffd0-211b-4ba4-b85a-fbe2ce220982", - remote_id: "19202938", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - name: "Merge Pickleball Company", - legal_name: "Merge Pickleball Company Inc.", - tax_number: "11-0011000", - fiscal_year_end_month: 12, - fiscal_year_end_day: 31, - currency: "XUA", - remote_created_at: "2020-03-31T00:00:00Z", - urls: ["urls"], - addresses: [ - { - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - type: "BILLING", - street_1: "2920 Broadway", - street_2: "2nd Floor", - city: "New York", - state: "NY", - country_subdivision: "NY", - country: "US", - zip_code: "10027", - }, - ], - phone_numbers: [ - { - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - number: "+3198675309", - type: "Mobile", - }, - ], - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - }; - server - .mockEndpoint() - .get("/accounting/v1/company-info/id") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.companyInfo.retrieve("id", { - expand: "addresses", - includeRemoteData: true, - includeShellData: true, - }); - expect(response).toEqual({ - id: "65d8ffd0-211b-4ba4-b85a-fbe2ce220982", - remoteId: "19202938", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - name: "Merge Pickleball Company", - legalName: "Merge Pickleball Company Inc.", - taxNumber: "11-0011000", - fiscalYearEndMonth: 12, - fiscalYearEndDay: 31, - currency: "XUA", - remoteCreatedAt: new Date("2020-03-31T00:00:00.000Z"), - urls: ["urls"], - addresses: [ - { - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - type: "BILLING", - street1: "2920 Broadway", - street2: "2nd Floor", - city: "New York", - state: "NY", - countrySubdivision: "NY", - country: "US", - zipCode: "10027", - }, - ], - phoneNumbers: [ - { - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - number: "+3198675309", - type: "Mobile", - }, - ], - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - }); - }); -}); diff --git a/tests/wire/accounting/contacts.test.ts b/tests/wire/accounting/contacts.test.ts deleted file mode 100644 index 8d1f23295..000000000 --- a/tests/wire/accounting/contacts.test.ts +++ /dev/null @@ -1,1470 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import { MergeClient } from "../../../src/Client"; -import { mockServerPool } from "../../mock-server/MockServerPool"; - -describe("ContactsClient", () => { - test("list", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "c640b80b-fac9-409f-aa19-1f9221aec445", - remote_id: "11167", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - name: "Gil Feig's pickleball store", - is_supplier: true, - is_customer: true, - email_address: "pickleball@merge.dev", - tax_number: "12-3456789", - status: "ACTIVE", - currency: "USD", - remote_updated_at: "2020-03-31T00:00:00Z", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - addresses: ["2f2702aa-8948-492b-a412-2acdf6d2c499", "d98c7428-8dda-48a8-a1da-c570f65e2375"], - phone_numbers: [ - { - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - number: "+3198675309", - type: "Mobile", - }, - ], - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - remote_fields: [{ remote_field_class: "remote_field_class", value: "string" }], - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/contacts") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.contacts.list({ - companyId: "company_id", - createdAfter: new Date("2024-01-15T09:30:00.000Z"), - createdBefore: new Date("2024-01-15T09:30:00.000Z"), - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - emailAddress: "email_address", - expand: "addresses", - includeDeletedData: true, - includeRemoteData: true, - includeRemoteFields: true, - includeShellData: true, - isCustomer: "is_customer", - isSupplier: "is_supplier", - modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - name: "name", - pageSize: 1, - remoteFields: "status", - remoteId: "remote_id", - showEnumOrigins: "status", - status: "", - }); - expect(response).toEqual({ - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "c640b80b-fac9-409f-aa19-1f9221aec445", - remoteId: "11167", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - name: "Gil Feig's pickleball store", - isSupplier: true, - isCustomer: true, - emailAddress: "pickleball@merge.dev", - taxNumber: "12-3456789", - status: "ACTIVE", - currency: "USD", - remoteUpdatedAt: new Date("2020-03-31T00:00:00.000Z"), - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - addresses: ["2f2702aa-8948-492b-a412-2acdf6d2c499", "d98c7428-8dda-48a8-a1da-c570f65e2375"], - phoneNumbers: [ - { - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - number: "+3198675309", - type: "Mobile", - }, - ], - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - remoteFields: [ - { - remoteFieldClass: "remote_field_class", - value: "string", - }, - ], - }, - ], - }); - }); - - test("create", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - const rawRequestBody = { model: {} }; - const rawResponseBody = { - model: { - id: "c640b80b-fac9-409f-aa19-1f9221aec445", - remote_id: "11167", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - name: "Gil Feig's pickleball store", - is_supplier: true, - is_customer: true, - email_address: "pickleball@merge.dev", - tax_number: "12-3456789", - status: "ACTIVE", - currency: "USD", - remote_updated_at: "2020-03-31T00:00:00Z", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - addresses: ["2f2702aa-8948-492b-a412-2acdf6d2c499", "d98c7428-8dda-48a8-a1da-c570f65e2375"], - phone_numbers: [ - { - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - number: "+3198675309", - type: "Mobile", - }, - ], - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - remote_fields: [{ remote_field_class: "remote_field_class", value: "string" }], - }, - warnings: [ - { - source: { pointer: "pointer" }, - title: "Unrecognized Field", - detail: "An unrecognized field, age, was passed in with request data.", - problem_type: "UNRECOGNIZED_FIELD", - }, - ], - errors: [ - { - source: { pointer: "pointer" }, - title: "Missing Required Field", - detail: "custom_fields is a required field on model.", - problem_type: "MISSING_REQUIRED_FIELD", - }, - ], - logs: [ - { - log_id: "99433219-8017-4acd-bb3c-ceb23d663832", - dashboard_view: "https://app.merge.dev/logs/99433219-8017-4acd-bb3c-ceb23d663832", - log_summary: { - url: "www.exampleintegration.com/api/v1/exampleapi", - method: "POST", - status_code: 200, - }, - }, - ], - }; - server - .mockEndpoint() - .post("/accounting/v1/contacts") - .jsonBody(rawRequestBody) - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.contacts.create({ - isDebugMode: true, - runAsync: true, - model: {}, - }); - expect(response).toEqual({ - model: { - id: "c640b80b-fac9-409f-aa19-1f9221aec445", - remoteId: "11167", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - name: "Gil Feig's pickleball store", - isSupplier: true, - isCustomer: true, - emailAddress: "pickleball@merge.dev", - taxNumber: "12-3456789", - status: "ACTIVE", - currency: "USD", - remoteUpdatedAt: new Date("2020-03-31T00:00:00.000Z"), - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - addresses: ["2f2702aa-8948-492b-a412-2acdf6d2c499", "d98c7428-8dda-48a8-a1da-c570f65e2375"], - phoneNumbers: [ - { - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - number: "+3198675309", - type: "Mobile", - }, - ], - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - remoteFields: [ - { - remoteFieldClass: "remote_field_class", - value: "string", - }, - ], - }, - warnings: [ - { - source: { - pointer: "pointer", - }, - title: "Unrecognized Field", - detail: "An unrecognized field, age, was passed in with request data.", - problemType: "UNRECOGNIZED_FIELD", - }, - ], - errors: [ - { - source: { - pointer: "pointer", - }, - title: "Missing Required Field", - detail: "custom_fields is a required field on model.", - problemType: "MISSING_REQUIRED_FIELD", - }, - ], - logs: [ - { - logId: "99433219-8017-4acd-bb3c-ceb23d663832", - dashboardView: "https://app.merge.dev/logs/99433219-8017-4acd-bb3c-ceb23d663832", - logSummary: { - url: "www.exampleintegration.com/api/v1/exampleapi", - method: "POST", - statusCode: 200, - }, - }, - ], - }); - }); - - test("retrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - id: "c640b80b-fac9-409f-aa19-1f9221aec445", - remote_id: "11167", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - name: "Gil Feig's pickleball store", - is_supplier: true, - is_customer: true, - email_address: "pickleball@merge.dev", - tax_number: "12-3456789", - status: "ACTIVE", - currency: "USD", - remote_updated_at: "2020-03-31T00:00:00Z", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - addresses: ["2f2702aa-8948-492b-a412-2acdf6d2c499", "d98c7428-8dda-48a8-a1da-c570f65e2375"], - phone_numbers: [ - { - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - number: "+3198675309", - type: "Mobile", - }, - ], - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - remote_fields: [{ remote_field_class: "remote_field_class", value: "string" }], - }; - server - .mockEndpoint() - .get("/accounting/v1/contacts/id") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.contacts.retrieve("id", { - expand: "addresses", - includeRemoteData: true, - includeRemoteFields: true, - includeShellData: true, - remoteFields: "status", - showEnumOrigins: "status", - }); - expect(response).toEqual({ - id: "c640b80b-fac9-409f-aa19-1f9221aec445", - remoteId: "11167", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - name: "Gil Feig's pickleball store", - isSupplier: true, - isCustomer: true, - emailAddress: "pickleball@merge.dev", - taxNumber: "12-3456789", - status: "ACTIVE", - currency: "USD", - remoteUpdatedAt: new Date("2020-03-31T00:00:00.000Z"), - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - addresses: ["2f2702aa-8948-492b-a412-2acdf6d2c499", "d98c7428-8dda-48a8-a1da-c570f65e2375"], - phoneNumbers: [ - { - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - number: "+3198675309", - type: "Mobile", - }, - ], - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - remoteFields: [ - { - remoteFieldClass: "remote_field_class", - value: "string", - }, - ], - }); - }); - - test("partialUpdate", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - const rawRequestBody = { model: {} }; - const rawResponseBody = { - model: { - id: "c640b80b-fac9-409f-aa19-1f9221aec445", - remote_id: "11167", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - name: "Gil Feig's pickleball store", - is_supplier: true, - is_customer: true, - email_address: "pickleball@merge.dev", - tax_number: "12-3456789", - status: "ACTIVE", - currency: "USD", - remote_updated_at: "2020-03-31T00:00:00Z", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - addresses: ["2f2702aa-8948-492b-a412-2acdf6d2c499", "d98c7428-8dda-48a8-a1da-c570f65e2375"], - phone_numbers: [ - { - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - number: "+3198675309", - type: "Mobile", - }, - ], - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - remote_fields: [{ remote_field_class: "remote_field_class", value: "string" }], - }, - warnings: [ - { - source: { pointer: "pointer" }, - title: "Unrecognized Field", - detail: "An unrecognized field, age, was passed in with request data.", - problem_type: "UNRECOGNIZED_FIELD", - }, - ], - errors: [ - { - source: { pointer: "pointer" }, - title: "Missing Required Field", - detail: "custom_fields is a required field on model.", - problem_type: "MISSING_REQUIRED_FIELD", - }, - ], - logs: [ - { - log_id: "99433219-8017-4acd-bb3c-ceb23d663832", - dashboard_view: "https://app.merge.dev/logs/99433219-8017-4acd-bb3c-ceb23d663832", - log_summary: { - url: "www.exampleintegration.com/api/v1/exampleapi", - method: "POST", - status_code: 200, - }, - }, - ], - }; - server - .mockEndpoint() - .patch("/accounting/v1/contacts/id") - .jsonBody(rawRequestBody) - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.contacts.partialUpdate("id", { - isDebugMode: true, - runAsync: true, - model: {}, - }); - expect(response).toEqual({ - model: { - id: "c640b80b-fac9-409f-aa19-1f9221aec445", - remoteId: "11167", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - name: "Gil Feig's pickleball store", - isSupplier: true, - isCustomer: true, - emailAddress: "pickleball@merge.dev", - taxNumber: "12-3456789", - status: "ACTIVE", - currency: "USD", - remoteUpdatedAt: new Date("2020-03-31T00:00:00.000Z"), - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - addresses: ["2f2702aa-8948-492b-a412-2acdf6d2c499", "d98c7428-8dda-48a8-a1da-c570f65e2375"], - phoneNumbers: [ - { - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - number: "+3198675309", - type: "Mobile", - }, - ], - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - remoteFields: [ - { - remoteFieldClass: "remote_field_class", - value: "string", - }, - ], - }, - warnings: [ - { - source: { - pointer: "pointer", - }, - title: "Unrecognized Field", - detail: "An unrecognized field, age, was passed in with request data.", - problemType: "UNRECOGNIZED_FIELD", - }, - ], - errors: [ - { - source: { - pointer: "pointer", - }, - title: "Missing Required Field", - detail: "custom_fields is a required field on model.", - problemType: "MISSING_REQUIRED_FIELD", - }, - ], - logs: [ - { - logId: "99433219-8017-4acd-bb3c-ceb23d663832", - dashboardView: "https://app.merge.dev/logs/99433219-8017-4acd-bb3c-ceb23d663832", - logSummary: { - url: "www.exampleintegration.com/api/v1/exampleapi", - method: "POST", - statusCode: 200, - }, - }, - ], - }); - }); - - test("metaPatchRetrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - request_schema: { - type: "object", - properties: { - model: { - type: "object", - required: [ - "last_name", - "first_name", - "merge_categories", - "new_york_city_neighborhood", - "favorite_tv_shows", - "favorite_watch", - ], - properties: { - email_addresses: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - email_address_type: { type: "string", title: "email_address_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "email_addresses", - description: "Array of email_addresses objects", - }, - urls: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - url_type: { type: "string", title: "url_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "urls", - description: "Array of urls objects", - }, - first_name: { type: "string", title: "first_name", description: "The first name." }, - last_name: { type: "string", title: "last_name", description: "The last name." }, - phone_numbers: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - phone_number_type: { type: "string", title: "phone_number_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "phone_numbers", - description: "Array of phone_numbers objects", - }, - tags: { - type: "array", - items: { type: "string", format: "uuid" }, - title: "tags", - description: "Array of tags names", - }, - attachments: { - type: "array", - items: { - type: "object", - properties: { - id: { type: "string", title: "id" }, - file_url: { type: "string", title: "file_url" }, - file_name: { type: "string", title: "file_name" }, - attachment_type: { type: "string", title: "attachment_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "attachments", - description: "Array of attachments objects ", - }, - merge_categories: { - type: "array", - categories: { - type: "string", - enum: [ - "HRIS", - "ATS", - "Accounting", - "Ticketing", - "File Storage", - "CRM", - "Marketing Automation", - ], - enum_information: [ - { value: "HRIS", description: "Merge HRIS Category" }, - { value: "ATS", description: "Merge ATS Category" }, - { value: "Accounting", description: "Merge Accounting Category" }, - { value: "Ticketing", description: "Merge Ticketing Category" }, - { value: "File Storage", description: "Merge File Storage Category" }, - { value: "CRM", description: "Merge CRM Category" }, - { - value: "Marketing Automation", - description: "Merge Marketing Automation Category", - }, - ], - }, - title: "Merge Categories", - description: "Array of Merge's Unified API Categories", - }, - new_york_city_neighborhood: { - type: "string", - title: "Borough", - description: "One of the 5 Boroughs of New York City", - }, - favorite_tv_shows: { - type: "array", - items: { type: "string", format: "uuid" }, - title: "Favorite TV Shows", - description: "Array of TV Show objects on merge.tv_shows", - }, - favorite_watch: { - type: "string", - title: "Favorite Watch", - description: "Favorite watch of all time", - }, - }, - }, - }, - }, - remote_field_classes: { key: "value" }, - status: { linked_account_status: "linked_account_status", can_make_request: true }, - has_conditional_params: true, - has_required_linked_account_params: true, - }; - server - .mockEndpoint() - .get("/accounting/v1/contacts/meta/patch/id") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.contacts.metaPatchRetrieve("id"); - expect(response).toEqual({ - requestSchema: { - type: "object", - properties: { - model: { - type: "object", - required: [ - "last_name", - "first_name", - "merge_categories", - "new_york_city_neighborhood", - "favorite_tv_shows", - "favorite_watch", - ], - properties: { - email_addresses: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - email_address_type: { - type: "string", - title: "email_address_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "email_addresses", - description: "Array of email_addresses objects", - }, - urls: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - url_type: { - type: "string", - title: "url_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "urls", - description: "Array of urls objects", - }, - first_name: { - type: "string", - title: "first_name", - description: "The first name.", - }, - last_name: { - type: "string", - title: "last_name", - description: "The last name.", - }, - phone_numbers: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - phone_number_type: { - type: "string", - title: "phone_number_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "phone_numbers", - description: "Array of phone_numbers objects", - }, - tags: { - type: "array", - items: { - type: "string", - format: "uuid", - }, - title: "tags", - description: "Array of tags names", - }, - attachments: { - type: "array", - items: { - type: "object", - properties: { - id: { - type: "string", - title: "id", - }, - file_url: { - type: "string", - title: "file_url", - }, - file_name: { - type: "string", - title: "file_name", - }, - attachment_type: { - type: "string", - title: "attachment_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "attachments", - description: "Array of attachments objects ", - }, - merge_categories: { - type: "array", - categories: { - type: "string", - enum: [ - "HRIS", - "ATS", - "Accounting", - "Ticketing", - "File Storage", - "CRM", - "Marketing Automation", - ], - enum_information: [ - { - value: "HRIS", - description: "Merge HRIS Category", - }, - { - value: "ATS", - description: "Merge ATS Category", - }, - { - value: "Accounting", - description: "Merge Accounting Category", - }, - { - value: "Ticketing", - description: "Merge Ticketing Category", - }, - { - value: "File Storage", - description: "Merge File Storage Category", - }, - { - value: "CRM", - description: "Merge CRM Category", - }, - { - value: "Marketing Automation", - description: "Merge Marketing Automation Category", - }, - ], - }, - title: "Merge Categories", - description: "Array of Merge's Unified API Categories", - }, - new_york_city_neighborhood: { - type: "string", - title: "Borough", - description: "One of the 5 Boroughs of New York City", - }, - favorite_tv_shows: { - type: "array", - items: { - type: "string", - format: "uuid", - }, - title: "Favorite TV Shows", - description: "Array of TV Show objects on merge.tv_shows", - }, - favorite_watch: { - type: "string", - title: "Favorite Watch", - description: "Favorite watch of all time", - }, - }, - }, - }, - }, - remoteFieldClasses: { - key: "value", - }, - status: { - linkedAccountStatus: "linked_account_status", - canMakeRequest: true, - }, - hasConditionalParams: true, - hasRequiredLinkedAccountParams: true, - }); - }); - - test("metaPostRetrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - request_schema: { - type: "object", - properties: { - model: { - type: "object", - required: [ - "last_name", - "first_name", - "merge_categories", - "new_york_city_neighborhood", - "favorite_tv_shows", - "favorite_watch", - ], - properties: { - email_addresses: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - email_address_type: { type: "string", title: "email_address_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "email_addresses", - description: "Array of email_addresses objects", - }, - urls: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - url_type: { type: "string", title: "url_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "urls", - description: "Array of urls objects", - }, - first_name: { type: "string", title: "first_name", description: "The first name." }, - last_name: { type: "string", title: "last_name", description: "The last name." }, - phone_numbers: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - phone_number_type: { type: "string", title: "phone_number_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "phone_numbers", - description: "Array of phone_numbers objects", - }, - tags: { - type: "array", - items: { type: "string", format: "uuid" }, - title: "tags", - description: "Array of tags names", - }, - attachments: { - type: "array", - items: { - type: "object", - properties: { - id: { type: "string", title: "id" }, - file_url: { type: "string", title: "file_url" }, - file_name: { type: "string", title: "file_name" }, - attachment_type: { type: "string", title: "attachment_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "attachments", - description: "Array of attachments objects ", - }, - merge_categories: { - type: "array", - categories: { - type: "string", - enum: [ - "HRIS", - "ATS", - "Accounting", - "Ticketing", - "File Storage", - "CRM", - "Marketing Automation", - ], - enum_information: [ - { value: "HRIS", description: "Merge HRIS Category" }, - { value: "ATS", description: "Merge ATS Category" }, - { value: "Accounting", description: "Merge Accounting Category" }, - { value: "Ticketing", description: "Merge Ticketing Category" }, - { value: "File Storage", description: "Merge File Storage Category" }, - { value: "CRM", description: "Merge CRM Category" }, - { - value: "Marketing Automation", - description: "Merge Marketing Automation Category", - }, - ], - }, - title: "Merge Categories", - description: "Array of Merge's Unified API Categories", - }, - new_york_city_neighborhood: { - type: "string", - title: "Borough", - description: "One of the 5 Boroughs of New York City", - }, - favorite_tv_shows: { - type: "array", - items: { type: "string", format: "uuid" }, - title: "Favorite TV Shows", - description: "Array of TV Show objects on merge.tv_shows", - }, - favorite_watch: { - type: "string", - title: "Favorite Watch", - description: "Favorite watch of all time", - }, - }, - }, - }, - }, - remote_field_classes: { key: "value" }, - status: { linked_account_status: "linked_account_status", can_make_request: true }, - has_conditional_params: true, - has_required_linked_account_params: true, - }; - server - .mockEndpoint() - .get("/accounting/v1/contacts/meta/post") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.contacts.metaPostRetrieve(); - expect(response).toEqual({ - requestSchema: { - type: "object", - properties: { - model: { - type: "object", - required: [ - "last_name", - "first_name", - "merge_categories", - "new_york_city_neighborhood", - "favorite_tv_shows", - "favorite_watch", - ], - properties: { - email_addresses: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - email_address_type: { - type: "string", - title: "email_address_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "email_addresses", - description: "Array of email_addresses objects", - }, - urls: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - url_type: { - type: "string", - title: "url_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "urls", - description: "Array of urls objects", - }, - first_name: { - type: "string", - title: "first_name", - description: "The first name.", - }, - last_name: { - type: "string", - title: "last_name", - description: "The last name.", - }, - phone_numbers: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - phone_number_type: { - type: "string", - title: "phone_number_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "phone_numbers", - description: "Array of phone_numbers objects", - }, - tags: { - type: "array", - items: { - type: "string", - format: "uuid", - }, - title: "tags", - description: "Array of tags names", - }, - attachments: { - type: "array", - items: { - type: "object", - properties: { - id: { - type: "string", - title: "id", - }, - file_url: { - type: "string", - title: "file_url", - }, - file_name: { - type: "string", - title: "file_name", - }, - attachment_type: { - type: "string", - title: "attachment_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "attachments", - description: "Array of attachments objects ", - }, - merge_categories: { - type: "array", - categories: { - type: "string", - enum: [ - "HRIS", - "ATS", - "Accounting", - "Ticketing", - "File Storage", - "CRM", - "Marketing Automation", - ], - enum_information: [ - { - value: "HRIS", - description: "Merge HRIS Category", - }, - { - value: "ATS", - description: "Merge ATS Category", - }, - { - value: "Accounting", - description: "Merge Accounting Category", - }, - { - value: "Ticketing", - description: "Merge Ticketing Category", - }, - { - value: "File Storage", - description: "Merge File Storage Category", - }, - { - value: "CRM", - description: "Merge CRM Category", - }, - { - value: "Marketing Automation", - description: "Merge Marketing Automation Category", - }, - ], - }, - title: "Merge Categories", - description: "Array of Merge's Unified API Categories", - }, - new_york_city_neighborhood: { - type: "string", - title: "Borough", - description: "One of the 5 Boroughs of New York City", - }, - favorite_tv_shows: { - type: "array", - items: { - type: "string", - format: "uuid", - }, - title: "Favorite TV Shows", - description: "Array of TV Show objects on merge.tv_shows", - }, - favorite_watch: { - type: "string", - title: "Favorite Watch", - description: "Favorite watch of all time", - }, - }, - }, - }, - }, - remoteFieldClasses: { - key: "value", - }, - status: { - linkedAccountStatus: "linked_account_status", - canMakeRequest: true, - }, - hasConditionalParams: true, - hasRequiredLinkedAccountParams: true, - }); - }); - - test("remoteFieldClassesList", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "id", - display_name: "display_name", - remote_key_name: "remote_key_name", - description: "description", - is_custom: true, - is_common_model_field: true, - is_required: true, - field_type: "string", - field_format: "string", - field_choices: ["field_choices"], - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/contacts/remote-field-classes") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.contacts.remoteFieldClassesList({ - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - isCommonModelField: true, - isCustom: true, - pageSize: 1, - }); - expect(response).toEqual({ - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "id", - displayName: "display_name", - remoteKeyName: "remote_key_name", - description: "description", - isCustom: true, - isCommonModelField: true, - isRequired: true, - fieldType: "string", - fieldFormat: "string", - fieldChoices: ["field_choices"], - }, - ], - }); - }); -}); diff --git a/tests/wire/accounting/creditNotes.test.ts b/tests/wire/accounting/creditNotes.test.ts deleted file mode 100644 index f5de767b0..000000000 --- a/tests/wire/accounting/creditNotes.test.ts +++ /dev/null @@ -1,1026 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import { MergeClient } from "../../../src/Client"; -import { mockServerPool } from "../../mock-server/MockServerPool"; - -describe("CreditNotesClient", () => { - test("list", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "8d9fd929-436c-4fd4-a48b-0c61f68d6178", - remote_id: "123877", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - transaction_date: "2020-03-31T00:00:00Z", - status: "SUBMITTED", - number: "CN-29", - contact: "contact", - company: "company", - exchange_rate: "2.9", - total_amount: 50, - remaining_credit: 20, - inclusive_of_tax: true, - line_items: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "121222", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - item: "0e3fd929-436c-4fd4-a48b-0c61f68d6178", - name: "Basic Monthly", - description: "prorated amount for items", - quantity: "quantity", - memo: "privNote", - unit_price: "5.0", - tax_rate: "8d9fd929-436c-4fd4-a48b-0c61f68d6178", - total_line_amount: "5.0", - tracking_categories: [ - "8d9fd929-436c-4fd4-a48b-0c61f68d6178", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - account: "8d9fd929-436c-4fd4-a48b-0c61f68d6178", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - contact: "908934-49j9-093f-0989-908923908", - project: "22e65a5d-2df5-4e6e-884a-e538d0339000", - remote_was_deleted: true, - }, - ], - tracking_categories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - currency: "XUA", - remote_created_at: "2020-03-31T00:00:00Z", - remote_updated_at: "2020-03-31T00:00:00Z", - payments: ["b26fd49a-cbae-470a-a8f8-bcbc119e0390"], - applied_payments: ["a9a94a75-19c1-41fe-90d8-d9ba959c38e5"], - accounting_period: "accounting_period", - applied_to_lines: [ - { - remote_id: "088899", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - invoice: "5b3c1341-a20f-4e51-b72c-f3830a16c97b", - applied_date: "2020-03-31T00:00:00Z", - applied_amount: "2.9", - }, - ], - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/credit-notes") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.creditNotes.list({ - companyId: "company_id", - createdAfter: new Date("2024-01-15T09:30:00.000Z"), - createdBefore: new Date("2024-01-15T09:30:00.000Z"), - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - expand: "accounting_period", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - pageSize: 1, - remoteFields: "status", - remoteId: "remote_id", - showEnumOrigins: "status", - transactionDateAfter: new Date("2024-01-15T09:30:00.000Z"), - transactionDateBefore: new Date("2024-01-15T09:30:00.000Z"), - }); - expect(response).toEqual({ - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "8d9fd929-436c-4fd4-a48b-0c61f68d6178", - remoteId: "123877", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - transactionDate: new Date("2020-03-31T00:00:00.000Z"), - status: "SUBMITTED", - number: "CN-29", - contact: "contact", - company: "company", - exchangeRate: "2.9", - totalAmount: 50, - remainingCredit: 20, - inclusiveOfTax: true, - lineItems: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "121222", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - item: "0e3fd929-436c-4fd4-a48b-0c61f68d6178", - name: "Basic Monthly", - description: "prorated amount for items", - quantity: "quantity", - memo: "privNote", - unitPrice: "5.0", - taxRate: "8d9fd929-436c-4fd4-a48b-0c61f68d6178", - totalLineAmount: "5.0", - trackingCategories: [ - "8d9fd929-436c-4fd4-a48b-0c61f68d6178", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - account: "8d9fd929-436c-4fd4-a48b-0c61f68d6178", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - contact: "908934-49j9-093f-0989-908923908", - project: "22e65a5d-2df5-4e6e-884a-e538d0339000", - remoteWasDeleted: true, - }, - ], - trackingCategories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - currency: "XUA", - remoteCreatedAt: new Date("2020-03-31T00:00:00.000Z"), - remoteUpdatedAt: new Date("2020-03-31T00:00:00.000Z"), - payments: ["b26fd49a-cbae-470a-a8f8-bcbc119e0390"], - appliedPayments: ["a9a94a75-19c1-41fe-90d8-d9ba959c38e5"], - accountingPeriod: "accounting_period", - appliedToLines: [ - { - remoteId: "088899", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - invoice: "5b3c1341-a20f-4e51-b72c-f3830a16c97b", - appliedDate: new Date("2020-03-31T00:00:00.000Z"), - appliedAmount: "2.9", - }, - ], - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - }, - ], - }); - }); - - test("create", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - const rawRequestBody = { model: {} }; - const rawResponseBody = { - model: { - id: "8d9fd929-436c-4fd4-a48b-0c61f68d6178", - remote_id: "123877", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - transaction_date: "2020-03-31T00:00:00Z", - status: "SUBMITTED", - number: "CN-29", - contact: "contact", - company: "company", - exchange_rate: "2.9", - total_amount: 50, - remaining_credit: 20, - inclusive_of_tax: true, - line_items: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "121222", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - item: "0e3fd929-436c-4fd4-a48b-0c61f68d6178", - name: "Basic Monthly", - description: "prorated amount for items", - quantity: "quantity", - memo: "privNote", - unit_price: "5.0", - tax_rate: "8d9fd929-436c-4fd4-a48b-0c61f68d6178", - total_line_amount: "5.0", - tracking_categories: [ - "8d9fd929-436c-4fd4-a48b-0c61f68d6178", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - account: "8d9fd929-436c-4fd4-a48b-0c61f68d6178", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - contact: "908934-49j9-093f-0989-908923908", - project: "22e65a5d-2df5-4e6e-884a-e538d0339000", - remote_was_deleted: true, - }, - ], - tracking_categories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - currency: "XUA", - remote_created_at: "2020-03-31T00:00:00Z", - remote_updated_at: "2020-03-31T00:00:00Z", - payments: ["b26fd49a-cbae-470a-a8f8-bcbc119e0390"], - applied_payments: ["a9a94a75-19c1-41fe-90d8-d9ba959c38e5"], - accounting_period: "accounting_period", - applied_to_lines: [ - { - remote_id: "088899", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - invoice: "5b3c1341-a20f-4e51-b72c-f3830a16c97b", - applied_date: "2020-03-31T00:00:00Z", - applied_amount: "2.9", - }, - ], - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - }, - warnings: [ - { - source: { pointer: "pointer" }, - title: "Unrecognized Field", - detail: "An unrecognized field, age, was passed in with request data.", - problem_type: "UNRECOGNIZED_FIELD", - }, - ], - errors: [ - { - source: { pointer: "pointer" }, - title: "Missing Required Field", - detail: "custom_fields is a required field on model.", - problem_type: "MISSING_REQUIRED_FIELD", - }, - ], - logs: [ - { - log_id: "99433219-8017-4acd-bb3c-ceb23d663832", - dashboard_view: "https://app.merge.dev/logs/99433219-8017-4acd-bb3c-ceb23d663832", - log_summary: { - url: "www.exampleintegration.com/api/v1/exampleapi", - method: "POST", - status_code: 200, - }, - }, - ], - }; - server - .mockEndpoint() - .post("/accounting/v1/credit-notes") - .jsonBody(rawRequestBody) - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.creditNotes.create({ - isDebugMode: true, - runAsync: true, - model: {}, - }); - expect(response).toEqual({ - model: { - id: "8d9fd929-436c-4fd4-a48b-0c61f68d6178", - remoteId: "123877", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - transactionDate: new Date("2020-03-31T00:00:00.000Z"), - status: "SUBMITTED", - number: "CN-29", - contact: "contact", - company: "company", - exchangeRate: "2.9", - totalAmount: 50, - remainingCredit: 20, - inclusiveOfTax: true, - lineItems: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "121222", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - item: "0e3fd929-436c-4fd4-a48b-0c61f68d6178", - name: "Basic Monthly", - description: "prorated amount for items", - quantity: "quantity", - memo: "privNote", - unitPrice: "5.0", - taxRate: "8d9fd929-436c-4fd4-a48b-0c61f68d6178", - totalLineAmount: "5.0", - trackingCategories: [ - "8d9fd929-436c-4fd4-a48b-0c61f68d6178", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - account: "8d9fd929-436c-4fd4-a48b-0c61f68d6178", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - contact: "908934-49j9-093f-0989-908923908", - project: "22e65a5d-2df5-4e6e-884a-e538d0339000", - remoteWasDeleted: true, - }, - ], - trackingCategories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - currency: "XUA", - remoteCreatedAt: new Date("2020-03-31T00:00:00.000Z"), - remoteUpdatedAt: new Date("2020-03-31T00:00:00.000Z"), - payments: ["b26fd49a-cbae-470a-a8f8-bcbc119e0390"], - appliedPayments: ["a9a94a75-19c1-41fe-90d8-d9ba959c38e5"], - accountingPeriod: "accounting_period", - appliedToLines: [ - { - remoteId: "088899", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - invoice: "5b3c1341-a20f-4e51-b72c-f3830a16c97b", - appliedDate: new Date("2020-03-31T00:00:00.000Z"), - appliedAmount: "2.9", - }, - ], - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - }, - warnings: [ - { - source: { - pointer: "pointer", - }, - title: "Unrecognized Field", - detail: "An unrecognized field, age, was passed in with request data.", - problemType: "UNRECOGNIZED_FIELD", - }, - ], - errors: [ - { - source: { - pointer: "pointer", - }, - title: "Missing Required Field", - detail: "custom_fields is a required field on model.", - problemType: "MISSING_REQUIRED_FIELD", - }, - ], - logs: [ - { - logId: "99433219-8017-4acd-bb3c-ceb23d663832", - dashboardView: "https://app.merge.dev/logs/99433219-8017-4acd-bb3c-ceb23d663832", - logSummary: { - url: "www.exampleintegration.com/api/v1/exampleapi", - method: "POST", - statusCode: 200, - }, - }, - ], - }); - }); - - test("retrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - id: "8d9fd929-436c-4fd4-a48b-0c61f68d6178", - remote_id: "123877", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - transaction_date: "2020-03-31T00:00:00Z", - status: "SUBMITTED", - number: "CN-29", - contact: "contact", - company: "company", - exchange_rate: "2.9", - total_amount: 50, - remaining_credit: 20, - inclusive_of_tax: true, - line_items: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "121222", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - item: "0e3fd929-436c-4fd4-a48b-0c61f68d6178", - name: "Basic Monthly", - description: "prorated amount for items", - quantity: "quantity", - memo: "privNote", - unit_price: "5.0", - tax_rate: "8d9fd929-436c-4fd4-a48b-0c61f68d6178", - total_line_amount: "5.0", - tracking_categories: [ - "8d9fd929-436c-4fd4-a48b-0c61f68d6178", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - account: "8d9fd929-436c-4fd4-a48b-0c61f68d6178", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - contact: "908934-49j9-093f-0989-908923908", - project: "22e65a5d-2df5-4e6e-884a-e538d0339000", - remote_was_deleted: true, - }, - ], - tracking_categories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - currency: "XUA", - remote_created_at: "2020-03-31T00:00:00Z", - remote_updated_at: "2020-03-31T00:00:00Z", - payments: ["b26fd49a-cbae-470a-a8f8-bcbc119e0390"], - applied_payments: ["a9a94a75-19c1-41fe-90d8-d9ba959c38e5"], - accounting_period: "accounting_period", - applied_to_lines: [ - { - remote_id: "088899", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - invoice: "5b3c1341-a20f-4e51-b72c-f3830a16c97b", - applied_date: "2020-03-31T00:00:00Z", - applied_amount: "2.9", - remote_was_deleted: true, - }, - ], - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - }; - server - .mockEndpoint() - .get("/accounting/v1/credit-notes/id") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.creditNotes.retrieve("id", { - expand: "accounting_period", - includeRemoteData: true, - includeShellData: true, - remoteFields: "status", - showEnumOrigins: "status", - }); - expect(response).toEqual({ - id: "8d9fd929-436c-4fd4-a48b-0c61f68d6178", - remoteId: "123877", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - transactionDate: new Date("2020-03-31T00:00:00.000Z"), - status: "SUBMITTED", - number: "CN-29", - contact: "contact", - company: "company", - exchangeRate: "2.9", - totalAmount: 50, - remainingCredit: 20, - inclusiveOfTax: true, - lineItems: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "121222", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - item: "0e3fd929-436c-4fd4-a48b-0c61f68d6178", - name: "Basic Monthly", - description: "prorated amount for items", - quantity: "quantity", - memo: "privNote", - unitPrice: "5.0", - taxRate: "8d9fd929-436c-4fd4-a48b-0c61f68d6178", - totalLineAmount: "5.0", - trackingCategories: [ - "8d9fd929-436c-4fd4-a48b-0c61f68d6178", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - account: "8d9fd929-436c-4fd4-a48b-0c61f68d6178", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - contact: "908934-49j9-093f-0989-908923908", - project: "22e65a5d-2df5-4e6e-884a-e538d0339000", - remoteWasDeleted: true, - }, - ], - trackingCategories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - currency: "XUA", - remoteCreatedAt: new Date("2020-03-31T00:00:00.000Z"), - remoteUpdatedAt: new Date("2020-03-31T00:00:00.000Z"), - payments: ["b26fd49a-cbae-470a-a8f8-bcbc119e0390"], - appliedPayments: ["a9a94a75-19c1-41fe-90d8-d9ba959c38e5"], - accountingPeriod: "accounting_period", - appliedToLines: [ - { - remoteId: "088899", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - invoice: "5b3c1341-a20f-4e51-b72c-f3830a16c97b", - appliedDate: new Date("2020-03-31T00:00:00.000Z"), - appliedAmount: "2.9", - remoteWasDeleted: true, - }, - ], - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - }); - }); - - test("metaPostRetrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - request_schema: { - type: "object", - properties: { - model: { - type: "object", - required: [ - "last_name", - "first_name", - "merge_categories", - "new_york_city_neighborhood", - "favorite_tv_shows", - "favorite_watch", - ], - properties: { - email_addresses: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - email_address_type: { type: "string", title: "email_address_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "email_addresses", - description: "Array of email_addresses objects", - }, - urls: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - url_type: { type: "string", title: "url_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "urls", - description: "Array of urls objects", - }, - first_name: { type: "string", title: "first_name", description: "The first name." }, - last_name: { type: "string", title: "last_name", description: "The last name." }, - phone_numbers: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - phone_number_type: { type: "string", title: "phone_number_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "phone_numbers", - description: "Array of phone_numbers objects", - }, - tags: { - type: "array", - items: { type: "string", format: "uuid" }, - title: "tags", - description: "Array of tags names", - }, - attachments: { - type: "array", - items: { - type: "object", - properties: { - id: { type: "string", title: "id" }, - file_url: { type: "string", title: "file_url" }, - file_name: { type: "string", title: "file_name" }, - attachment_type: { type: "string", title: "attachment_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "attachments", - description: "Array of attachments objects ", - }, - merge_categories: { - type: "array", - categories: { - type: "string", - enum: [ - "HRIS", - "ATS", - "Accounting", - "Ticketing", - "File Storage", - "CRM", - "Marketing Automation", - ], - enum_information: [ - { value: "HRIS", description: "Merge HRIS Category" }, - { value: "ATS", description: "Merge ATS Category" }, - { value: "Accounting", description: "Merge Accounting Category" }, - { value: "Ticketing", description: "Merge Ticketing Category" }, - { value: "File Storage", description: "Merge File Storage Category" }, - { value: "CRM", description: "Merge CRM Category" }, - { - value: "Marketing Automation", - description: "Merge Marketing Automation Category", - }, - ], - }, - title: "Merge Categories", - description: "Array of Merge's Unified API Categories", - }, - new_york_city_neighborhood: { - type: "string", - title: "Borough", - description: "One of the 5 Boroughs of New York City", - }, - favorite_tv_shows: { - type: "array", - items: { type: "string", format: "uuid" }, - title: "Favorite TV Shows", - description: "Array of TV Show objects on merge.tv_shows", - }, - favorite_watch: { - type: "string", - title: "Favorite Watch", - description: "Favorite watch of all time", - }, - }, - }, - }, - }, - remote_field_classes: { key: "value" }, - status: { linked_account_status: "linked_account_status", can_make_request: true }, - has_conditional_params: true, - has_required_linked_account_params: true, - }; - server - .mockEndpoint() - .get("/accounting/v1/credit-notes/meta/post") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.creditNotes.metaPostRetrieve(); - expect(response).toEqual({ - requestSchema: { - type: "object", - properties: { - model: { - type: "object", - required: [ - "last_name", - "first_name", - "merge_categories", - "new_york_city_neighborhood", - "favorite_tv_shows", - "favorite_watch", - ], - properties: { - email_addresses: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - email_address_type: { - type: "string", - title: "email_address_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "email_addresses", - description: "Array of email_addresses objects", - }, - urls: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - url_type: { - type: "string", - title: "url_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "urls", - description: "Array of urls objects", - }, - first_name: { - type: "string", - title: "first_name", - description: "The first name.", - }, - last_name: { - type: "string", - title: "last_name", - description: "The last name.", - }, - phone_numbers: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - phone_number_type: { - type: "string", - title: "phone_number_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "phone_numbers", - description: "Array of phone_numbers objects", - }, - tags: { - type: "array", - items: { - type: "string", - format: "uuid", - }, - title: "tags", - description: "Array of tags names", - }, - attachments: { - type: "array", - items: { - type: "object", - properties: { - id: { - type: "string", - title: "id", - }, - file_url: { - type: "string", - title: "file_url", - }, - file_name: { - type: "string", - title: "file_name", - }, - attachment_type: { - type: "string", - title: "attachment_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "attachments", - description: "Array of attachments objects ", - }, - merge_categories: { - type: "array", - categories: { - type: "string", - enum: [ - "HRIS", - "ATS", - "Accounting", - "Ticketing", - "File Storage", - "CRM", - "Marketing Automation", - ], - enum_information: [ - { - value: "HRIS", - description: "Merge HRIS Category", - }, - { - value: "ATS", - description: "Merge ATS Category", - }, - { - value: "Accounting", - description: "Merge Accounting Category", - }, - { - value: "Ticketing", - description: "Merge Ticketing Category", - }, - { - value: "File Storage", - description: "Merge File Storage Category", - }, - { - value: "CRM", - description: "Merge CRM Category", - }, - { - value: "Marketing Automation", - description: "Merge Marketing Automation Category", - }, - ], - }, - title: "Merge Categories", - description: "Array of Merge's Unified API Categories", - }, - new_york_city_neighborhood: { - type: "string", - title: "Borough", - description: "One of the 5 Boroughs of New York City", - }, - favorite_tv_shows: { - type: "array", - items: { - type: "string", - format: "uuid", - }, - title: "Favorite TV Shows", - description: "Array of TV Show objects on merge.tv_shows", - }, - favorite_watch: { - type: "string", - title: "Favorite Watch", - description: "Favorite watch of all time", - }, - }, - }, - }, - }, - remoteFieldClasses: { - key: "value", - }, - status: { - linkedAccountStatus: "linked_account_status", - canMakeRequest: true, - }, - hasConditionalParams: true, - hasRequiredLinkedAccountParams: true, - }); - }); -}); diff --git a/tests/wire/accounting/deleteAccount.test.ts b/tests/wire/accounting/deleteAccount.test.ts deleted file mode 100644 index c233ce0b1..000000000 --- a/tests/wire/accounting/deleteAccount.test.ts +++ /dev/null @@ -1,21 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import { MergeClient } from "../../../src/Client"; -import { mockServerPool } from "../../mock-server/MockServerPool"; - -describe("DeleteAccountClient", () => { - test("delete", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - server.mockEndpoint().post("/accounting/v1/delete-account").respondWith().statusCode(200).build(); - - const response = await client.accounting.deleteAccount.delete(); - expect(response).toEqual(undefined); - }); -}); diff --git a/tests/wire/accounting/employees.test.ts b/tests/wire/accounting/employees.test.ts deleted file mode 100644 index c9499783c..000000000 --- a/tests/wire/accounting/employees.test.ts +++ /dev/null @@ -1,169 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import { MergeClient } from "../../../src/Client"; -import { mockServerPool } from "../../mock-server/MockServerPool"; - -describe("EmployeesClient", () => { - test("list", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "c640b80b-fac9-409f-aa19-1f9221aec445", - remote_id: "11167", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - first_name: "John", - last_name: "Smith", - is_contractor: true, - employee_number: "325462", - email_address: "johnsmith@merge.dev", - company: "company", - status: "ACTIVE", - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/employees") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.employees.list({ - companyId: "company_id", - createdAfter: new Date("2024-01-15T09:30:00.000Z"), - createdBefore: new Date("2024-01-15T09:30:00.000Z"), - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - expand: "company", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - pageSize: 1, - remoteId: "remote_id", - }); - expect(response).toEqual({ - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "c640b80b-fac9-409f-aa19-1f9221aec445", - remoteId: "11167", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - firstName: "John", - lastName: "Smith", - isContractor: true, - employeeNumber: "325462", - emailAddress: "johnsmith@merge.dev", - company: "company", - status: "ACTIVE", - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - }, - ], - }); - }); - - test("retrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - id: "c640b80b-fac9-409f-aa19-1f9221aec445", - remote_id: "11167", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - first_name: "John", - last_name: "Smith", - is_contractor: true, - employee_number: "325462", - email_address: "johnsmith@merge.dev", - company: "company", - status: "ACTIVE", - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - }; - server - .mockEndpoint() - .get("/accounting/v1/employees/id") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.employees.retrieve("id", { - expand: "company", - includeRemoteData: true, - includeShellData: true, - }); - expect(response).toEqual({ - id: "c640b80b-fac9-409f-aa19-1f9221aec445", - remoteId: "11167", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - firstName: "John", - lastName: "Smith", - isContractor: true, - employeeNumber: "325462", - emailAddress: "johnsmith@merge.dev", - company: "company", - status: "ACTIVE", - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - }); - }); -}); diff --git a/tests/wire/accounting/expenseReports.test.ts b/tests/wire/accounting/expenseReports.test.ts deleted file mode 100644 index 3ce433651..000000000 --- a/tests/wire/accounting/expenseReports.test.ts +++ /dev/null @@ -1,1171 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import { MergeClient } from "../../../src/Client"; -import { mockServerPool } from "../../mock-server/MockServerPool"; - -describe("ExpenseReportsClient", () => { - test("list", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "123e4567-e89b-12d3-a456-426614174000", - remote_id: "exp_123e4567-e89b-12d3-a456-426614174000", - created_at: "2024-01-31T12:00:00Z", - modified_at: "2024-01-31T14:30:00Z", - report_date: "2024-01-31T00:00:00Z", - report_identifier: "EXP-2024-001", - employee: "b9a9b824-6172-4d63-9d90-1c8a86c4f3b1", - status: "DRAFT", - total_amount: 150, - lines: [ - { - id: "1234", - remote_id: "abcd-1234", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - account: "acc-1234", - description: "Client lunch meeting", - expense_date: "2024-01-15T00:00:00Z", - amount: 50, - currency: "USD", - exchange_rate: "exchange_rate", - is_billable: true, - tracking_categories: ["cat-1", "cat-2"], - employee: "emp-1234", - project: "proj-5678", - company: "comp-1234", - contact: "cont-5678", - quantity: 1, - unit_price: 50, - non_reimbursable: false, - tax_amount: 5, - inclusive_of_tax: false, - tax_rate: "tax-1234", - remote_was_deleted: false, - }, - ], - currency: "XUA", - description: "January 2024 Travel Expenses", - accounting_period: "7d793c67-9f72-4a6b-9256-3936f237b0d9", - company: "company", - tracking_categories: [ - "a1b2c3d4-e5f6-4a5b-9c3d-2e1f0a9b8c7d", - "d4c3b2a1-9e8f-7g6h-5i4j-3k2l1m0n9o8p", - ], - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - remote_fields: [{ remote_field_class: "remote_field_class", value: "string" }], - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/expense-reports") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.expenseReports.list({ - companyId: "company_id", - createdAfter: new Date("2024-01-15T09:30:00.000Z"), - createdBefore: new Date("2024-01-15T09:30:00.000Z"), - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - expand: "accounting_period", - includeDeletedData: true, - includeRemoteData: true, - includeRemoteFields: true, - includeShellData: true, - modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - pageSize: 1, - remoteId: "remote_id", - }); - expect(response).toEqual({ - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "123e4567-e89b-12d3-a456-426614174000", - remoteId: "exp_123e4567-e89b-12d3-a456-426614174000", - createdAt: new Date("2024-01-31T12:00:00.000Z"), - modifiedAt: new Date("2024-01-31T14:30:00.000Z"), - reportDate: new Date("2024-01-31T00:00:00.000Z"), - reportIdentifier: "EXP-2024-001", - employee: "b9a9b824-6172-4d63-9d90-1c8a86c4f3b1", - status: "DRAFT", - totalAmount: 150, - lines: [ - { - id: "1234", - remoteId: "abcd-1234", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - account: "acc-1234", - description: "Client lunch meeting", - expenseDate: new Date("2024-01-15T00:00:00.000Z"), - amount: 50, - currency: "USD", - exchangeRate: "exchange_rate", - isBillable: true, - trackingCategories: ["cat-1", "cat-2"], - employee: "emp-1234", - project: "proj-5678", - company: "comp-1234", - contact: "cont-5678", - quantity: 1, - unitPrice: 50, - nonReimbursable: false, - taxAmount: 5, - inclusiveOfTax: false, - taxRate: "tax-1234", - remoteWasDeleted: false, - }, - ], - currency: "XUA", - description: "January 2024 Travel Expenses", - accountingPeriod: "7d793c67-9f72-4a6b-9256-3936f237b0d9", - company: "company", - trackingCategories: [ - "a1b2c3d4-e5f6-4a5b-9c3d-2e1f0a9b8c7d", - "d4c3b2a1-9e8f-7g6h-5i4j-3k2l1m0n9o8p", - ], - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - remoteFields: [ - { - remoteFieldClass: "remote_field_class", - value: "string", - }, - ], - }, - ], - }); - }); - - test("create", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - const rawRequestBody = { - model: { - tracking_categories: ["a1b2c3d4-e5f6-4a5b-9c3d-2e1f0a9b8c7d", "d4c3b2a1-9e8f-7g6h-5i4j-3k2l1m0n9o8p"], - }, - }; - const rawResponseBody = { - model: { - id: "123e4567-e89b-12d3-a456-426614174000", - remote_id: "exp_123e4567-e89b-12d3-a456-426614174000", - created_at: "2024-01-31T12:00:00Z", - modified_at: "2024-01-31T14:30:00Z", - report_date: "2024-01-31T00:00:00Z", - report_identifier: "EXP-2024-001", - employee: "b9a9b824-6172-4d63-9d90-1c8a86c4f3b1", - status: "DRAFT", - total_amount: 150, - lines: [ - { - id: "1234", - remote_id: "abcd-1234", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - account: "acc-1234", - description: "Client lunch meeting", - expense_date: "2024-01-15T00:00:00Z", - amount: 50, - currency: "USD", - exchange_rate: "exchange_rate", - is_billable: true, - tracking_categories: ["cat-1", "cat-2"], - employee: "emp-1234", - project: "proj-5678", - company: "comp-1234", - contact: "cont-5678", - quantity: 1, - unit_price: 50, - non_reimbursable: false, - tax_amount: 5, - inclusive_of_tax: false, - tax_rate: "tax-1234", - remote_was_deleted: false, - }, - ], - currency: "XUA", - description: "January 2024 Travel Expenses", - accounting_period: "7d793c67-9f72-4a6b-9256-3936f237b0d9", - company: "company", - tracking_categories: ["a1b2c3d4-e5f6-4a5b-9c3d-2e1f0a9b8c7d", "d4c3b2a1-9e8f-7g6h-5i4j-3k2l1m0n9o8p"], - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - remote_fields: [{ remote_field_class: "remote_field_class", value: "string" }], - }, - warnings: [ - { - source: { pointer: "pointer" }, - title: "Unrecognized Field", - detail: "An unrecognized field, age, was passed in with request data.", - problem_type: "UNRECOGNIZED_FIELD", - }, - ], - errors: [ - { - source: { pointer: "pointer" }, - title: "Missing Required Field", - detail: "custom_fields is a required field on model.", - problem_type: "MISSING_REQUIRED_FIELD", - }, - ], - logs: [ - { - log_id: "99433219-8017-4acd-bb3c-ceb23d663832", - dashboard_view: "https://app.merge.dev/logs/99433219-8017-4acd-bb3c-ceb23d663832", - log_summary: { - url: "www.exampleintegration.com/api/v1/exampleapi", - method: "POST", - status_code: 200, - }, - }, - ], - }; - server - .mockEndpoint() - .post("/accounting/v1/expense-reports") - .jsonBody(rawRequestBody) - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.expenseReports.create({ - isDebugMode: true, - runAsync: true, - model: { - trackingCategories: ["a1b2c3d4-e5f6-4a5b-9c3d-2e1f0a9b8c7d", "d4c3b2a1-9e8f-7g6h-5i4j-3k2l1m0n9o8p"], - }, - }); - expect(response).toEqual({ - model: { - id: "123e4567-e89b-12d3-a456-426614174000", - remoteId: "exp_123e4567-e89b-12d3-a456-426614174000", - createdAt: new Date("2024-01-31T12:00:00.000Z"), - modifiedAt: new Date("2024-01-31T14:30:00.000Z"), - reportDate: new Date("2024-01-31T00:00:00.000Z"), - reportIdentifier: "EXP-2024-001", - employee: "b9a9b824-6172-4d63-9d90-1c8a86c4f3b1", - status: "DRAFT", - totalAmount: 150, - lines: [ - { - id: "1234", - remoteId: "abcd-1234", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - account: "acc-1234", - description: "Client lunch meeting", - expenseDate: new Date("2024-01-15T00:00:00.000Z"), - amount: 50, - currency: "USD", - exchangeRate: "exchange_rate", - isBillable: true, - trackingCategories: ["cat-1", "cat-2"], - employee: "emp-1234", - project: "proj-5678", - company: "comp-1234", - contact: "cont-5678", - quantity: 1, - unitPrice: 50, - nonReimbursable: false, - taxAmount: 5, - inclusiveOfTax: false, - taxRate: "tax-1234", - remoteWasDeleted: false, - }, - ], - currency: "XUA", - description: "January 2024 Travel Expenses", - accountingPeriod: "7d793c67-9f72-4a6b-9256-3936f237b0d9", - company: "company", - trackingCategories: ["a1b2c3d4-e5f6-4a5b-9c3d-2e1f0a9b8c7d", "d4c3b2a1-9e8f-7g6h-5i4j-3k2l1m0n9o8p"], - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - remoteFields: [ - { - remoteFieldClass: "remote_field_class", - value: "string", - }, - ], - }, - warnings: [ - { - source: { - pointer: "pointer", - }, - title: "Unrecognized Field", - detail: "An unrecognized field, age, was passed in with request data.", - problemType: "UNRECOGNIZED_FIELD", - }, - ], - errors: [ - { - source: { - pointer: "pointer", - }, - title: "Missing Required Field", - detail: "custom_fields is a required field on model.", - problemType: "MISSING_REQUIRED_FIELD", - }, - ], - logs: [ - { - logId: "99433219-8017-4acd-bb3c-ceb23d663832", - dashboardView: "https://app.merge.dev/logs/99433219-8017-4acd-bb3c-ceb23d663832", - logSummary: { - url: "www.exampleintegration.com/api/v1/exampleapi", - method: "POST", - statusCode: 200, - }, - }, - ], - }); - }); - - test("linesList", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "1234", - remote_id: "abcd-1234", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - account: "account", - description: "Client lunch meeting", - expense_date: "2024-01-15T00:00:00Z", - amount: 50, - currency: "XUA", - exchange_rate: "exchange_rate", - is_billable: true, - tracking_categories: ["cat-1", "cat-2"], - employee: "employee", - project: "project", - company: "company", - contact: "contact", - quantity: 1, - unit_price: 50, - non_reimbursable: true, - tax_amount: 5, - inclusive_of_tax: true, - tax_rate: "tax_rate", - remote_was_deleted: true, - remote_fields: [{ remote_field_class: "remote_field_class", value: "string" }], - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/expense-reports/expense_report_id/lines") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.expenseReports.linesList("expense_report_id", { - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - expand: "account", - includeDeletedData: true, - includeRemoteData: true, - includeRemoteFields: true, - includeShellData: true, - pageSize: 1, - }); - expect(response).toEqual({ - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "1234", - remoteId: "abcd-1234", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - account: "account", - description: "Client lunch meeting", - expenseDate: new Date("2024-01-15T00:00:00.000Z"), - amount: 50, - currency: "XUA", - exchangeRate: "exchange_rate", - isBillable: true, - trackingCategories: ["cat-1", "cat-2"], - employee: "employee", - project: "project", - company: "company", - contact: "contact", - quantity: 1, - unitPrice: 50, - nonReimbursable: true, - taxAmount: 5, - inclusiveOfTax: true, - taxRate: "tax_rate", - remoteWasDeleted: true, - remoteFields: [ - { - remoteFieldClass: "remote_field_class", - value: "string", - }, - ], - }, - ], - }); - }); - - test("retrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - id: "123e4567-e89b-12d3-a456-426614174000", - remote_id: "exp_123e4567-e89b-12d3-a456-426614174000", - created_at: "2024-01-31T12:00:00Z", - modified_at: "2024-01-31T14:30:00Z", - report_date: "2024-01-31T00:00:00Z", - report_identifier: "EXP-2024-001", - employee: "b9a9b824-6172-4d63-9d90-1c8a86c4f3b1", - status: "DRAFT", - total_amount: 150, - lines: [ - { - id: "1234", - remote_id: "abcd-1234", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - account: "acc-1234", - description: "Client lunch meeting", - expense_date: "2024-01-15T00:00:00Z", - amount: 50, - currency: "USD", - exchange_rate: "exchange_rate", - is_billable: true, - tracking_categories: ["cat-1", "cat-2"], - employee: "emp-1234", - project: "proj-5678", - company: "comp-1234", - contact: "cont-5678", - quantity: 1, - unit_price: 50, - non_reimbursable: false, - tax_amount: 5, - inclusive_of_tax: false, - tax_rate: "tax-1234", - remote_was_deleted: false, - remote_fields: [{ remote_field_class: "remote_field_class", value: "string" }], - }, - ], - currency: "XUA", - description: "January 2024 Travel Expenses", - accounting_period: "7d793c67-9f72-4a6b-9256-3936f237b0d9", - company: "company", - tracking_categories: ["a1b2c3d4-e5f6-4a5b-9c3d-2e1f0a9b8c7d", "d4c3b2a1-9e8f-7g6h-5i4j-3k2l1m0n9o8p"], - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - remote_fields: [{ remote_field_class: "remote_field_class", value: "string" }], - }; - server - .mockEndpoint() - .get("/accounting/v1/expense-reports/id") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.expenseReports.retrieve("id", { - expand: "accounting_period", - includeRemoteData: true, - includeRemoteFields: true, - includeShellData: true, - }); - expect(response).toEqual({ - id: "123e4567-e89b-12d3-a456-426614174000", - remoteId: "exp_123e4567-e89b-12d3-a456-426614174000", - createdAt: new Date("2024-01-31T12:00:00.000Z"), - modifiedAt: new Date("2024-01-31T14:30:00.000Z"), - reportDate: new Date("2024-01-31T00:00:00.000Z"), - reportIdentifier: "EXP-2024-001", - employee: "b9a9b824-6172-4d63-9d90-1c8a86c4f3b1", - status: "DRAFT", - totalAmount: 150, - lines: [ - { - id: "1234", - remoteId: "abcd-1234", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - account: "acc-1234", - description: "Client lunch meeting", - expenseDate: new Date("2024-01-15T00:00:00.000Z"), - amount: 50, - currency: "USD", - exchangeRate: "exchange_rate", - isBillable: true, - trackingCategories: ["cat-1", "cat-2"], - employee: "emp-1234", - project: "proj-5678", - company: "comp-1234", - contact: "cont-5678", - quantity: 1, - unitPrice: 50, - nonReimbursable: false, - taxAmount: 5, - inclusiveOfTax: false, - taxRate: "tax-1234", - remoteWasDeleted: false, - remoteFields: [ - { - remoteFieldClass: "remote_field_class", - value: "string", - }, - ], - }, - ], - currency: "XUA", - description: "January 2024 Travel Expenses", - accountingPeriod: "7d793c67-9f72-4a6b-9256-3936f237b0d9", - company: "company", - trackingCategories: ["a1b2c3d4-e5f6-4a5b-9c3d-2e1f0a9b8c7d", "d4c3b2a1-9e8f-7g6h-5i4j-3k2l1m0n9o8p"], - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - remoteFields: [ - { - remoteFieldClass: "remote_field_class", - value: "string", - }, - ], - }); - }); - - test("linesRemoteFieldClassesList", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "id", - display_name: "display_name", - remote_key_name: "remote_key_name", - description: "description", - is_custom: true, - is_common_model_field: true, - is_required: true, - field_type: "string", - field_format: "string", - field_choices: ["field_choices"], - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/expense-reports/lines/remote-field-classes") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.expenseReports.linesRemoteFieldClassesList({ - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - isCommonModelField: true, - isCustom: true, - pageSize: 1, - }); - expect(response).toEqual({ - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "id", - displayName: "display_name", - remoteKeyName: "remote_key_name", - description: "description", - isCustom: true, - isCommonModelField: true, - isRequired: true, - fieldType: "string", - fieldFormat: "string", - fieldChoices: ["field_choices"], - }, - ], - }); - }); - - test("metaPostRetrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - request_schema: { - type: "object", - properties: { - model: { - type: "object", - required: [ - "last_name", - "first_name", - "merge_categories", - "new_york_city_neighborhood", - "favorite_tv_shows", - "favorite_watch", - ], - properties: { - email_addresses: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - email_address_type: { type: "string", title: "email_address_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "email_addresses", - description: "Array of email_addresses objects", - }, - urls: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - url_type: { type: "string", title: "url_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "urls", - description: "Array of urls objects", - }, - first_name: { type: "string", title: "first_name", description: "The first name." }, - last_name: { type: "string", title: "last_name", description: "The last name." }, - phone_numbers: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - phone_number_type: { type: "string", title: "phone_number_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "phone_numbers", - description: "Array of phone_numbers objects", - }, - tags: { - type: "array", - items: { type: "string", format: "uuid" }, - title: "tags", - description: "Array of tags names", - }, - attachments: { - type: "array", - items: { - type: "object", - properties: { - id: { type: "string", title: "id" }, - file_url: { type: "string", title: "file_url" }, - file_name: { type: "string", title: "file_name" }, - attachment_type: { type: "string", title: "attachment_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "attachments", - description: "Array of attachments objects ", - }, - merge_categories: { - type: "array", - categories: { - type: "string", - enum: [ - "HRIS", - "ATS", - "Accounting", - "Ticketing", - "File Storage", - "CRM", - "Marketing Automation", - ], - enum_information: [ - { value: "HRIS", description: "Merge HRIS Category" }, - { value: "ATS", description: "Merge ATS Category" }, - { value: "Accounting", description: "Merge Accounting Category" }, - { value: "Ticketing", description: "Merge Ticketing Category" }, - { value: "File Storage", description: "Merge File Storage Category" }, - { value: "CRM", description: "Merge CRM Category" }, - { - value: "Marketing Automation", - description: "Merge Marketing Automation Category", - }, - ], - }, - title: "Merge Categories", - description: "Array of Merge's Unified API Categories", - }, - new_york_city_neighborhood: { - type: "string", - title: "Borough", - description: "One of the 5 Boroughs of New York City", - }, - favorite_tv_shows: { - type: "array", - items: { type: "string", format: "uuid" }, - title: "Favorite TV Shows", - description: "Array of TV Show objects on merge.tv_shows", - }, - favorite_watch: { - type: "string", - title: "Favorite Watch", - description: "Favorite watch of all time", - }, - }, - }, - }, - }, - remote_field_classes: { key: "value" }, - status: { linked_account_status: "linked_account_status", can_make_request: true }, - has_conditional_params: true, - has_required_linked_account_params: true, - }; - server - .mockEndpoint() - .get("/accounting/v1/expense-reports/meta/post") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.expenseReports.metaPostRetrieve(); - expect(response).toEqual({ - requestSchema: { - type: "object", - properties: { - model: { - type: "object", - required: [ - "last_name", - "first_name", - "merge_categories", - "new_york_city_neighborhood", - "favorite_tv_shows", - "favorite_watch", - ], - properties: { - email_addresses: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - email_address_type: { - type: "string", - title: "email_address_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "email_addresses", - description: "Array of email_addresses objects", - }, - urls: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - url_type: { - type: "string", - title: "url_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "urls", - description: "Array of urls objects", - }, - first_name: { - type: "string", - title: "first_name", - description: "The first name.", - }, - last_name: { - type: "string", - title: "last_name", - description: "The last name.", - }, - phone_numbers: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - phone_number_type: { - type: "string", - title: "phone_number_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "phone_numbers", - description: "Array of phone_numbers objects", - }, - tags: { - type: "array", - items: { - type: "string", - format: "uuid", - }, - title: "tags", - description: "Array of tags names", - }, - attachments: { - type: "array", - items: { - type: "object", - properties: { - id: { - type: "string", - title: "id", - }, - file_url: { - type: "string", - title: "file_url", - }, - file_name: { - type: "string", - title: "file_name", - }, - attachment_type: { - type: "string", - title: "attachment_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "attachments", - description: "Array of attachments objects ", - }, - merge_categories: { - type: "array", - categories: { - type: "string", - enum: [ - "HRIS", - "ATS", - "Accounting", - "Ticketing", - "File Storage", - "CRM", - "Marketing Automation", - ], - enum_information: [ - { - value: "HRIS", - description: "Merge HRIS Category", - }, - { - value: "ATS", - description: "Merge ATS Category", - }, - { - value: "Accounting", - description: "Merge Accounting Category", - }, - { - value: "Ticketing", - description: "Merge Ticketing Category", - }, - { - value: "File Storage", - description: "Merge File Storage Category", - }, - { - value: "CRM", - description: "Merge CRM Category", - }, - { - value: "Marketing Automation", - description: "Merge Marketing Automation Category", - }, - ], - }, - title: "Merge Categories", - description: "Array of Merge's Unified API Categories", - }, - new_york_city_neighborhood: { - type: "string", - title: "Borough", - description: "One of the 5 Boroughs of New York City", - }, - favorite_tv_shows: { - type: "array", - items: { - type: "string", - format: "uuid", - }, - title: "Favorite TV Shows", - description: "Array of TV Show objects on merge.tv_shows", - }, - favorite_watch: { - type: "string", - title: "Favorite Watch", - description: "Favorite watch of all time", - }, - }, - }, - }, - }, - remoteFieldClasses: { - key: "value", - }, - status: { - linkedAccountStatus: "linked_account_status", - canMakeRequest: true, - }, - hasConditionalParams: true, - hasRequiredLinkedAccountParams: true, - }); - }); - - test("remoteFieldClassesList", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "id", - display_name: "display_name", - remote_key_name: "remote_key_name", - description: "description", - is_custom: true, - is_common_model_field: true, - is_required: true, - field_type: "string", - field_format: "string", - field_choices: ["field_choices"], - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/expense-reports/remote-field-classes") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.expenseReports.remoteFieldClassesList({ - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - isCommonModelField: true, - isCustom: true, - pageSize: 1, - }); - expect(response).toEqual({ - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "id", - displayName: "display_name", - remoteKeyName: "remote_key_name", - description: "description", - isCustom: true, - isCommonModelField: true, - isRequired: true, - fieldType: "string", - fieldFormat: "string", - fieldChoices: ["field_choices"], - }, - ], - }); - }); -}); diff --git a/tests/wire/accounting/expenses.test.ts b/tests/wire/accounting/expenses.test.ts deleted file mode 100644 index 6664d2db7..000000000 --- a/tests/wire/accounting/expenses.test.ts +++ /dev/null @@ -1,1229 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import { MergeClient } from "../../../src/Client"; -import { mockServerPool } from "../../mock-server/MockServerPool"; - -describe("ExpensesClient", () => { - test("list", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "088899", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - transaction_date: "2024-01-15T09:30:00Z", - remote_created_at: "2020-03-31T00:00:00Z", - account: "account", - contact: "contact", - total_amount: 10000, - sub_total: 1.1, - total_tax_amount: 1.1, - currency: "XUA", - exchange_rate: "2.9", - inclusive_of_tax: true, - company: "company", - employee: "employee", - memo: "New employee supplies", - lines: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "121222", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - item: "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - net_amount: 25.54, - tracking_categories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - employee: "7442f0d5-722d-45bd-b807-6e38489d37fe", - account: "2a56344a-a491-11ec-b909-0242ac120002", - contact: "c640b80b-fac9-409f-aa19-1f9221aec445", - project: "22e65a5d-2df5-4e6e-884a-e538d0339000", - description: "MacBook Pro", - exchange_rate: "2.9", - tax_rate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - quantity: "quantity", - unit_price: "unit_price", - remote_was_deleted: false, - }, - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "121223", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - item: "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - net_amount: 10, - tracking_categories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - account: "2a56344a-a491-11ec-b909-0242ac120002", - description: "Desk Lamp", - exchange_rate: "2.9", - tax_rate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - }, - ], - tracking_categories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - remote_was_deleted: true, - accounting_period: "accounting_period", - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - remote_fields: [{ remote_field_class: "remote_field_class", value: "string" }], - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/expenses") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.expenses.list({ - companyId: "company_id", - createdAfter: new Date("2024-01-15T09:30:00.000Z"), - createdBefore: new Date("2024-01-15T09:30:00.000Z"), - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - expand: "account", - includeDeletedData: true, - includeRemoteData: true, - includeRemoteFields: true, - includeShellData: true, - modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - pageSize: 1, - remoteId: "remote_id", - transactionDateAfter: new Date("2024-01-15T09:30:00.000Z"), - transactionDateBefore: new Date("2024-01-15T09:30:00.000Z"), - }); - expect(response).toEqual({ - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "088899", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - transactionDate: new Date("2024-01-15T09:30:00.000Z"), - remoteCreatedAt: new Date("2020-03-31T00:00:00.000Z"), - account: "account", - contact: "contact", - totalAmount: 10000, - subTotal: 1.1, - totalTaxAmount: 1.1, - currency: "XUA", - exchangeRate: "2.9", - inclusiveOfTax: true, - company: "company", - employee: "employee", - memo: "New employee supplies", - lines: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "121222", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - item: "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - netAmount: 25.54, - trackingCategories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - employee: "7442f0d5-722d-45bd-b807-6e38489d37fe", - account: "2a56344a-a491-11ec-b909-0242ac120002", - contact: "c640b80b-fac9-409f-aa19-1f9221aec445", - project: "22e65a5d-2df5-4e6e-884a-e538d0339000", - description: "MacBook Pro", - exchangeRate: "2.9", - taxRate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - quantity: "quantity", - unitPrice: "unit_price", - remoteWasDeleted: false, - }, - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "121223", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - item: "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - netAmount: 10, - trackingCategories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - account: "2a56344a-a491-11ec-b909-0242ac120002", - description: "Desk Lamp", - exchangeRate: "2.9", - taxRate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - }, - ], - trackingCategories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - remoteWasDeleted: true, - accountingPeriod: "accounting_period", - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - remoteFields: [ - { - remoteFieldClass: "remote_field_class", - value: "string", - }, - ], - }, - ], - }); - }); - - test("create", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - const rawRequestBody = { model: {} }; - const rawResponseBody = { - model: { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "088899", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - transaction_date: "2024-01-15T09:30:00Z", - remote_created_at: "2020-03-31T00:00:00Z", - account: "account", - contact: "contact", - total_amount: 10000, - sub_total: 1.1, - total_tax_amount: 1.1, - currency: "XUA", - exchange_rate: "2.9", - inclusive_of_tax: true, - company: "company", - employee: "employee", - memo: "New employee supplies", - lines: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "121222", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - item: "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - net_amount: 25.54, - tracking_categories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - employee: "7442f0d5-722d-45bd-b807-6e38489d37fe", - account: "2a56344a-a491-11ec-b909-0242ac120002", - contact: "c640b80b-fac9-409f-aa19-1f9221aec445", - project: "22e65a5d-2df5-4e6e-884a-e538d0339000", - description: "MacBook Pro", - exchange_rate: "2.9", - tax_rate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - quantity: "quantity", - unit_price: "unit_price", - remote_was_deleted: false, - }, - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "121223", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - item: "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - net_amount: 10, - tracking_categories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - account: "2a56344a-a491-11ec-b909-0242ac120002", - description: "Desk Lamp", - exchange_rate: "2.9", - tax_rate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - }, - ], - tracking_categories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - remote_was_deleted: true, - accounting_period: "accounting_period", - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - remote_fields: [{ remote_field_class: "remote_field_class", value: "string" }], - }, - warnings: [ - { - source: { pointer: "pointer" }, - title: "Unrecognized Field", - detail: "An unrecognized field, age, was passed in with request data.", - problem_type: "UNRECOGNIZED_FIELD", - }, - ], - errors: [ - { - source: { pointer: "pointer" }, - title: "Missing Required Field", - detail: "custom_fields is a required field on model.", - problem_type: "MISSING_REQUIRED_FIELD", - }, - ], - logs: [ - { - log_id: "99433219-8017-4acd-bb3c-ceb23d663832", - dashboard_view: "https://app.merge.dev/logs/99433219-8017-4acd-bb3c-ceb23d663832", - log_summary: { - url: "www.exampleintegration.com/api/v1/exampleapi", - method: "POST", - status_code: 200, - }, - }, - ], - }; - server - .mockEndpoint() - .post("/accounting/v1/expenses") - .jsonBody(rawRequestBody) - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.expenses.create({ - isDebugMode: true, - runAsync: true, - model: {}, - }); - expect(response).toEqual({ - model: { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "088899", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - transactionDate: new Date("2024-01-15T09:30:00.000Z"), - remoteCreatedAt: new Date("2020-03-31T00:00:00.000Z"), - account: "account", - contact: "contact", - totalAmount: 10000, - subTotal: 1.1, - totalTaxAmount: 1.1, - currency: "XUA", - exchangeRate: "2.9", - inclusiveOfTax: true, - company: "company", - employee: "employee", - memo: "New employee supplies", - lines: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "121222", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - item: "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - netAmount: 25.54, - trackingCategories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - employee: "7442f0d5-722d-45bd-b807-6e38489d37fe", - account: "2a56344a-a491-11ec-b909-0242ac120002", - contact: "c640b80b-fac9-409f-aa19-1f9221aec445", - project: "22e65a5d-2df5-4e6e-884a-e538d0339000", - description: "MacBook Pro", - exchangeRate: "2.9", - taxRate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - quantity: "quantity", - unitPrice: "unit_price", - remoteWasDeleted: false, - }, - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "121223", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - item: "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - netAmount: 10, - trackingCategories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - account: "2a56344a-a491-11ec-b909-0242ac120002", - description: "Desk Lamp", - exchangeRate: "2.9", - taxRate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - }, - ], - trackingCategories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - remoteWasDeleted: true, - accountingPeriod: "accounting_period", - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - remoteFields: [ - { - remoteFieldClass: "remote_field_class", - value: "string", - }, - ], - }, - warnings: [ - { - source: { - pointer: "pointer", - }, - title: "Unrecognized Field", - detail: "An unrecognized field, age, was passed in with request data.", - problemType: "UNRECOGNIZED_FIELD", - }, - ], - errors: [ - { - source: { - pointer: "pointer", - }, - title: "Missing Required Field", - detail: "custom_fields is a required field on model.", - problemType: "MISSING_REQUIRED_FIELD", - }, - ], - logs: [ - { - logId: "99433219-8017-4acd-bb3c-ceb23d663832", - dashboardView: "https://app.merge.dev/logs/99433219-8017-4acd-bb3c-ceb23d663832", - logSummary: { - url: "www.exampleintegration.com/api/v1/exampleapi", - method: "POST", - statusCode: 200, - }, - }, - ], - }); - }); - - test("retrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "088899", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - transaction_date: "2024-01-15T09:30:00Z", - remote_created_at: "2020-03-31T00:00:00Z", - account: "account", - contact: "contact", - total_amount: 10000, - sub_total: 1.1, - total_tax_amount: 1.1, - currency: "XUA", - exchange_rate: "2.9", - inclusive_of_tax: true, - company: "company", - employee: "employee", - memo: "New employee supplies", - lines: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "121222", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - item: "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - net_amount: 25.54, - tracking_categories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - employee: "7442f0d5-722d-45bd-b807-6e38489d37fe", - currency: "XUA", - account: "2a56344a-a491-11ec-b909-0242ac120002", - contact: "c640b80b-fac9-409f-aa19-1f9221aec445", - project: "22e65a5d-2df5-4e6e-884a-e538d0339000", - description: "MacBook Pro", - exchange_rate: "2.9", - tax_rate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - quantity: "quantity", - unit_price: "unit_price", - remote_was_deleted: false, - }, - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "121223", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - item: "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - net_amount: 10, - tracking_categories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - employee: "employee", - currency: "XUA", - account: "2a56344a-a491-11ec-b909-0242ac120002", - contact: "contact", - project: "project", - description: "Desk Lamp", - exchange_rate: "2.9", - tax_rate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - quantity: "quantity", - unit_price: "unit_price", - remote_was_deleted: true, - }, - ], - tracking_categories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - remote_was_deleted: true, - accounting_period: "accounting_period", - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - remote_fields: [{ remote_field_class: "remote_field_class", value: "string" }], - }; - server - .mockEndpoint() - .get("/accounting/v1/expenses/id") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.expenses.retrieve("id", { - expand: "account", - includeRemoteData: true, - includeRemoteFields: true, - includeShellData: true, - }); - expect(response).toEqual({ - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "088899", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - transactionDate: new Date("2024-01-15T09:30:00.000Z"), - remoteCreatedAt: new Date("2020-03-31T00:00:00.000Z"), - account: "account", - contact: "contact", - totalAmount: 10000, - subTotal: 1.1, - totalTaxAmount: 1.1, - currency: "XUA", - exchangeRate: "2.9", - inclusiveOfTax: true, - company: "company", - employee: "employee", - memo: "New employee supplies", - lines: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "121222", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - item: "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - netAmount: 25.54, - trackingCategories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - employee: "7442f0d5-722d-45bd-b807-6e38489d37fe", - currency: "XUA", - account: "2a56344a-a491-11ec-b909-0242ac120002", - contact: "c640b80b-fac9-409f-aa19-1f9221aec445", - project: "22e65a5d-2df5-4e6e-884a-e538d0339000", - description: "MacBook Pro", - exchangeRate: "2.9", - taxRate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - quantity: "quantity", - unitPrice: "unit_price", - remoteWasDeleted: false, - }, - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "121223", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - item: "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - netAmount: 10, - trackingCategories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - employee: "employee", - currency: "XUA", - account: "2a56344a-a491-11ec-b909-0242ac120002", - contact: "contact", - project: "project", - description: "Desk Lamp", - exchangeRate: "2.9", - taxRate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - quantity: "quantity", - unitPrice: "unit_price", - remoteWasDeleted: true, - }, - ], - trackingCategories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - remoteWasDeleted: true, - accountingPeriod: "accounting_period", - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - remoteFields: [ - { - remoteFieldClass: "remote_field_class", - value: "string", - }, - ], - }); - }); - - test("linesRemoteFieldClassesList", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "id", - display_name: "display_name", - remote_key_name: "remote_key_name", - description: "description", - is_custom: true, - is_common_model_field: true, - is_required: true, - field_type: "string", - field_format: "string", - field_choices: ["field_choices"], - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/expenses/lines/remote-field-classes") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.expenses.linesRemoteFieldClassesList({ - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - isCommonModelField: true, - isCustom: true, - pageSize: 1, - }); - expect(response).toEqual({ - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "id", - displayName: "display_name", - remoteKeyName: "remote_key_name", - description: "description", - isCustom: true, - isCommonModelField: true, - isRequired: true, - fieldType: "string", - fieldFormat: "string", - fieldChoices: ["field_choices"], - }, - ], - }); - }); - - test("metaPostRetrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - request_schema: { - type: "object", - properties: { - model: { - type: "object", - required: [ - "last_name", - "first_name", - "merge_categories", - "new_york_city_neighborhood", - "favorite_tv_shows", - "favorite_watch", - ], - properties: { - email_addresses: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - email_address_type: { type: "string", title: "email_address_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "email_addresses", - description: "Array of email_addresses objects", - }, - urls: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - url_type: { type: "string", title: "url_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "urls", - description: "Array of urls objects", - }, - first_name: { type: "string", title: "first_name", description: "The first name." }, - last_name: { type: "string", title: "last_name", description: "The last name." }, - phone_numbers: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - phone_number_type: { type: "string", title: "phone_number_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "phone_numbers", - description: "Array of phone_numbers objects", - }, - tags: { - type: "array", - items: { type: "string", format: "uuid" }, - title: "tags", - description: "Array of tags names", - }, - attachments: { - type: "array", - items: { - type: "object", - properties: { - id: { type: "string", title: "id" }, - file_url: { type: "string", title: "file_url" }, - file_name: { type: "string", title: "file_name" }, - attachment_type: { type: "string", title: "attachment_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "attachments", - description: "Array of attachments objects ", - }, - merge_categories: { - type: "array", - categories: { - type: "string", - enum: [ - "HRIS", - "ATS", - "Accounting", - "Ticketing", - "File Storage", - "CRM", - "Marketing Automation", - ], - enum_information: [ - { value: "HRIS", description: "Merge HRIS Category" }, - { value: "ATS", description: "Merge ATS Category" }, - { value: "Accounting", description: "Merge Accounting Category" }, - { value: "Ticketing", description: "Merge Ticketing Category" }, - { value: "File Storage", description: "Merge File Storage Category" }, - { value: "CRM", description: "Merge CRM Category" }, - { - value: "Marketing Automation", - description: "Merge Marketing Automation Category", - }, - ], - }, - title: "Merge Categories", - description: "Array of Merge's Unified API Categories", - }, - new_york_city_neighborhood: { - type: "string", - title: "Borough", - description: "One of the 5 Boroughs of New York City", - }, - favorite_tv_shows: { - type: "array", - items: { type: "string", format: "uuid" }, - title: "Favorite TV Shows", - description: "Array of TV Show objects on merge.tv_shows", - }, - favorite_watch: { - type: "string", - title: "Favorite Watch", - description: "Favorite watch of all time", - }, - }, - }, - }, - }, - remote_field_classes: { key: "value" }, - status: { linked_account_status: "linked_account_status", can_make_request: true }, - has_conditional_params: true, - has_required_linked_account_params: true, - }; - server - .mockEndpoint() - .get("/accounting/v1/expenses/meta/post") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.expenses.metaPostRetrieve(); - expect(response).toEqual({ - requestSchema: { - type: "object", - properties: { - model: { - type: "object", - required: [ - "last_name", - "first_name", - "merge_categories", - "new_york_city_neighborhood", - "favorite_tv_shows", - "favorite_watch", - ], - properties: { - email_addresses: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - email_address_type: { - type: "string", - title: "email_address_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "email_addresses", - description: "Array of email_addresses objects", - }, - urls: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - url_type: { - type: "string", - title: "url_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "urls", - description: "Array of urls objects", - }, - first_name: { - type: "string", - title: "first_name", - description: "The first name.", - }, - last_name: { - type: "string", - title: "last_name", - description: "The last name.", - }, - phone_numbers: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - phone_number_type: { - type: "string", - title: "phone_number_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "phone_numbers", - description: "Array of phone_numbers objects", - }, - tags: { - type: "array", - items: { - type: "string", - format: "uuid", - }, - title: "tags", - description: "Array of tags names", - }, - attachments: { - type: "array", - items: { - type: "object", - properties: { - id: { - type: "string", - title: "id", - }, - file_url: { - type: "string", - title: "file_url", - }, - file_name: { - type: "string", - title: "file_name", - }, - attachment_type: { - type: "string", - title: "attachment_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "attachments", - description: "Array of attachments objects ", - }, - merge_categories: { - type: "array", - categories: { - type: "string", - enum: [ - "HRIS", - "ATS", - "Accounting", - "Ticketing", - "File Storage", - "CRM", - "Marketing Automation", - ], - enum_information: [ - { - value: "HRIS", - description: "Merge HRIS Category", - }, - { - value: "ATS", - description: "Merge ATS Category", - }, - { - value: "Accounting", - description: "Merge Accounting Category", - }, - { - value: "Ticketing", - description: "Merge Ticketing Category", - }, - { - value: "File Storage", - description: "Merge File Storage Category", - }, - { - value: "CRM", - description: "Merge CRM Category", - }, - { - value: "Marketing Automation", - description: "Merge Marketing Automation Category", - }, - ], - }, - title: "Merge Categories", - description: "Array of Merge's Unified API Categories", - }, - new_york_city_neighborhood: { - type: "string", - title: "Borough", - description: "One of the 5 Boroughs of New York City", - }, - favorite_tv_shows: { - type: "array", - items: { - type: "string", - format: "uuid", - }, - title: "Favorite TV Shows", - description: "Array of TV Show objects on merge.tv_shows", - }, - favorite_watch: { - type: "string", - title: "Favorite Watch", - description: "Favorite watch of all time", - }, - }, - }, - }, - }, - remoteFieldClasses: { - key: "value", - }, - status: { - linkedAccountStatus: "linked_account_status", - canMakeRequest: true, - }, - hasConditionalParams: true, - hasRequiredLinkedAccountParams: true, - }); - }); - - test("remoteFieldClassesList", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "id", - display_name: "display_name", - remote_key_name: "remote_key_name", - description: "description", - is_custom: true, - is_common_model_field: true, - is_required: true, - field_type: "string", - field_format: "string", - field_choices: ["field_choices"], - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/expenses/remote-field-classes") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.expenses.remoteFieldClassesList({ - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - isCommonModelField: true, - isCustom: true, - pageSize: 1, - }); - expect(response).toEqual({ - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "id", - displayName: "display_name", - remoteKeyName: "remote_key_name", - description: "description", - isCustom: true, - isCommonModelField: true, - isRequired: true, - fieldType: "string", - fieldFormat: "string", - fieldChoices: ["field_choices"], - }, - ], - }); - }); -}); diff --git a/tests/wire/accounting/fieldMapping.test.ts b/tests/wire/accounting/fieldMapping.test.ts deleted file mode 100644 index 876cba868..000000000 --- a/tests/wire/accounting/fieldMapping.test.ts +++ /dev/null @@ -1,2716 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import { MergeClient } from "../../../src/Client"; -import { mockServerPool } from "../../mock-server/MockServerPool"; - -describe("FieldMappingClient", () => { - test("field_mappings_retrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - Account: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - is_integration_wide: true, - target_field: { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_organization_wide: true, - }, - remote_field: { - remote_key_name: "example_remote_field_key", - schema: { type: "string" }, - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_remote_field_key"], - }, - }, - }, - ], - AccountingAttachment: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - is_integration_wide: true, - target_field: { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_organization_wide: true, - }, - remote_field: { - remote_key_name: "example_remote_field_key", - schema: { type: "string" }, - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_remote_field_key"], - }, - }, - }, - ], - BalanceSheet: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - is_integration_wide: true, - target_field: { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_organization_wide: true, - }, - remote_field: { - remote_key_name: "example_remote_field_key", - schema: { type: "string" }, - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_remote_field_key"], - }, - }, - }, - ], - CashFlowStatement: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - is_integration_wide: true, - target_field: { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_organization_wide: true, - }, - remote_field: { - remote_key_name: "example_remote_field_key", - schema: { type: "string" }, - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_remote_field_key"], - }, - }, - }, - ], - CompanyInfo: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - is_integration_wide: true, - target_field: { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_organization_wide: true, - }, - remote_field: { - remote_key_name: "example_remote_field_key", - schema: { type: "string" }, - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_remote_field_key"], - }, - }, - }, - ], - Contact: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - is_integration_wide: true, - target_field: { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_organization_wide: true, - }, - remote_field: { - remote_key_name: "example_remote_field_key", - schema: { type: "string" }, - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_remote_field_key"], - }, - }, - }, - ], - IncomeStatement: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - is_integration_wide: true, - target_field: { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_organization_wide: true, - }, - remote_field: { - remote_key_name: "example_remote_field_key", - schema: { type: "string" }, - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_remote_field_key"], - }, - }, - }, - ], - CreditNote: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - is_integration_wide: true, - target_field: { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_organization_wide: true, - }, - remote_field: { - remote_key_name: "example_remote_field_key", - schema: { type: "string" }, - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_remote_field_key"], - }, - }, - }, - ], - Item: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - is_integration_wide: true, - target_field: { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_organization_wide: true, - }, - remote_field: { - remote_key_name: "example_remote_field_key", - schema: { type: "string" }, - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_remote_field_key"], - }, - }, - }, - ], - PurchaseOrder: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - is_integration_wide: true, - target_field: { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_organization_wide: true, - }, - remote_field: { - remote_key_name: "example_remote_field_key", - schema: { type: "string" }, - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_remote_field_key"], - }, - }, - }, - ], - ExpenseReport: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - is_integration_wide: true, - target_field: { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_organization_wide: true, - }, - remote_field: { - remote_key_name: "example_remote_field_key", - schema: { type: "string" }, - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_remote_field_key"], - }, - }, - }, - ], - TrackingCategory: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - is_integration_wide: true, - target_field: { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_organization_wide: true, - }, - remote_field: { - remote_key_name: "example_remote_field_key", - schema: { type: "string" }, - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_remote_field_key"], - }, - }, - }, - ], - JournalEntry: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - is_integration_wide: true, - target_field: { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_organization_wide: true, - }, - remote_field: { - remote_key_name: "example_remote_field_key", - schema: { type: "string" }, - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_remote_field_key"], - }, - }, - }, - ], - TaxRate: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - is_integration_wide: true, - target_field: { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_organization_wide: true, - }, - remote_field: { - remote_key_name: "example_remote_field_key", - schema: { type: "string" }, - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_remote_field_key"], - }, - }, - }, - ], - Invoice: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - is_integration_wide: true, - target_field: { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_organization_wide: true, - }, - remote_field: { - remote_key_name: "example_remote_field_key", - schema: { type: "string" }, - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_remote_field_key"], - }, - }, - }, - ], - Payment: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - is_integration_wide: true, - target_field: { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_organization_wide: true, - }, - remote_field: { - remote_key_name: "example_remote_field_key", - schema: { type: "string" }, - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_remote_field_key"], - }, - }, - }, - ], - Expense: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - is_integration_wide: true, - target_field: { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_organization_wide: true, - }, - remote_field: { - remote_key_name: "example_remote_field_key", - schema: { type: "string" }, - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_remote_field_key"], - }, - }, - }, - ], - VendorCredit: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - is_integration_wide: true, - target_field: { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_organization_wide: true, - }, - remote_field: { - remote_key_name: "example_remote_field_key", - schema: { type: "string" }, - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_remote_field_key"], - }, - }, - }, - ], - Transaction: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - is_integration_wide: true, - target_field: { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_organization_wide: true, - }, - remote_field: { - remote_key_name: "example_remote_field_key", - schema: { type: "string" }, - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_remote_field_key"], - }, - }, - }, - ], - AccountingPeriod: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - is_integration_wide: true, - target_field: { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_organization_wide: true, - }, - remote_field: { - remote_key_name: "example_remote_field_key", - schema: { type: "string" }, - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_remote_field_key"], - }, - }, - }, - ], - GeneralLedgerTransaction: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - is_integration_wide: true, - target_field: { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_organization_wide: true, - }, - remote_field: { - remote_key_name: "example_remote_field_key", - schema: { type: "string" }, - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_remote_field_key"], - }, - }, - }, - ], - BankFeedAccount: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - is_integration_wide: true, - target_field: { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_organization_wide: true, - }, - remote_field: { - remote_key_name: "example_remote_field_key", - schema: { type: "string" }, - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_remote_field_key"], - }, - }, - }, - ], - Employee: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - is_integration_wide: true, - target_field: { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_organization_wide: true, - }, - remote_field: { - remote_key_name: "example_remote_field_key", - schema: { type: "string" }, - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_remote_field_key"], - }, - }, - }, - ], - PaymentMethod: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - is_integration_wide: true, - target_field: { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_organization_wide: true, - }, - remote_field: { - remote_key_name: "example_remote_field_key", - schema: { type: "string" }, - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_remote_field_key"], - }, - }, - }, - ], - Project: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - is_integration_wide: true, - target_field: { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_organization_wide: true, - }, - remote_field: { - remote_key_name: "example_remote_field_key", - schema: { type: "string" }, - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_remote_field_key"], - }, - }, - }, - ], - PaymentTerm: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - is_integration_wide: true, - target_field: { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_organization_wide: true, - }, - remote_field: { - remote_key_name: "example_remote_field_key", - schema: { type: "string" }, - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_remote_field_key"], - }, - }, - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/field-mappings") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.fieldMapping.fieldMappingsRetrieve({ - excludeRemoteFieldMetadata: true, - }); - expect(response).toEqual({ - account: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - isIntegrationWide: true, - targetField: { - name: "example_target_field_name", - description: "this is a example description of a target field", - isOrganizationWide: true, - }, - remoteField: { - remoteKeyName: "example_remote_field_key", - schema: { - type: "string", - }, - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_remote_field_key"], - }, - }, - }, - ], - accountingAttachment: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - isIntegrationWide: true, - targetField: { - name: "example_target_field_name", - description: "this is a example description of a target field", - isOrganizationWide: true, - }, - remoteField: { - remoteKeyName: "example_remote_field_key", - schema: { - type: "string", - }, - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_remote_field_key"], - }, - }, - }, - ], - balanceSheet: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - isIntegrationWide: true, - targetField: { - name: "example_target_field_name", - description: "this is a example description of a target field", - isOrganizationWide: true, - }, - remoteField: { - remoteKeyName: "example_remote_field_key", - schema: { - type: "string", - }, - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_remote_field_key"], - }, - }, - }, - ], - cashFlowStatement: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - isIntegrationWide: true, - targetField: { - name: "example_target_field_name", - description: "this is a example description of a target field", - isOrganizationWide: true, - }, - remoteField: { - remoteKeyName: "example_remote_field_key", - schema: { - type: "string", - }, - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_remote_field_key"], - }, - }, - }, - ], - companyInfo: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - isIntegrationWide: true, - targetField: { - name: "example_target_field_name", - description: "this is a example description of a target field", - isOrganizationWide: true, - }, - remoteField: { - remoteKeyName: "example_remote_field_key", - schema: { - type: "string", - }, - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_remote_field_key"], - }, - }, - }, - ], - contact: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - isIntegrationWide: true, - targetField: { - name: "example_target_field_name", - description: "this is a example description of a target field", - isOrganizationWide: true, - }, - remoteField: { - remoteKeyName: "example_remote_field_key", - schema: { - type: "string", - }, - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_remote_field_key"], - }, - }, - }, - ], - incomeStatement: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - isIntegrationWide: true, - targetField: { - name: "example_target_field_name", - description: "this is a example description of a target field", - isOrganizationWide: true, - }, - remoteField: { - remoteKeyName: "example_remote_field_key", - schema: { - type: "string", - }, - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_remote_field_key"], - }, - }, - }, - ], - creditNote: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - isIntegrationWide: true, - targetField: { - name: "example_target_field_name", - description: "this is a example description of a target field", - isOrganizationWide: true, - }, - remoteField: { - remoteKeyName: "example_remote_field_key", - schema: { - type: "string", - }, - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_remote_field_key"], - }, - }, - }, - ], - item: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - isIntegrationWide: true, - targetField: { - name: "example_target_field_name", - description: "this is a example description of a target field", - isOrganizationWide: true, - }, - remoteField: { - remoteKeyName: "example_remote_field_key", - schema: { - type: "string", - }, - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_remote_field_key"], - }, - }, - }, - ], - purchaseOrder: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - isIntegrationWide: true, - targetField: { - name: "example_target_field_name", - description: "this is a example description of a target field", - isOrganizationWide: true, - }, - remoteField: { - remoteKeyName: "example_remote_field_key", - schema: { - type: "string", - }, - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_remote_field_key"], - }, - }, - }, - ], - expenseReport: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - isIntegrationWide: true, - targetField: { - name: "example_target_field_name", - description: "this is a example description of a target field", - isOrganizationWide: true, - }, - remoteField: { - remoteKeyName: "example_remote_field_key", - schema: { - type: "string", - }, - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_remote_field_key"], - }, - }, - }, - ], - trackingCategory: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - isIntegrationWide: true, - targetField: { - name: "example_target_field_name", - description: "this is a example description of a target field", - isOrganizationWide: true, - }, - remoteField: { - remoteKeyName: "example_remote_field_key", - schema: { - type: "string", - }, - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_remote_field_key"], - }, - }, - }, - ], - journalEntry: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - isIntegrationWide: true, - targetField: { - name: "example_target_field_name", - description: "this is a example description of a target field", - isOrganizationWide: true, - }, - remoteField: { - remoteKeyName: "example_remote_field_key", - schema: { - type: "string", - }, - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_remote_field_key"], - }, - }, - }, - ], - taxRate: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - isIntegrationWide: true, - targetField: { - name: "example_target_field_name", - description: "this is a example description of a target field", - isOrganizationWide: true, - }, - remoteField: { - remoteKeyName: "example_remote_field_key", - schema: { - type: "string", - }, - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_remote_field_key"], - }, - }, - }, - ], - invoice: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - isIntegrationWide: true, - targetField: { - name: "example_target_field_name", - description: "this is a example description of a target field", - isOrganizationWide: true, - }, - remoteField: { - remoteKeyName: "example_remote_field_key", - schema: { - type: "string", - }, - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_remote_field_key"], - }, - }, - }, - ], - payment: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - isIntegrationWide: true, - targetField: { - name: "example_target_field_name", - description: "this is a example description of a target field", - isOrganizationWide: true, - }, - remoteField: { - remoteKeyName: "example_remote_field_key", - schema: { - type: "string", - }, - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_remote_field_key"], - }, - }, - }, - ], - expense: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - isIntegrationWide: true, - targetField: { - name: "example_target_field_name", - description: "this is a example description of a target field", - isOrganizationWide: true, - }, - remoteField: { - remoteKeyName: "example_remote_field_key", - schema: { - type: "string", - }, - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_remote_field_key"], - }, - }, - }, - ], - vendorCredit: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - isIntegrationWide: true, - targetField: { - name: "example_target_field_name", - description: "this is a example description of a target field", - isOrganizationWide: true, - }, - remoteField: { - remoteKeyName: "example_remote_field_key", - schema: { - type: "string", - }, - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_remote_field_key"], - }, - }, - }, - ], - transaction: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - isIntegrationWide: true, - targetField: { - name: "example_target_field_name", - description: "this is a example description of a target field", - isOrganizationWide: true, - }, - remoteField: { - remoteKeyName: "example_remote_field_key", - schema: { - type: "string", - }, - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_remote_field_key"], - }, - }, - }, - ], - accountingPeriod: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - isIntegrationWide: true, - targetField: { - name: "example_target_field_name", - description: "this is a example description of a target field", - isOrganizationWide: true, - }, - remoteField: { - remoteKeyName: "example_remote_field_key", - schema: { - type: "string", - }, - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_remote_field_key"], - }, - }, - }, - ], - generalLedgerTransaction: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - isIntegrationWide: true, - targetField: { - name: "example_target_field_name", - description: "this is a example description of a target field", - isOrganizationWide: true, - }, - remoteField: { - remoteKeyName: "example_remote_field_key", - schema: { - type: "string", - }, - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_remote_field_key"], - }, - }, - }, - ], - bankFeedAccount: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - isIntegrationWide: true, - targetField: { - name: "example_target_field_name", - description: "this is a example description of a target field", - isOrganizationWide: true, - }, - remoteField: { - remoteKeyName: "example_remote_field_key", - schema: { - type: "string", - }, - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_remote_field_key"], - }, - }, - }, - ], - employee: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - isIntegrationWide: true, - targetField: { - name: "example_target_field_name", - description: "this is a example description of a target field", - isOrganizationWide: true, - }, - remoteField: { - remoteKeyName: "example_remote_field_key", - schema: { - type: "string", - }, - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_remote_field_key"], - }, - }, - }, - ], - paymentMethod: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - isIntegrationWide: true, - targetField: { - name: "example_target_field_name", - description: "this is a example description of a target field", - isOrganizationWide: true, - }, - remoteField: { - remoteKeyName: "example_remote_field_key", - schema: { - type: "string", - }, - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_remote_field_key"], - }, - }, - }, - ], - project: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - isIntegrationWide: true, - targetField: { - name: "example_target_field_name", - description: "this is a example description of a target field", - isOrganizationWide: true, - }, - remoteField: { - remoteKeyName: "example_remote_field_key", - schema: { - type: "string", - }, - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_remote_field_key"], - }, - }, - }, - ], - paymentTerm: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - isIntegrationWide: true, - targetField: { - name: "example_target_field_name", - description: "this is a example description of a target field", - isOrganizationWide: true, - }, - remoteField: { - remoteKeyName: "example_remote_field_key", - schema: { - type: "string", - }, - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_remote_field_key"], - }, - }, - }, - ], - }); - }); - - test("field_mappings_create", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - const rawRequestBody = { - target_field_name: "example_target_field_name", - target_field_description: "this is a example description of the target field", - remote_field_traversal_path: ["example_remote_field"], - remote_method: "GET", - remote_url_path: "/example-url-path", - common_model_name: "ExampleCommonModel", - }; - const rawResponseBody = { - model: { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - is_integration_wide: true, - target_field: { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_organization_wide: true, - }, - remote_field: { - remote_key_name: "example_remote_field_key", - schema: { type: "string" }, - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_remote_field_key"], - }, - }, - }, - warnings: [ - { - source: { pointer: "pointer" }, - title: "Unrecognized Field", - detail: "An unrecognized field, age, was passed in with request data.", - problem_type: "UNRECOGNIZED_FIELD", - }, - ], - errors: [ - { - source: { pointer: "pointer" }, - title: "Missing Required Field", - detail: "custom_fields is a required field on model.", - problem_type: "MISSING_REQUIRED_FIELD", - }, - ], - logs: [ - { - log_id: "99433219-8017-4acd-bb3c-ceb23d663832", - dashboard_view: "https://app.merge.dev/logs/99433219-8017-4acd-bb3c-ceb23d663832", - log_summary: { - url: "www.exampleintegration.com/api/v1/exampleapi", - method: "POST", - status_code: 200, - }, - }, - ], - }; - server - .mockEndpoint() - .post("/accounting/v1/field-mappings") - .jsonBody(rawRequestBody) - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.fieldMapping.fieldMappingsCreate({ - excludeRemoteFieldMetadata: true, - targetFieldName: "example_target_field_name", - targetFieldDescription: "this is a example description of the target field", - remoteFieldTraversalPath: ["example_remote_field"], - remoteMethod: "GET", - remoteUrlPath: "/example-url-path", - commonModelName: "ExampleCommonModel", - }); - expect(response).toEqual({ - model: { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - isIntegrationWide: true, - targetField: { - name: "example_target_field_name", - description: "this is a example description of a target field", - isOrganizationWide: true, - }, - remoteField: { - remoteKeyName: "example_remote_field_key", - schema: { - type: "string", - }, - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_remote_field_key"], - }, - }, - }, - warnings: [ - { - source: { - pointer: "pointer", - }, - title: "Unrecognized Field", - detail: "An unrecognized field, age, was passed in with request data.", - problemType: "UNRECOGNIZED_FIELD", - }, - ], - errors: [ - { - source: { - pointer: "pointer", - }, - title: "Missing Required Field", - detail: "custom_fields is a required field on model.", - problemType: "MISSING_REQUIRED_FIELD", - }, - ], - logs: [ - { - logId: "99433219-8017-4acd-bb3c-ceb23d663832", - dashboardView: "https://app.merge.dev/logs/99433219-8017-4acd-bb3c-ceb23d663832", - logSummary: { - url: "www.exampleintegration.com/api/v1/exampleapi", - method: "POST", - statusCode: 200, - }, - }, - ], - }); - }); - - test("field_mappings_destroy", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - model: { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - is_integration_wide: true, - target_field: { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_organization_wide: true, - }, - remote_field: { - remote_key_name: "example_remote_field_key", - schema: { type: "string" }, - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_remote_field_key"], - }, - }, - }, - warnings: [ - { - source: { pointer: "pointer" }, - title: "Unrecognized Field", - detail: "An unrecognized field, age, was passed in with request data.", - problem_type: "UNRECOGNIZED_FIELD", - }, - ], - errors: [ - { - source: { pointer: "pointer" }, - title: "Missing Required Field", - detail: "custom_fields is a required field on model.", - problem_type: "MISSING_REQUIRED_FIELD", - }, - ], - logs: [ - { - log_id: "99433219-8017-4acd-bb3c-ceb23d663832", - dashboard_view: "https://app.merge.dev/logs/99433219-8017-4acd-bb3c-ceb23d663832", - log_summary: { - url: "www.exampleintegration.com/api/v1/exampleapi", - method: "POST", - status_code: 200, - }, - }, - ], - }; - server - .mockEndpoint() - .delete("/accounting/v1/field-mappings/field_mapping_id") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.fieldMapping.fieldMappingsDestroy("field_mapping_id"); - expect(response).toEqual({ - model: { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - isIntegrationWide: true, - targetField: { - name: "example_target_field_name", - description: "this is a example description of a target field", - isOrganizationWide: true, - }, - remoteField: { - remoteKeyName: "example_remote_field_key", - schema: { - type: "string", - }, - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_remote_field_key"], - }, - }, - }, - warnings: [ - { - source: { - pointer: "pointer", - }, - title: "Unrecognized Field", - detail: "An unrecognized field, age, was passed in with request data.", - problemType: "UNRECOGNIZED_FIELD", - }, - ], - errors: [ - { - source: { - pointer: "pointer", - }, - title: "Missing Required Field", - detail: "custom_fields is a required field on model.", - problemType: "MISSING_REQUIRED_FIELD", - }, - ], - logs: [ - { - logId: "99433219-8017-4acd-bb3c-ceb23d663832", - dashboardView: "https://app.merge.dev/logs/99433219-8017-4acd-bb3c-ceb23d663832", - logSummary: { - url: "www.exampleintegration.com/api/v1/exampleapi", - method: "POST", - statusCode: 200, - }, - }, - ], - }); - }); - - test("field_mappings_partial_update", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - const rawRequestBody = {}; - const rawResponseBody = { - model: { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - is_integration_wide: true, - target_field: { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_organization_wide: true, - }, - remote_field: { - remote_key_name: "example_remote_field_key", - schema: { type: "string" }, - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_remote_field_key"], - }, - }, - }, - warnings: [ - { - source: { pointer: "pointer" }, - title: "Unrecognized Field", - detail: "An unrecognized field, age, was passed in with request data.", - problem_type: "UNRECOGNIZED_FIELD", - }, - ], - errors: [ - { - source: { pointer: "pointer" }, - title: "Missing Required Field", - detail: "custom_fields is a required field on model.", - problem_type: "MISSING_REQUIRED_FIELD", - }, - ], - logs: [ - { - log_id: "99433219-8017-4acd-bb3c-ceb23d663832", - dashboard_view: "https://app.merge.dev/logs/99433219-8017-4acd-bb3c-ceb23d663832", - log_summary: { - url: "www.exampleintegration.com/api/v1/exampleapi", - method: "POST", - status_code: 200, - }, - }, - ], - }; - server - .mockEndpoint() - .patch("/accounting/v1/field-mappings/field_mapping_id") - .jsonBody(rawRequestBody) - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.fieldMapping.fieldMappingsPartialUpdate("field_mapping_id"); - expect(response).toEqual({ - model: { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - isIntegrationWide: true, - targetField: { - name: "example_target_field_name", - description: "this is a example description of a target field", - isOrganizationWide: true, - }, - remoteField: { - remoteKeyName: "example_remote_field_key", - schema: { - type: "string", - }, - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_remote_field_key"], - }, - }, - }, - warnings: [ - { - source: { - pointer: "pointer", - }, - title: "Unrecognized Field", - detail: "An unrecognized field, age, was passed in with request data.", - problemType: "UNRECOGNIZED_FIELD", - }, - ], - errors: [ - { - source: { - pointer: "pointer", - }, - title: "Missing Required Field", - detail: "custom_fields is a required field on model.", - problemType: "MISSING_REQUIRED_FIELD", - }, - ], - logs: [ - { - logId: "99433219-8017-4acd-bb3c-ceb23d663832", - dashboardView: "https://app.merge.dev/logs/99433219-8017-4acd-bb3c-ceb23d663832", - logSummary: { - url: "www.exampleintegration.com/api/v1/exampleapi", - method: "POST", - statusCode: 200, - }, - }, - ], - }); - }); - - test("remote_fields_retrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - Account: [ - { - schema: { type: "string" }, - remote_key_name: "example_remote_key_name", - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_key_name"], - }, - example_values: ["example"], - advanced_metadata: { id: "id" }, - coverage: 1, - }, - ], - AccountingAttachment: [ - { - schema: { type: "string" }, - remote_key_name: "example_remote_key_name", - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_key_name"], - }, - example_values: ["example"], - advanced_metadata: { id: "id" }, - coverage: 1, - }, - ], - BalanceSheet: [ - { - schema: { type: "string" }, - remote_key_name: "example_remote_key_name", - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_key_name"], - }, - example_values: ["example"], - advanced_metadata: { id: "id" }, - coverage: 1, - }, - ], - CashFlowStatement: [ - { - schema: { type: "string" }, - remote_key_name: "example_remote_key_name", - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_key_name"], - }, - example_values: ["example"], - advanced_metadata: { id: "id" }, - coverage: 1, - }, - ], - CompanyInfo: [ - { - schema: { type: "string" }, - remote_key_name: "example_remote_key_name", - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_key_name"], - }, - example_values: ["example"], - advanced_metadata: { id: "id" }, - coverage: 1, - }, - ], - Contact: [ - { - schema: { type: "string" }, - remote_key_name: "example_remote_key_name", - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_key_name"], - }, - example_values: ["example"], - advanced_metadata: { id: "id" }, - coverage: 1, - }, - ], - IncomeStatement: [ - { - schema: { type: "string" }, - remote_key_name: "example_remote_key_name", - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_key_name"], - }, - example_values: ["example"], - advanced_metadata: { id: "id" }, - coverage: 1, - }, - ], - CreditNote: [ - { - schema: { type: "string" }, - remote_key_name: "example_remote_key_name", - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_key_name"], - }, - example_values: ["example"], - advanced_metadata: { id: "id" }, - coverage: 1, - }, - ], - Item: [ - { - schema: { type: "string" }, - remote_key_name: "example_remote_key_name", - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_key_name"], - }, - example_values: ["example"], - advanced_metadata: { id: "id" }, - coverage: 1, - }, - ], - PurchaseOrder: [ - { - schema: { type: "string" }, - remote_key_name: "example_remote_key_name", - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_key_name"], - }, - example_values: ["example"], - advanced_metadata: { id: "id" }, - coverage: 1, - }, - ], - TrackingCategory: [ - { - schema: { type: "string" }, - remote_key_name: "example_remote_key_name", - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_key_name"], - }, - example_values: ["example"], - advanced_metadata: { id: "id" }, - coverage: 1, - }, - ], - JournalEntry: [ - { - schema: { type: "string" }, - remote_key_name: "example_remote_key_name", - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_key_name"], - }, - example_values: ["example"], - advanced_metadata: { id: "id" }, - coverage: 1, - }, - ], - TaxRate: [ - { - schema: { type: "string" }, - remote_key_name: "example_remote_key_name", - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_key_name"], - }, - example_values: ["example"], - advanced_metadata: { id: "id" }, - coverage: 1, - }, - ], - Invoice: [ - { - schema: { type: "string" }, - remote_key_name: "example_remote_key_name", - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_key_name"], - }, - example_values: ["example"], - advanced_metadata: { id: "id" }, - coverage: 1, - }, - ], - Payment: [ - { - schema: { type: "string" }, - remote_key_name: "example_remote_key_name", - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_key_name"], - }, - example_values: ["example"], - advanced_metadata: { id: "id" }, - coverage: 1, - }, - ], - Expense: [ - { - schema: { type: "string" }, - remote_key_name: "example_remote_key_name", - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_key_name"], - }, - example_values: ["example"], - advanced_metadata: { id: "id" }, - coverage: 1, - }, - ], - VendorCredit: [ - { - schema: { type: "string" }, - remote_key_name: "example_remote_key_name", - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_key_name"], - }, - example_values: ["example"], - advanced_metadata: { id: "id" }, - coverage: 1, - }, - ], - Transaction: [ - { - schema: { type: "string" }, - remote_key_name: "example_remote_key_name", - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_key_name"], - }, - example_values: ["example"], - advanced_metadata: { id: "id" }, - coverage: 1, - }, - ], - AccountingPeriod: [ - { - schema: { type: "string" }, - remote_key_name: "example_remote_key_name", - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_key_name"], - }, - example_values: ["example"], - advanced_metadata: { id: "id" }, - coverage: 1, - }, - ], - GeneralLedgerTransaction: [ - { - schema: { type: "string" }, - remote_key_name: "example_remote_key_name", - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_key_name"], - }, - example_values: ["example"], - advanced_metadata: { id: "id" }, - coverage: 1, - }, - ], - BankFeedAccount: [ - { - schema: { type: "string" }, - remote_key_name: "example_remote_key_name", - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_key_name"], - }, - example_values: ["example"], - advanced_metadata: { id: "id" }, - coverage: 1, - }, - ], - Employee: [ - { - schema: { type: "string" }, - remote_key_name: "example_remote_key_name", - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_key_name"], - }, - example_values: ["example"], - advanced_metadata: { id: "id" }, - coverage: 1, - }, - ], - PaymentMethod: [ - { - schema: { type: "string" }, - remote_key_name: "example_remote_key_name", - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_key_name"], - }, - example_values: ["example"], - advanced_metadata: { id: "id" }, - coverage: 1, - }, - ], - Project: [ - { - schema: { type: "string" }, - remote_key_name: "example_remote_key_name", - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_key_name"], - }, - example_values: ["example"], - advanced_metadata: { id: "id" }, - coverage: 1, - }, - ], - PaymentTerm: [ - { - schema: { type: "string" }, - remote_key_name: "example_remote_key_name", - remote_endpoint_info: { - method: "GET", - url_path: "/example-url-path", - field_traversal_path: ["example_key_name"], - }, - example_values: ["example"], - advanced_metadata: { id: "id" }, - coverage: 1, - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/remote-fields") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.fieldMapping.remoteFieldsRetrieve({ - commonModels: "common_models", - includeExampleValues: "include_example_values", - }); - expect(response).toEqual({ - account: [ - { - schema: { - type: "string", - }, - remoteKeyName: "example_remote_key_name", - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_key_name"], - }, - exampleValues: ["example"], - advancedMetadata: { - id: "id", - }, - coverage: 1, - }, - ], - accountingAttachment: [ - { - schema: { - type: "string", - }, - remoteKeyName: "example_remote_key_name", - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_key_name"], - }, - exampleValues: ["example"], - advancedMetadata: { - id: "id", - }, - coverage: 1, - }, - ], - balanceSheet: [ - { - schema: { - type: "string", - }, - remoteKeyName: "example_remote_key_name", - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_key_name"], - }, - exampleValues: ["example"], - advancedMetadata: { - id: "id", - }, - coverage: 1, - }, - ], - cashFlowStatement: [ - { - schema: { - type: "string", - }, - remoteKeyName: "example_remote_key_name", - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_key_name"], - }, - exampleValues: ["example"], - advancedMetadata: { - id: "id", - }, - coverage: 1, - }, - ], - companyInfo: [ - { - schema: { - type: "string", - }, - remoteKeyName: "example_remote_key_name", - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_key_name"], - }, - exampleValues: ["example"], - advancedMetadata: { - id: "id", - }, - coverage: 1, - }, - ], - contact: [ - { - schema: { - type: "string", - }, - remoteKeyName: "example_remote_key_name", - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_key_name"], - }, - exampleValues: ["example"], - advancedMetadata: { - id: "id", - }, - coverage: 1, - }, - ], - incomeStatement: [ - { - schema: { - type: "string", - }, - remoteKeyName: "example_remote_key_name", - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_key_name"], - }, - exampleValues: ["example"], - advancedMetadata: { - id: "id", - }, - coverage: 1, - }, - ], - creditNote: [ - { - schema: { - type: "string", - }, - remoteKeyName: "example_remote_key_name", - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_key_name"], - }, - exampleValues: ["example"], - advancedMetadata: { - id: "id", - }, - coverage: 1, - }, - ], - item: [ - { - schema: { - type: "string", - }, - remoteKeyName: "example_remote_key_name", - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_key_name"], - }, - exampleValues: ["example"], - advancedMetadata: { - id: "id", - }, - coverage: 1, - }, - ], - purchaseOrder: [ - { - schema: { - type: "string", - }, - remoteKeyName: "example_remote_key_name", - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_key_name"], - }, - exampleValues: ["example"], - advancedMetadata: { - id: "id", - }, - coverage: 1, - }, - ], - trackingCategory: [ - { - schema: { - type: "string", - }, - remoteKeyName: "example_remote_key_name", - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_key_name"], - }, - exampleValues: ["example"], - advancedMetadata: { - id: "id", - }, - coverage: 1, - }, - ], - journalEntry: [ - { - schema: { - type: "string", - }, - remoteKeyName: "example_remote_key_name", - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_key_name"], - }, - exampleValues: ["example"], - advancedMetadata: { - id: "id", - }, - coverage: 1, - }, - ], - taxRate: [ - { - schema: { - type: "string", - }, - remoteKeyName: "example_remote_key_name", - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_key_name"], - }, - exampleValues: ["example"], - advancedMetadata: { - id: "id", - }, - coverage: 1, - }, - ], - invoice: [ - { - schema: { - type: "string", - }, - remoteKeyName: "example_remote_key_name", - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_key_name"], - }, - exampleValues: ["example"], - advancedMetadata: { - id: "id", - }, - coverage: 1, - }, - ], - payment: [ - { - schema: { - type: "string", - }, - remoteKeyName: "example_remote_key_name", - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_key_name"], - }, - exampleValues: ["example"], - advancedMetadata: { - id: "id", - }, - coverage: 1, - }, - ], - expense: [ - { - schema: { - type: "string", - }, - remoteKeyName: "example_remote_key_name", - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_key_name"], - }, - exampleValues: ["example"], - advancedMetadata: { - id: "id", - }, - coverage: 1, - }, - ], - vendorCredit: [ - { - schema: { - type: "string", - }, - remoteKeyName: "example_remote_key_name", - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_key_name"], - }, - exampleValues: ["example"], - advancedMetadata: { - id: "id", - }, - coverage: 1, - }, - ], - transaction: [ - { - schema: { - type: "string", - }, - remoteKeyName: "example_remote_key_name", - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_key_name"], - }, - exampleValues: ["example"], - advancedMetadata: { - id: "id", - }, - coverage: 1, - }, - ], - accountingPeriod: [ - { - schema: { - type: "string", - }, - remoteKeyName: "example_remote_key_name", - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_key_name"], - }, - exampleValues: ["example"], - advancedMetadata: { - id: "id", - }, - coverage: 1, - }, - ], - generalLedgerTransaction: [ - { - schema: { - type: "string", - }, - remoteKeyName: "example_remote_key_name", - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_key_name"], - }, - exampleValues: ["example"], - advancedMetadata: { - id: "id", - }, - coverage: 1, - }, - ], - bankFeedAccount: [ - { - schema: { - type: "string", - }, - remoteKeyName: "example_remote_key_name", - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_key_name"], - }, - exampleValues: ["example"], - advancedMetadata: { - id: "id", - }, - coverage: 1, - }, - ], - employee: [ - { - schema: { - type: "string", - }, - remoteKeyName: "example_remote_key_name", - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_key_name"], - }, - exampleValues: ["example"], - advancedMetadata: { - id: "id", - }, - coverage: 1, - }, - ], - paymentMethod: [ - { - schema: { - type: "string", - }, - remoteKeyName: "example_remote_key_name", - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_key_name"], - }, - exampleValues: ["example"], - advancedMetadata: { - id: "id", - }, - coverage: 1, - }, - ], - project: [ - { - schema: { - type: "string", - }, - remoteKeyName: "example_remote_key_name", - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_key_name"], - }, - exampleValues: ["example"], - advancedMetadata: { - id: "id", - }, - coverage: 1, - }, - ], - paymentTerm: [ - { - schema: { - type: "string", - }, - remoteKeyName: "example_remote_key_name", - remoteEndpointInfo: { - method: "GET", - urlPath: "/example-url-path", - fieldTraversalPath: ["example_key_name"], - }, - exampleValues: ["example"], - advancedMetadata: { - id: "id", - }, - coverage: 1, - }, - ], - }); - }); - - test("target_fields_retrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - Account: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_mapped: "is_mapped", - }, - ], - AccountingAttachment: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_mapped: "is_mapped", - }, - ], - BalanceSheet: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_mapped: "is_mapped", - }, - ], - CashFlowStatement: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_mapped: "is_mapped", - }, - ], - CompanyInfo: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_mapped: "is_mapped", - }, - ], - Contact: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_mapped: "is_mapped", - }, - ], - IncomeStatement: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_mapped: "is_mapped", - }, - ], - CreditNote: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_mapped: "is_mapped", - }, - ], - Item: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_mapped: "is_mapped", - }, - ], - PurchaseOrder: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_mapped: "is_mapped", - }, - ], - ExpenseReport: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_mapped: "is_mapped", - }, - ], - TrackingCategory: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_mapped: "is_mapped", - }, - ], - JournalEntry: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_mapped: "is_mapped", - }, - ], - TaxRate: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_mapped: "is_mapped", - }, - ], - Invoice: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_mapped: "is_mapped", - }, - ], - Payment: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_mapped: "is_mapped", - }, - ], - Expense: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_mapped: "is_mapped", - }, - ], - VendorCredit: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_mapped: "is_mapped", - }, - ], - Transaction: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_mapped: "is_mapped", - }, - ], - AccountingPeriod: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_mapped: "is_mapped", - }, - ], - GeneralLedgerTransaction: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_mapped: "is_mapped", - }, - ], - BankFeedAccount: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_mapped: "is_mapped", - }, - ], - Employee: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_mapped: "is_mapped", - }, - ], - PaymentMethod: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_mapped: "is_mapped", - }, - ], - Project: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_mapped: "is_mapped", - }, - ], - PaymentTerm: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - is_mapped: "is_mapped", - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/target-fields") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.fieldMapping.targetFieldsRetrieve(); - expect(response).toEqual({ - account: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - isMapped: "is_mapped", - }, - ], - accountingAttachment: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - isMapped: "is_mapped", - }, - ], - balanceSheet: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - isMapped: "is_mapped", - }, - ], - cashFlowStatement: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - isMapped: "is_mapped", - }, - ], - companyInfo: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - isMapped: "is_mapped", - }, - ], - contact: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - isMapped: "is_mapped", - }, - ], - incomeStatement: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - isMapped: "is_mapped", - }, - ], - creditNote: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - isMapped: "is_mapped", - }, - ], - item: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - isMapped: "is_mapped", - }, - ], - purchaseOrder: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - isMapped: "is_mapped", - }, - ], - expenseReport: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - isMapped: "is_mapped", - }, - ], - trackingCategory: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - isMapped: "is_mapped", - }, - ], - journalEntry: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - isMapped: "is_mapped", - }, - ], - taxRate: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - isMapped: "is_mapped", - }, - ], - invoice: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - isMapped: "is_mapped", - }, - ], - payment: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - isMapped: "is_mapped", - }, - ], - expense: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - isMapped: "is_mapped", - }, - ], - vendorCredit: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - isMapped: "is_mapped", - }, - ], - transaction: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - isMapped: "is_mapped", - }, - ], - accountingPeriod: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - isMapped: "is_mapped", - }, - ], - generalLedgerTransaction: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - isMapped: "is_mapped", - }, - ], - bankFeedAccount: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - isMapped: "is_mapped", - }, - ], - employee: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - isMapped: "is_mapped", - }, - ], - paymentMethod: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - isMapped: "is_mapped", - }, - ], - project: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - isMapped: "is_mapped", - }, - ], - paymentTerm: [ - { - name: "example_target_field_name", - description: "this is a example description of a target field", - isMapped: "is_mapped", - }, - ], - }); - }); -}); diff --git a/tests/wire/accounting/forceResync.test.ts b/tests/wire/accounting/forceResync.test.ts deleted file mode 100644 index 2140a81e2..000000000 --- a/tests/wire/accounting/forceResync.test.ts +++ /dev/null @@ -1,52 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import { MergeClient } from "../../../src/Client"; -import { mockServerPool } from "../../mock-server/MockServerPool"; - -describe("ForceResyncClient", () => { - test("sync_status_resync_create", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = [ - { - model_name: "Invoice", - model_id: "accounting.Invoices", - last_sync_start: "2021-03-30T19:44:18Z", - next_sync_start: "2021-03-30T20:44:18Z", - last_sync_result: "SYNCING", - last_sync_finished: "2021-03-30T19:55:18Z", - status: "SYNCING", - is_initial_sync: true, - selective_sync_configurations_usage: "IN_NEXT_SYNC", - }, - ]; - server - .mockEndpoint() - .post("/accounting/v1/sync-status/resync") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.forceResync.syncStatusResyncCreate(); - expect(response).toEqual([ - { - modelName: "Invoice", - modelId: "accounting.Invoices", - lastSyncStart: new Date("2021-03-30T19:44:18.000Z"), - nextSyncStart: new Date("2021-03-30T20:44:18.000Z"), - lastSyncResult: "SYNCING", - lastSyncFinished: new Date("2021-03-30T19:55:18.000Z"), - status: "SYNCING", - isInitialSync: true, - selectiveSyncConfigurationsUsage: "IN_NEXT_SYNC", - }, - ]); - }); -}); diff --git a/tests/wire/accounting/generalLedgerTransactions.test.ts b/tests/wire/accounting/generalLedgerTransactions.test.ts deleted file mode 100644 index e8316aac2..000000000 --- a/tests/wire/accounting/generalLedgerTransactions.test.ts +++ /dev/null @@ -1,323 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import { MergeClient } from "../../../src/Client"; -import { mockServerPool } from "../../mock-server/MockServerPool"; - -describe("GeneralLedgerTransactionsClient", () => { - test("list", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "b26fd49a-cbae-470a-a8f8-bcbc119e0390", - remote_id: "987300", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - underlying_transaction_remote_id: "1234", - underlying_transaction_type: "INVOICE", - accounting_period: "accounting_period", - company: "company", - remote_updated_at: "2020-03-31T00:00:00Z", - remote_created_at: "2020-03-31T00:00:00Z", - tracking_categories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - posting_date: "2020-03-31T00:00:00Z", - general_ledger_transaction_lines: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "123", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - account: "a47e11b6-c73b-4a0c-be31-130fc48177fa", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - contact: "d6e687d6-0c36-48a1-8114-35324b5cb38f", - base_currency: "USD", - transaction_currency: "USD", - exchange_rate: "exchange_rate", - description: "Invoice created", - tracking_categories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - debit_amount: "debit_amount", - credit_amount: "credit_amount", - item: "a47e11b6-c73b-4a0c-be31-130fc48177fa", - foreign_debit_amount: "foreign_debit_amount", - foreign_credit_amount: "foreign_credit_amount", - remote_was_deleted: false, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - }, - ], - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/platform-endpoint", data: ["Varies by platform"] }], - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/general-ledger-transactions") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.generalLedgerTransactions.list({ - companyId: "company_id", - createdAfter: new Date("2024-01-15T09:30:00.000Z"), - createdBefore: new Date("2024-01-15T09:30:00.000Z"), - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - expand: "accounting_period", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - pageSize: 1, - postedDateAfter: new Date("2024-01-15T09:30:00.000Z"), - postedDateBefore: new Date("2024-01-15T09:30:00.000Z"), - remoteId: "remote_id", - }); - expect(response).toEqual({ - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "b26fd49a-cbae-470a-a8f8-bcbc119e0390", - remoteId: "987300", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - underlyingTransactionRemoteId: "1234", - underlyingTransactionType: "INVOICE", - accountingPeriod: "accounting_period", - company: "company", - remoteUpdatedAt: new Date("2020-03-31T00:00:00.000Z"), - remoteCreatedAt: new Date("2020-03-31T00:00:00.000Z"), - trackingCategories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - postingDate: new Date("2020-03-31T00:00:00.000Z"), - generalLedgerTransactionLines: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "123", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - account: "a47e11b6-c73b-4a0c-be31-130fc48177fa", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - contact: "d6e687d6-0c36-48a1-8114-35324b5cb38f", - baseCurrency: "USD", - transactionCurrency: "USD", - exchangeRate: "exchange_rate", - description: "Invoice created", - trackingCategories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - debitAmount: "debit_amount", - creditAmount: "credit_amount", - item: "a47e11b6-c73b-4a0c-be31-130fc48177fa", - foreignDebitAmount: "foreign_debit_amount", - foreignCreditAmount: "foreign_credit_amount", - remoteWasDeleted: false, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - }, - ], - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/platform-endpoint", - data: ["Varies by platform"], - }, - ], - }, - ], - }); - }); - - test("retrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - id: "b26fd49a-cbae-470a-a8f8-bcbc119e0390", - remote_id: "987300", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - underlying_transaction_remote_id: "1234", - underlying_transaction_type: "INVOICE", - accounting_period: "accounting_period", - company: "company", - remote_updated_at: "2020-03-31T00:00:00Z", - remote_created_at: "2020-03-31T00:00:00Z", - tracking_categories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - posting_date: "2020-03-31T00:00:00Z", - general_ledger_transaction_lines: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "123", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - account: "a47e11b6-c73b-4a0c-be31-130fc48177fa", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - employee: "employee", - contact: "d6e687d6-0c36-48a1-8114-35324b5cb38f", - project: "project", - base_currency: "USD", - transaction_currency: "USD", - exchange_rate: "exchange_rate", - description: "Invoice created", - tracking_categories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - debit_amount: "debit_amount", - credit_amount: "credit_amount", - item: "a47e11b6-c73b-4a0c-be31-130fc48177fa", - foreign_debit_amount: "foreign_debit_amount", - foreign_credit_amount: "foreign_credit_amount", - remote_was_deleted: false, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - }, - ], - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/platform-endpoint", data: ["Varies by platform"] }], - }; - server - .mockEndpoint() - .get("/accounting/v1/general-ledger-transactions/id") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.generalLedgerTransactions.retrieve("id", { - expand: "accounting_period", - includeRemoteData: true, - includeShellData: true, - }); - expect(response).toEqual({ - id: "b26fd49a-cbae-470a-a8f8-bcbc119e0390", - remoteId: "987300", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - underlyingTransactionRemoteId: "1234", - underlyingTransactionType: "INVOICE", - accountingPeriod: "accounting_period", - company: "company", - remoteUpdatedAt: new Date("2020-03-31T00:00:00.000Z"), - remoteCreatedAt: new Date("2020-03-31T00:00:00.000Z"), - trackingCategories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - postingDate: new Date("2020-03-31T00:00:00.000Z"), - generalLedgerTransactionLines: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "123", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - account: "a47e11b6-c73b-4a0c-be31-130fc48177fa", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - employee: "employee", - contact: "d6e687d6-0c36-48a1-8114-35324b5cb38f", - project: "project", - baseCurrency: "USD", - transactionCurrency: "USD", - exchangeRate: "exchange_rate", - description: "Invoice created", - trackingCategories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - debitAmount: "debit_amount", - creditAmount: "credit_amount", - item: "a47e11b6-c73b-4a0c-be31-130fc48177fa", - foreignDebitAmount: "foreign_debit_amount", - foreignCreditAmount: "foreign_credit_amount", - remoteWasDeleted: false, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - }, - ], - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/platform-endpoint", - data: ["Varies by platform"], - }, - ], - }); - }); -}); diff --git a/tests/wire/accounting/generateKey.test.ts b/tests/wire/accounting/generateKey.test.ts deleted file mode 100644 index 530028d42..000000000 --- a/tests/wire/accounting/generateKey.test.ts +++ /dev/null @@ -1,37 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import { MergeClient } from "../../../src/Client"; -import { mockServerPool } from "../../mock-server/MockServerPool"; - -describe("GenerateKeyClient", () => { - test("create", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - const rawRequestBody = { name: "Remote Deployment Key 1" }; - const rawResponseBody = { - name: "Remote Deployment Key 1", - key: "hXY57W0g0WkdRHjCaPvwijK63fwfN-o_Wh7f30SLTq_uPCOLo-WFcA", - }; - server - .mockEndpoint() - .post("/accounting/v1/generate-key") - .jsonBody(rawRequestBody) - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.generateKey.create({ - name: "Remote Deployment Key 1", - }); - expect(response).toEqual({ - name: "Remote Deployment Key 1", - key: "hXY57W0g0WkdRHjCaPvwijK63fwfN-o_Wh7f30SLTq_uPCOLo-WFcA", - }); - }); -}); diff --git a/tests/wire/accounting/incomeStatements.test.ts b/tests/wire/accounting/incomeStatements.test.ts deleted file mode 100644 index d4a825201..000000000 --- a/tests/wire/accounting/incomeStatements.test.ts +++ /dev/null @@ -1,453 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import { MergeClient } from "../../../src/Client"; -import { mockServerPool } from "../../mock-server/MockServerPool"; - -describe("IncomeStatementsClient", () => { - test("list", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "0958cbc6-6040-430a-848e-aafacbadf4ae", - remote_id: "1342348", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - name: "IncomeStatement", - currency: "XUA", - company: "company", - start_period: "2024-01-15T09:30:00Z", - end_period: "2024-01-15T09:30:00Z", - income: [ - { - remote_id: "10299", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - name: "Total Income", - value: 325, - sub_items: [ - { remote_id: "10200", name: "Landscaping Services", value: 425 }, - { remote_id: "10201", name: "Pest Control Services", value: -100 }, - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - }, - ], - cost_of_sales: [ - { - remote_id: "10299", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - name: "Total COGS", - value: 25, - sub_items: [{ remote_id: "10200", name: "Supplies", value: 10 }], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - }, - ], - gross_profit: 300, - operating_expenses: [ - { - remote_id: "10299", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - name: "Total Operating Expenses", - value: 100, - sub_items: [ - { remote_id: "10300", name: "Revenue - San Francisco", value: 500 }, - { remote_id: "10301", name: "Revenue - New York", value: 500 }, - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - }, - ], - net_operating_income: 200, - non_operating_expenses: [ - { - remote_id: "10299", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - name: "Total Non-Operating Expenses", - value: 100, - sub_items: [ - { remote_id: "10300", name: "Revenue - San Francisco", value: 500 }, - { remote_id: "10301", name: "Revenue - New York", value: 500 }, - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - }, - ], - net_income: 100, - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/income-statements") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.incomeStatements.list({ - companyId: "company_id", - createdAfter: new Date("2024-01-15T09:30:00.000Z"), - createdBefore: new Date("2024-01-15T09:30:00.000Z"), - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - expand: "company", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - pageSize: 1, - remoteId: "remote_id", - }); - expect(response).toEqual({ - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "0958cbc6-6040-430a-848e-aafacbadf4ae", - remoteId: "1342348", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - name: "IncomeStatement", - currency: "XUA", - company: "company", - startPeriod: new Date("2024-01-15T09:30:00.000Z"), - endPeriod: new Date("2024-01-15T09:30:00.000Z"), - income: [ - { - remoteId: "10299", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - name: "Total Income", - value: 325, - subItems: [ - { - remote_id: "10200", - name: "Landscaping Services", - value: 425, - }, - { - remote_id: "10201", - name: "Pest Control Services", - value: -100, - }, - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - }, - ], - costOfSales: [ - { - remoteId: "10299", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - name: "Total COGS", - value: 25, - subItems: [ - { - remote_id: "10200", - name: "Supplies", - value: 10, - }, - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - }, - ], - grossProfit: 300, - operatingExpenses: [ - { - remoteId: "10299", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - name: "Total Operating Expenses", - value: 100, - subItems: [ - { - remote_id: "10300", - name: "Revenue - San Francisco", - value: 500, - }, - { - remote_id: "10301", - name: "Revenue - New York", - value: 500, - }, - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - }, - ], - netOperatingIncome: 200, - nonOperatingExpenses: [ - { - remoteId: "10299", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - name: "Total Non-Operating Expenses", - value: 100, - subItems: [ - { - remote_id: "10300", - name: "Revenue - San Francisco", - value: 500, - }, - { - remote_id: "10301", - name: "Revenue - New York", - value: 500, - }, - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - }, - ], - netIncome: 100, - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - }, - ], - }); - }); - - test("retrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - id: "0958cbc6-6040-430a-848e-aafacbadf4ae", - remote_id: "1342348", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - name: "IncomeStatement", - currency: "XUA", - company: "company", - start_period: "2024-01-15T09:30:00Z", - end_period: "2024-01-15T09:30:00Z", - income: [ - { - remote_id: "10299", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - name: "Total Income", - value: 325, - sub_items: [ - { remote_id: "10200", name: "Landscaping Services", value: 425 }, - { remote_id: "10201", name: "Pest Control Services", value: -100 }, - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - remote_was_deleted: true, - }, - ], - cost_of_sales: [ - { - remote_id: "10299", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - name: "Total COGS", - value: 25, - sub_items: [{ remote_id: "10200", name: "Supplies", value: 10 }], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - remote_was_deleted: true, - }, - ], - gross_profit: 300, - operating_expenses: [ - { - remote_id: "10299", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - name: "Total Operating Expenses", - value: 100, - sub_items: [ - { remote_id: "10300", name: "Revenue - San Francisco", value: 500 }, - { remote_id: "10301", name: "Revenue - New York", value: 500 }, - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - remote_was_deleted: true, - }, - ], - net_operating_income: 200, - non_operating_expenses: [ - { - remote_id: "10299", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - name: "Total Non-Operating Expenses", - value: 100, - sub_items: [ - { remote_id: "10300", name: "Revenue - San Francisco", value: 500 }, - { remote_id: "10301", name: "Revenue - New York", value: 500 }, - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - remote_was_deleted: true, - }, - ], - net_income: 100, - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - }; - server - .mockEndpoint() - .get("/accounting/v1/income-statements/id") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.incomeStatements.retrieve("id", { - expand: "company", - includeRemoteData: true, - includeShellData: true, - }); - expect(response).toEqual({ - id: "0958cbc6-6040-430a-848e-aafacbadf4ae", - remoteId: "1342348", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - name: "IncomeStatement", - currency: "XUA", - company: "company", - startPeriod: new Date("2024-01-15T09:30:00.000Z"), - endPeriod: new Date("2024-01-15T09:30:00.000Z"), - income: [ - { - remoteId: "10299", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - name: "Total Income", - value: 325, - subItems: [ - { - remote_id: "10200", - name: "Landscaping Services", - value: 425, - }, - { - remote_id: "10201", - name: "Pest Control Services", - value: -100, - }, - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - remoteWasDeleted: true, - }, - ], - costOfSales: [ - { - remoteId: "10299", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - name: "Total COGS", - value: 25, - subItems: [ - { - remote_id: "10200", - name: "Supplies", - value: 10, - }, - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - remoteWasDeleted: true, - }, - ], - grossProfit: 300, - operatingExpenses: [ - { - remoteId: "10299", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - name: "Total Operating Expenses", - value: 100, - subItems: [ - { - remote_id: "10300", - name: "Revenue - San Francisco", - value: 500, - }, - { - remote_id: "10301", - name: "Revenue - New York", - value: 500, - }, - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - remoteWasDeleted: true, - }, - ], - netOperatingIncome: 200, - nonOperatingExpenses: [ - { - remoteId: "10299", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - name: "Total Non-Operating Expenses", - value: 100, - subItems: [ - { - remote_id: "10300", - name: "Revenue - San Francisco", - value: 500, - }, - { - remote_id: "10301", - name: "Revenue - New York", - value: 500, - }, - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - remoteWasDeleted: true, - }, - ], - netIncome: 100, - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - }); - }); -}); diff --git a/tests/wire/accounting/invoices.test.ts b/tests/wire/accounting/invoices.test.ts deleted file mode 100644 index 929602226..000000000 --- a/tests/wire/accounting/invoices.test.ts +++ /dev/null @@ -1,2084 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import { MergeClient } from "../../../src/Client"; -import { mockServerPool } from "../../mock-server/MockServerPool"; - -describe("InvoicesClient", () => { - test("list", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "9871b4a9-f5d2-4f3b-a66b-dfedbed42c46", - remote_id: "990110", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - type: "ACCOUNTS_RECEIVABLE", - contact: "contact", - number: "AIQ12546", - issue_date: "2020-03-31T00:00:00Z", - due_date: "2020-04-15T00:00:00Z", - paid_on_date: "2020-04-01T00:00:00Z", - memo: "Weekly Payment", - company: "company", - employee: "employee", - currency: "XUA", - exchange_rate: "2.9", - payment_term: "payment_term", - total_discount: 1.1, - sub_total: 100, - status: "PAID", - total_tax_amount: 5, - total_amount: 105, - balance: 105, - remote_updated_at: "2020-04-01T00:00:00Z", - tracking_categories: [ - "7dc5ca17-d311-44cd-9ce0-333080367a18", - "6aa0700c-48e1-4c4a-8162-02e6a582df05", - "8c933d61-8f5b-4360-ac0c-c9dc87bee763", - ], - accounting_period: "accounting_period", - purchase_orders: [ - "e7378d8f-3992-4c2a-8417-ebdc4f2bfeb7", - "dd70ca2f-b120-46fa-889a-9604037f45fd", - "889b281d-739c-4759-95b8-0aedb3947131", - ], - payments: ["b26fd49a-cbae-470a-a8f8-bcbc119e0390"], - applied_payments: ["9017594e-dc33-4113-a5d2-b0f928e34fdd"], - line_items: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "8765432", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - description: "Pickleball lessons", - unit_price: 50, - quantity: 1, - total_amount: 50, - employee: "7442f0d5-722d-45bd-b807-6e38489d37fe", - project: "22e65a5d-2df5-4e6e-884a-e538d0339000", - contact: "908934-49j9-093f-0989-908923908", - currency: "USD", - exchange_rate: "2.9", - item: "5b3c1341-a20f-4e51-b72c-f3830a16c97b", - account: "cd0f32d4-a493-11ec-b909-0242ac120002", - tax_rate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - tracking_categories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - }, - ], - applied_credit_notes: [ - { - remote_id: "088899", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - credit_note: "5b3c1341-a20f-4e51-b72c-f3830a16c97b", - applied_date: "2020-03-31T00:00:00Z", - applied_amount: "2.9", - }, - ], - applied_vendor_credits: [ - { - remote_id: "088899", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - vendor_credit: "5b3c1341-a20f-4e51-b72c-f3830a16c97b", - applied_date: "2020-03-31T00:00:00Z", - applied_amount: "2.9", - }, - ], - inclusive_of_tax: true, - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - remote_fields: [{ remote_field_class: "remote_field_class", value: "string" }], - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/invoices") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.invoices.list({ - companyId: "company_id", - contactId: "contact_id", - createdAfter: new Date("2024-01-15T09:30:00.000Z"), - createdBefore: new Date("2024-01-15T09:30:00.000Z"), - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - expand: "accounting_period", - includeDeletedData: true, - includeRemoteData: true, - includeRemoteFields: true, - includeShellData: true, - issueDateAfter: new Date("2024-01-15T09:30:00.000Z"), - issueDateBefore: new Date("2024-01-15T09:30:00.000Z"), - modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - number: "number", - pageSize: 1, - remoteFields: "type", - remoteId: "remote_id", - showEnumOrigins: "type", - status: "DRAFT", - type: "ACCOUNTS_PAYABLE", - }); - expect(response).toEqual({ - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "9871b4a9-f5d2-4f3b-a66b-dfedbed42c46", - remoteId: "990110", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - type: "ACCOUNTS_RECEIVABLE", - contact: "contact", - number: "AIQ12546", - issueDate: new Date("2020-03-31T00:00:00.000Z"), - dueDate: new Date("2020-04-15T00:00:00.000Z"), - paidOnDate: new Date("2020-04-01T00:00:00.000Z"), - memo: "Weekly Payment", - company: "company", - employee: "employee", - currency: "XUA", - exchangeRate: "2.9", - paymentTerm: "payment_term", - totalDiscount: 1.1, - subTotal: 100, - status: "PAID", - totalTaxAmount: 5, - totalAmount: 105, - balance: 105, - remoteUpdatedAt: new Date("2020-04-01T00:00:00.000Z"), - trackingCategories: [ - "7dc5ca17-d311-44cd-9ce0-333080367a18", - "6aa0700c-48e1-4c4a-8162-02e6a582df05", - "8c933d61-8f5b-4360-ac0c-c9dc87bee763", - ], - accountingPeriod: "accounting_period", - purchaseOrders: [ - "e7378d8f-3992-4c2a-8417-ebdc4f2bfeb7", - "dd70ca2f-b120-46fa-889a-9604037f45fd", - "889b281d-739c-4759-95b8-0aedb3947131", - ], - payments: ["b26fd49a-cbae-470a-a8f8-bcbc119e0390"], - appliedPayments: ["9017594e-dc33-4113-a5d2-b0f928e34fdd"], - lineItems: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "8765432", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - description: "Pickleball lessons", - unitPrice: 50, - quantity: 1, - totalAmount: 50, - employee: "7442f0d5-722d-45bd-b807-6e38489d37fe", - project: "22e65a5d-2df5-4e6e-884a-e538d0339000", - contact: "908934-49j9-093f-0989-908923908", - currency: "USD", - exchangeRate: "2.9", - item: "5b3c1341-a20f-4e51-b72c-f3830a16c97b", - account: "cd0f32d4-a493-11ec-b909-0242ac120002", - taxRate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - trackingCategories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - }, - ], - appliedCreditNotes: [ - { - remoteId: "088899", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - creditNote: "5b3c1341-a20f-4e51-b72c-f3830a16c97b", - appliedDate: new Date("2020-03-31T00:00:00.000Z"), - appliedAmount: "2.9", - }, - ], - appliedVendorCredits: [ - { - remoteId: "088899", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - vendorCredit: "5b3c1341-a20f-4e51-b72c-f3830a16c97b", - appliedDate: new Date("2020-03-31T00:00:00.000Z"), - appliedAmount: "2.9", - }, - ], - inclusiveOfTax: true, - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - remoteFields: [ - { - remoteFieldClass: "remote_field_class", - value: "string", - }, - ], - }, - ], - }); - }); - - test("create", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - const rawRequestBody = { model: {} }; - const rawResponseBody = { - model: { - id: "9871b4a9-f5d2-4f3b-a66b-dfedbed42c46", - remote_id: "990110", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - type: "ACCOUNTS_RECEIVABLE", - contact: "contact", - number: "AIQ12546", - issue_date: "2020-03-31T00:00:00Z", - due_date: "2020-04-15T00:00:00Z", - paid_on_date: "2020-04-01T00:00:00Z", - memo: "Weekly Payment", - company: "company", - employee: "employee", - currency: "XUA", - exchange_rate: "2.9", - payment_term: "payment_term", - total_discount: 1.1, - sub_total: 100, - status: "PAID", - total_tax_amount: 5, - total_amount: 105, - balance: 105, - remote_updated_at: "2020-04-01T00:00:00Z", - tracking_categories: [ - "7dc5ca17-d311-44cd-9ce0-333080367a18", - "6aa0700c-48e1-4c4a-8162-02e6a582df05", - "8c933d61-8f5b-4360-ac0c-c9dc87bee763", - ], - accounting_period: "accounting_period", - purchase_orders: [ - "e7378d8f-3992-4c2a-8417-ebdc4f2bfeb7", - "dd70ca2f-b120-46fa-889a-9604037f45fd", - "889b281d-739c-4759-95b8-0aedb3947131", - ], - payments: ["b26fd49a-cbae-470a-a8f8-bcbc119e0390"], - applied_payments: ["9017594e-dc33-4113-a5d2-b0f928e34fdd"], - line_items: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "8765432", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - description: "Pickleball lessons", - unit_price: 50, - quantity: 1, - total_amount: 50, - employee: "7442f0d5-722d-45bd-b807-6e38489d37fe", - project: "22e65a5d-2df5-4e6e-884a-e538d0339000", - contact: "908934-49j9-093f-0989-908923908", - currency: "USD", - exchange_rate: "2.9", - item: "5b3c1341-a20f-4e51-b72c-f3830a16c97b", - account: "cd0f32d4-a493-11ec-b909-0242ac120002", - tax_rate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - tracking_categories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - }, - ], - applied_credit_notes: [ - { - remote_id: "088899", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - credit_note: "5b3c1341-a20f-4e51-b72c-f3830a16c97b", - applied_date: "2020-03-31T00:00:00Z", - applied_amount: "2.9", - }, - ], - applied_vendor_credits: [ - { - remote_id: "088899", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - vendor_credit: "5b3c1341-a20f-4e51-b72c-f3830a16c97b", - applied_date: "2020-03-31T00:00:00Z", - applied_amount: "2.9", - }, - ], - inclusive_of_tax: true, - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - remote_fields: [{ remote_field_class: "remote_field_class", value: "string" }], - }, - warnings: [ - { - source: { pointer: "pointer" }, - title: "Unrecognized Field", - detail: "An unrecognized field, age, was passed in with request data.", - problem_type: "UNRECOGNIZED_FIELD", - }, - ], - errors: [ - { - source: { pointer: "pointer" }, - title: "Missing Required Field", - detail: "custom_fields is a required field on model.", - problem_type: "MISSING_REQUIRED_FIELD", - }, - ], - logs: [ - { - log_id: "99433219-8017-4acd-bb3c-ceb23d663832", - dashboard_view: "https://app.merge.dev/logs/99433219-8017-4acd-bb3c-ceb23d663832", - log_summary: { - url: "www.exampleintegration.com/api/v1/exampleapi", - method: "POST", - status_code: 200, - }, - }, - ], - }; - server - .mockEndpoint() - .post("/accounting/v1/invoices") - .jsonBody(rawRequestBody) - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.invoices.create({ - isDebugMode: true, - runAsync: true, - model: {}, - }); - expect(response).toEqual({ - model: { - id: "9871b4a9-f5d2-4f3b-a66b-dfedbed42c46", - remoteId: "990110", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - type: "ACCOUNTS_RECEIVABLE", - contact: "contact", - number: "AIQ12546", - issueDate: new Date("2020-03-31T00:00:00.000Z"), - dueDate: new Date("2020-04-15T00:00:00.000Z"), - paidOnDate: new Date("2020-04-01T00:00:00.000Z"), - memo: "Weekly Payment", - company: "company", - employee: "employee", - currency: "XUA", - exchangeRate: "2.9", - paymentTerm: "payment_term", - totalDiscount: 1.1, - subTotal: 100, - status: "PAID", - totalTaxAmount: 5, - totalAmount: 105, - balance: 105, - remoteUpdatedAt: new Date("2020-04-01T00:00:00.000Z"), - trackingCategories: [ - "7dc5ca17-d311-44cd-9ce0-333080367a18", - "6aa0700c-48e1-4c4a-8162-02e6a582df05", - "8c933d61-8f5b-4360-ac0c-c9dc87bee763", - ], - accountingPeriod: "accounting_period", - purchaseOrders: [ - "e7378d8f-3992-4c2a-8417-ebdc4f2bfeb7", - "dd70ca2f-b120-46fa-889a-9604037f45fd", - "889b281d-739c-4759-95b8-0aedb3947131", - ], - payments: ["b26fd49a-cbae-470a-a8f8-bcbc119e0390"], - appliedPayments: ["9017594e-dc33-4113-a5d2-b0f928e34fdd"], - lineItems: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "8765432", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - description: "Pickleball lessons", - unitPrice: 50, - quantity: 1, - totalAmount: 50, - employee: "7442f0d5-722d-45bd-b807-6e38489d37fe", - project: "22e65a5d-2df5-4e6e-884a-e538d0339000", - contact: "908934-49j9-093f-0989-908923908", - currency: "USD", - exchangeRate: "2.9", - item: "5b3c1341-a20f-4e51-b72c-f3830a16c97b", - account: "cd0f32d4-a493-11ec-b909-0242ac120002", - taxRate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - trackingCategories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - }, - ], - appliedCreditNotes: [ - { - remoteId: "088899", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - creditNote: "5b3c1341-a20f-4e51-b72c-f3830a16c97b", - appliedDate: new Date("2020-03-31T00:00:00.000Z"), - appliedAmount: "2.9", - }, - ], - appliedVendorCredits: [ - { - remoteId: "088899", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - vendorCredit: "5b3c1341-a20f-4e51-b72c-f3830a16c97b", - appliedDate: new Date("2020-03-31T00:00:00.000Z"), - appliedAmount: "2.9", - }, - ], - inclusiveOfTax: true, - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - remoteFields: [ - { - remoteFieldClass: "remote_field_class", - value: "string", - }, - ], - }, - warnings: [ - { - source: { - pointer: "pointer", - }, - title: "Unrecognized Field", - detail: "An unrecognized field, age, was passed in with request data.", - problemType: "UNRECOGNIZED_FIELD", - }, - ], - errors: [ - { - source: { - pointer: "pointer", - }, - title: "Missing Required Field", - detail: "custom_fields is a required field on model.", - problemType: "MISSING_REQUIRED_FIELD", - }, - ], - logs: [ - { - logId: "99433219-8017-4acd-bb3c-ceb23d663832", - dashboardView: "https://app.merge.dev/logs/99433219-8017-4acd-bb3c-ceb23d663832", - logSummary: { - url: "www.exampleintegration.com/api/v1/exampleapi", - method: "POST", - statusCode: 200, - }, - }, - ], - }); - }); - - test("retrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - id: "9871b4a9-f5d2-4f3b-a66b-dfedbed42c46", - remote_id: "990110", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - type: "ACCOUNTS_RECEIVABLE", - contact: "contact", - number: "AIQ12546", - issue_date: "2020-03-31T00:00:00Z", - due_date: "2020-04-15T00:00:00Z", - paid_on_date: "2020-04-01T00:00:00Z", - memo: "Weekly Payment", - company: "company", - employee: "employee", - currency: "XUA", - exchange_rate: "2.9", - payment_term: "payment_term", - total_discount: 1.1, - sub_total: 100, - status: "PAID", - total_tax_amount: 5, - total_amount: 105, - balance: 105, - remote_updated_at: "2020-04-01T00:00:00Z", - tracking_categories: [ - "7dc5ca17-d311-44cd-9ce0-333080367a18", - "6aa0700c-48e1-4c4a-8162-02e6a582df05", - "8c933d61-8f5b-4360-ac0c-c9dc87bee763", - ], - accounting_period: "accounting_period", - purchase_orders: [ - "e7378d8f-3992-4c2a-8417-ebdc4f2bfeb7", - "dd70ca2f-b120-46fa-889a-9604037f45fd", - "889b281d-739c-4759-95b8-0aedb3947131", - ], - payments: ["b26fd49a-cbae-470a-a8f8-bcbc119e0390"], - applied_payments: ["9017594e-dc33-4113-a5d2-b0f928e34fdd"], - line_items: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "8765432", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - description: "Pickleball lessons", - unit_price: 50, - quantity: 1, - total_amount: 50, - employee: "7442f0d5-722d-45bd-b807-6e38489d37fe", - project: "22e65a5d-2df5-4e6e-884a-e538d0339000", - contact: "908934-49j9-093f-0989-908923908", - currency: "USD", - exchange_rate: "2.9", - item: "5b3c1341-a20f-4e51-b72c-f3830a16c97b", - account: "cd0f32d4-a493-11ec-b909-0242ac120002", - tax_rate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - tracking_categories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_fields: [{ remote_field_class: "remote_field_class", value: "string" }], - }, - ], - applied_credit_notes: [ - { - remote_id: "088899", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - credit_note: "5b3c1341-a20f-4e51-b72c-f3830a16c97b", - applied_date: "2020-03-31T00:00:00Z", - applied_amount: "2.9", - remote_was_deleted: true, - }, - ], - applied_vendor_credits: [ - { - remote_id: "088899", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - vendor_credit: "5b3c1341-a20f-4e51-b72c-f3830a16c97b", - applied_date: "2020-03-31T00:00:00Z", - applied_amount: "2.9", - remote_was_deleted: true, - }, - ], - inclusive_of_tax: true, - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - remote_fields: [{ remote_field_class: "remote_field_class", value: "string" }], - }; - server - .mockEndpoint() - .get("/accounting/v1/invoices/id") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.invoices.retrieve("id", { - expand: "accounting_period", - includeRemoteData: true, - includeRemoteFields: true, - includeShellData: true, - remoteFields: "type", - showEnumOrigins: "type", - }); - expect(response).toEqual({ - id: "9871b4a9-f5d2-4f3b-a66b-dfedbed42c46", - remoteId: "990110", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - type: "ACCOUNTS_RECEIVABLE", - contact: "contact", - number: "AIQ12546", - issueDate: new Date("2020-03-31T00:00:00.000Z"), - dueDate: new Date("2020-04-15T00:00:00.000Z"), - paidOnDate: new Date("2020-04-01T00:00:00.000Z"), - memo: "Weekly Payment", - company: "company", - employee: "employee", - currency: "XUA", - exchangeRate: "2.9", - paymentTerm: "payment_term", - totalDiscount: 1.1, - subTotal: 100, - status: "PAID", - totalTaxAmount: 5, - totalAmount: 105, - balance: 105, - remoteUpdatedAt: new Date("2020-04-01T00:00:00.000Z"), - trackingCategories: [ - "7dc5ca17-d311-44cd-9ce0-333080367a18", - "6aa0700c-48e1-4c4a-8162-02e6a582df05", - "8c933d61-8f5b-4360-ac0c-c9dc87bee763", - ], - accountingPeriod: "accounting_period", - purchaseOrders: [ - "e7378d8f-3992-4c2a-8417-ebdc4f2bfeb7", - "dd70ca2f-b120-46fa-889a-9604037f45fd", - "889b281d-739c-4759-95b8-0aedb3947131", - ], - payments: ["b26fd49a-cbae-470a-a8f8-bcbc119e0390"], - appliedPayments: ["9017594e-dc33-4113-a5d2-b0f928e34fdd"], - lineItems: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "8765432", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - description: "Pickleball lessons", - unitPrice: 50, - quantity: 1, - totalAmount: 50, - employee: "7442f0d5-722d-45bd-b807-6e38489d37fe", - project: "22e65a5d-2df5-4e6e-884a-e538d0339000", - contact: "908934-49j9-093f-0989-908923908", - currency: "USD", - exchangeRate: "2.9", - item: "5b3c1341-a20f-4e51-b72c-f3830a16c97b", - account: "cd0f32d4-a493-11ec-b909-0242ac120002", - taxRate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - trackingCategories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteFields: [ - { - remoteFieldClass: "remote_field_class", - value: "string", - }, - ], - }, - ], - appliedCreditNotes: [ - { - remoteId: "088899", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - creditNote: "5b3c1341-a20f-4e51-b72c-f3830a16c97b", - appliedDate: new Date("2020-03-31T00:00:00.000Z"), - appliedAmount: "2.9", - remoteWasDeleted: true, - }, - ], - appliedVendorCredits: [ - { - remoteId: "088899", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - vendorCredit: "5b3c1341-a20f-4e51-b72c-f3830a16c97b", - appliedDate: new Date("2020-03-31T00:00:00.000Z"), - appliedAmount: "2.9", - remoteWasDeleted: true, - }, - ], - inclusiveOfTax: true, - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - remoteFields: [ - { - remoteFieldClass: "remote_field_class", - value: "string", - }, - ], - }); - }); - - test("partialUpdate", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - const rawRequestBody = { model: {} }; - const rawResponseBody = { - model: { - id: "9871b4a9-f5d2-4f3b-a66b-dfedbed42c46", - remote_id: "990110", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - type: "ACCOUNTS_RECEIVABLE", - contact: "contact", - number: "AIQ12546", - issue_date: "2020-03-31T00:00:00Z", - due_date: "2020-04-15T00:00:00Z", - paid_on_date: "2020-04-01T00:00:00Z", - memo: "Weekly Payment", - company: "company", - employee: "employee", - currency: "XUA", - exchange_rate: "2.9", - payment_term: "payment_term", - total_discount: 1.1, - sub_total: 100, - status: "PAID", - total_tax_amount: 5, - total_amount: 105, - balance: 105, - remote_updated_at: "2020-04-01T00:00:00Z", - tracking_categories: [ - "7dc5ca17-d311-44cd-9ce0-333080367a18", - "6aa0700c-48e1-4c4a-8162-02e6a582df05", - "8c933d61-8f5b-4360-ac0c-c9dc87bee763", - ], - accounting_period: "accounting_period", - purchase_orders: [ - "e7378d8f-3992-4c2a-8417-ebdc4f2bfeb7", - "dd70ca2f-b120-46fa-889a-9604037f45fd", - "889b281d-739c-4759-95b8-0aedb3947131", - ], - payments: ["b26fd49a-cbae-470a-a8f8-bcbc119e0390"], - applied_payments: ["9017594e-dc33-4113-a5d2-b0f928e34fdd"], - line_items: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "8765432", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - description: "Pickleball lessons", - unit_price: 50, - quantity: 1, - total_amount: 50, - employee: "7442f0d5-722d-45bd-b807-6e38489d37fe", - project: "22e65a5d-2df5-4e6e-884a-e538d0339000", - contact: "908934-49j9-093f-0989-908923908", - currency: "USD", - exchange_rate: "2.9", - item: "5b3c1341-a20f-4e51-b72c-f3830a16c97b", - account: "cd0f32d4-a493-11ec-b909-0242ac120002", - tax_rate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - tracking_categories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - }, - ], - applied_credit_notes: [ - { - remote_id: "088899", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - credit_note: "5b3c1341-a20f-4e51-b72c-f3830a16c97b", - applied_date: "2020-03-31T00:00:00Z", - applied_amount: "2.9", - }, - ], - applied_vendor_credits: [ - { - remote_id: "088899", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - vendor_credit: "5b3c1341-a20f-4e51-b72c-f3830a16c97b", - applied_date: "2020-03-31T00:00:00Z", - applied_amount: "2.9", - }, - ], - inclusive_of_tax: true, - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - remote_fields: [{ remote_field_class: "remote_field_class", value: "string" }], - }, - warnings: [ - { - source: { pointer: "pointer" }, - title: "Unrecognized Field", - detail: "An unrecognized field, age, was passed in with request data.", - problem_type: "UNRECOGNIZED_FIELD", - }, - ], - errors: [ - { - source: { pointer: "pointer" }, - title: "Missing Required Field", - detail: "custom_fields is a required field on model.", - problem_type: "MISSING_REQUIRED_FIELD", - }, - ], - logs: [ - { - log_id: "99433219-8017-4acd-bb3c-ceb23d663832", - dashboard_view: "https://app.merge.dev/logs/99433219-8017-4acd-bb3c-ceb23d663832", - log_summary: { - url: "www.exampleintegration.com/api/v1/exampleapi", - method: "POST", - status_code: 200, - }, - }, - ], - }; - server - .mockEndpoint() - .patch("/accounting/v1/invoices/id") - .jsonBody(rawRequestBody) - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.invoices.partialUpdate("id", { - isDebugMode: true, - runAsync: true, - model: {}, - }); - expect(response).toEqual({ - model: { - id: "9871b4a9-f5d2-4f3b-a66b-dfedbed42c46", - remoteId: "990110", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - type: "ACCOUNTS_RECEIVABLE", - contact: "contact", - number: "AIQ12546", - issueDate: new Date("2020-03-31T00:00:00.000Z"), - dueDate: new Date("2020-04-15T00:00:00.000Z"), - paidOnDate: new Date("2020-04-01T00:00:00.000Z"), - memo: "Weekly Payment", - company: "company", - employee: "employee", - currency: "XUA", - exchangeRate: "2.9", - paymentTerm: "payment_term", - totalDiscount: 1.1, - subTotal: 100, - status: "PAID", - totalTaxAmount: 5, - totalAmount: 105, - balance: 105, - remoteUpdatedAt: new Date("2020-04-01T00:00:00.000Z"), - trackingCategories: [ - "7dc5ca17-d311-44cd-9ce0-333080367a18", - "6aa0700c-48e1-4c4a-8162-02e6a582df05", - "8c933d61-8f5b-4360-ac0c-c9dc87bee763", - ], - accountingPeriod: "accounting_period", - purchaseOrders: [ - "e7378d8f-3992-4c2a-8417-ebdc4f2bfeb7", - "dd70ca2f-b120-46fa-889a-9604037f45fd", - "889b281d-739c-4759-95b8-0aedb3947131", - ], - payments: ["b26fd49a-cbae-470a-a8f8-bcbc119e0390"], - appliedPayments: ["9017594e-dc33-4113-a5d2-b0f928e34fdd"], - lineItems: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "8765432", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - description: "Pickleball lessons", - unitPrice: 50, - quantity: 1, - totalAmount: 50, - employee: "7442f0d5-722d-45bd-b807-6e38489d37fe", - project: "22e65a5d-2df5-4e6e-884a-e538d0339000", - contact: "908934-49j9-093f-0989-908923908", - currency: "USD", - exchangeRate: "2.9", - item: "5b3c1341-a20f-4e51-b72c-f3830a16c97b", - account: "cd0f32d4-a493-11ec-b909-0242ac120002", - taxRate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - trackingCategories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - }, - ], - appliedCreditNotes: [ - { - remoteId: "088899", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - creditNote: "5b3c1341-a20f-4e51-b72c-f3830a16c97b", - appliedDate: new Date("2020-03-31T00:00:00.000Z"), - appliedAmount: "2.9", - }, - ], - appliedVendorCredits: [ - { - remoteId: "088899", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - vendorCredit: "5b3c1341-a20f-4e51-b72c-f3830a16c97b", - appliedDate: new Date("2020-03-31T00:00:00.000Z"), - appliedAmount: "2.9", - }, - ], - inclusiveOfTax: true, - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - remoteFields: [ - { - remoteFieldClass: "remote_field_class", - value: "string", - }, - ], - }, - warnings: [ - { - source: { - pointer: "pointer", - }, - title: "Unrecognized Field", - detail: "An unrecognized field, age, was passed in with request data.", - problemType: "UNRECOGNIZED_FIELD", - }, - ], - errors: [ - { - source: { - pointer: "pointer", - }, - title: "Missing Required Field", - detail: "custom_fields is a required field on model.", - problemType: "MISSING_REQUIRED_FIELD", - }, - ], - logs: [ - { - logId: "99433219-8017-4acd-bb3c-ceb23d663832", - dashboardView: "https://app.merge.dev/logs/99433219-8017-4acd-bb3c-ceb23d663832", - logSummary: { - url: "www.exampleintegration.com/api/v1/exampleapi", - method: "POST", - statusCode: 200, - }, - }, - ], - }); - }); - - test("lineItemsRemoteFieldClassesList", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "id", - display_name: "display_name", - remote_key_name: "remote_key_name", - description: "description", - is_custom: true, - is_common_model_field: true, - is_required: true, - field_type: "string", - field_format: "string", - field_choices: ["field_choices"], - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/invoices/line-items/remote-field-classes") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.invoices.lineItemsRemoteFieldClassesList({ - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - isCommonModelField: true, - isCustom: true, - pageSize: 1, - }); - expect(response).toEqual({ - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "id", - displayName: "display_name", - remoteKeyName: "remote_key_name", - description: "description", - isCustom: true, - isCommonModelField: true, - isRequired: true, - fieldType: "string", - fieldFormat: "string", - fieldChoices: ["field_choices"], - }, - ], - }); - }); - - test("metaPatchRetrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - request_schema: { - type: "object", - properties: { - model: { - type: "object", - required: [ - "last_name", - "first_name", - "merge_categories", - "new_york_city_neighborhood", - "favorite_tv_shows", - "favorite_watch", - ], - properties: { - email_addresses: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - email_address_type: { type: "string", title: "email_address_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "email_addresses", - description: "Array of email_addresses objects", - }, - urls: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - url_type: { type: "string", title: "url_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "urls", - description: "Array of urls objects", - }, - first_name: { type: "string", title: "first_name", description: "The first name." }, - last_name: { type: "string", title: "last_name", description: "The last name." }, - phone_numbers: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - phone_number_type: { type: "string", title: "phone_number_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "phone_numbers", - description: "Array of phone_numbers objects", - }, - tags: { - type: "array", - items: { type: "string", format: "uuid" }, - title: "tags", - description: "Array of tags names", - }, - attachments: { - type: "array", - items: { - type: "object", - properties: { - id: { type: "string", title: "id" }, - file_url: { type: "string", title: "file_url" }, - file_name: { type: "string", title: "file_name" }, - attachment_type: { type: "string", title: "attachment_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "attachments", - description: "Array of attachments objects ", - }, - merge_categories: { - type: "array", - categories: { - type: "string", - enum: [ - "HRIS", - "ATS", - "Accounting", - "Ticketing", - "File Storage", - "CRM", - "Marketing Automation", - ], - enum_information: [ - { value: "HRIS", description: "Merge HRIS Category" }, - { value: "ATS", description: "Merge ATS Category" }, - { value: "Accounting", description: "Merge Accounting Category" }, - { value: "Ticketing", description: "Merge Ticketing Category" }, - { value: "File Storage", description: "Merge File Storage Category" }, - { value: "CRM", description: "Merge CRM Category" }, - { - value: "Marketing Automation", - description: "Merge Marketing Automation Category", - }, - ], - }, - title: "Merge Categories", - description: "Array of Merge's Unified API Categories", - }, - new_york_city_neighborhood: { - type: "string", - title: "Borough", - description: "One of the 5 Boroughs of New York City", - }, - favorite_tv_shows: { - type: "array", - items: { type: "string", format: "uuid" }, - title: "Favorite TV Shows", - description: "Array of TV Show objects on merge.tv_shows", - }, - favorite_watch: { - type: "string", - title: "Favorite Watch", - description: "Favorite watch of all time", - }, - }, - }, - }, - }, - remote_field_classes: { key: "value" }, - status: { linked_account_status: "linked_account_status", can_make_request: true }, - has_conditional_params: true, - has_required_linked_account_params: true, - }; - server - .mockEndpoint() - .get("/accounting/v1/invoices/meta/patch/id") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.invoices.metaPatchRetrieve("id"); - expect(response).toEqual({ - requestSchema: { - type: "object", - properties: { - model: { - type: "object", - required: [ - "last_name", - "first_name", - "merge_categories", - "new_york_city_neighborhood", - "favorite_tv_shows", - "favorite_watch", - ], - properties: { - email_addresses: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - email_address_type: { - type: "string", - title: "email_address_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "email_addresses", - description: "Array of email_addresses objects", - }, - urls: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - url_type: { - type: "string", - title: "url_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "urls", - description: "Array of urls objects", - }, - first_name: { - type: "string", - title: "first_name", - description: "The first name.", - }, - last_name: { - type: "string", - title: "last_name", - description: "The last name.", - }, - phone_numbers: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - phone_number_type: { - type: "string", - title: "phone_number_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "phone_numbers", - description: "Array of phone_numbers objects", - }, - tags: { - type: "array", - items: { - type: "string", - format: "uuid", - }, - title: "tags", - description: "Array of tags names", - }, - attachments: { - type: "array", - items: { - type: "object", - properties: { - id: { - type: "string", - title: "id", - }, - file_url: { - type: "string", - title: "file_url", - }, - file_name: { - type: "string", - title: "file_name", - }, - attachment_type: { - type: "string", - title: "attachment_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "attachments", - description: "Array of attachments objects ", - }, - merge_categories: { - type: "array", - categories: { - type: "string", - enum: [ - "HRIS", - "ATS", - "Accounting", - "Ticketing", - "File Storage", - "CRM", - "Marketing Automation", - ], - enum_information: [ - { - value: "HRIS", - description: "Merge HRIS Category", - }, - { - value: "ATS", - description: "Merge ATS Category", - }, - { - value: "Accounting", - description: "Merge Accounting Category", - }, - { - value: "Ticketing", - description: "Merge Ticketing Category", - }, - { - value: "File Storage", - description: "Merge File Storage Category", - }, - { - value: "CRM", - description: "Merge CRM Category", - }, - { - value: "Marketing Automation", - description: "Merge Marketing Automation Category", - }, - ], - }, - title: "Merge Categories", - description: "Array of Merge's Unified API Categories", - }, - new_york_city_neighborhood: { - type: "string", - title: "Borough", - description: "One of the 5 Boroughs of New York City", - }, - favorite_tv_shows: { - type: "array", - items: { - type: "string", - format: "uuid", - }, - title: "Favorite TV Shows", - description: "Array of TV Show objects on merge.tv_shows", - }, - favorite_watch: { - type: "string", - title: "Favorite Watch", - description: "Favorite watch of all time", - }, - }, - }, - }, - }, - remoteFieldClasses: { - key: "value", - }, - status: { - linkedAccountStatus: "linked_account_status", - canMakeRequest: true, - }, - hasConditionalParams: true, - hasRequiredLinkedAccountParams: true, - }); - }); - - test("metaPostRetrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - request_schema: { - type: "object", - properties: { - model: { - type: "object", - required: [ - "last_name", - "first_name", - "merge_categories", - "new_york_city_neighborhood", - "favorite_tv_shows", - "favorite_watch", - ], - properties: { - email_addresses: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - email_address_type: { type: "string", title: "email_address_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "email_addresses", - description: "Array of email_addresses objects", - }, - urls: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - url_type: { type: "string", title: "url_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "urls", - description: "Array of urls objects", - }, - first_name: { type: "string", title: "first_name", description: "The first name." }, - last_name: { type: "string", title: "last_name", description: "The last name." }, - phone_numbers: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - phone_number_type: { type: "string", title: "phone_number_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "phone_numbers", - description: "Array of phone_numbers objects", - }, - tags: { - type: "array", - items: { type: "string", format: "uuid" }, - title: "tags", - description: "Array of tags names", - }, - attachments: { - type: "array", - items: { - type: "object", - properties: { - id: { type: "string", title: "id" }, - file_url: { type: "string", title: "file_url" }, - file_name: { type: "string", title: "file_name" }, - attachment_type: { type: "string", title: "attachment_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "attachments", - description: "Array of attachments objects ", - }, - merge_categories: { - type: "array", - categories: { - type: "string", - enum: [ - "HRIS", - "ATS", - "Accounting", - "Ticketing", - "File Storage", - "CRM", - "Marketing Automation", - ], - enum_information: [ - { value: "HRIS", description: "Merge HRIS Category" }, - { value: "ATS", description: "Merge ATS Category" }, - { value: "Accounting", description: "Merge Accounting Category" }, - { value: "Ticketing", description: "Merge Ticketing Category" }, - { value: "File Storage", description: "Merge File Storage Category" }, - { value: "CRM", description: "Merge CRM Category" }, - { - value: "Marketing Automation", - description: "Merge Marketing Automation Category", - }, - ], - }, - title: "Merge Categories", - description: "Array of Merge's Unified API Categories", - }, - new_york_city_neighborhood: { - type: "string", - title: "Borough", - description: "One of the 5 Boroughs of New York City", - }, - favorite_tv_shows: { - type: "array", - items: { type: "string", format: "uuid" }, - title: "Favorite TV Shows", - description: "Array of TV Show objects on merge.tv_shows", - }, - favorite_watch: { - type: "string", - title: "Favorite Watch", - description: "Favorite watch of all time", - }, - }, - }, - }, - }, - remote_field_classes: { key: "value" }, - status: { linked_account_status: "linked_account_status", can_make_request: true }, - has_conditional_params: true, - has_required_linked_account_params: true, - }; - server - .mockEndpoint() - .get("/accounting/v1/invoices/meta/post") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.invoices.metaPostRetrieve(); - expect(response).toEqual({ - requestSchema: { - type: "object", - properties: { - model: { - type: "object", - required: [ - "last_name", - "first_name", - "merge_categories", - "new_york_city_neighborhood", - "favorite_tv_shows", - "favorite_watch", - ], - properties: { - email_addresses: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - email_address_type: { - type: "string", - title: "email_address_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "email_addresses", - description: "Array of email_addresses objects", - }, - urls: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - url_type: { - type: "string", - title: "url_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "urls", - description: "Array of urls objects", - }, - first_name: { - type: "string", - title: "first_name", - description: "The first name.", - }, - last_name: { - type: "string", - title: "last_name", - description: "The last name.", - }, - phone_numbers: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - phone_number_type: { - type: "string", - title: "phone_number_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "phone_numbers", - description: "Array of phone_numbers objects", - }, - tags: { - type: "array", - items: { - type: "string", - format: "uuid", - }, - title: "tags", - description: "Array of tags names", - }, - attachments: { - type: "array", - items: { - type: "object", - properties: { - id: { - type: "string", - title: "id", - }, - file_url: { - type: "string", - title: "file_url", - }, - file_name: { - type: "string", - title: "file_name", - }, - attachment_type: { - type: "string", - title: "attachment_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "attachments", - description: "Array of attachments objects ", - }, - merge_categories: { - type: "array", - categories: { - type: "string", - enum: [ - "HRIS", - "ATS", - "Accounting", - "Ticketing", - "File Storage", - "CRM", - "Marketing Automation", - ], - enum_information: [ - { - value: "HRIS", - description: "Merge HRIS Category", - }, - { - value: "ATS", - description: "Merge ATS Category", - }, - { - value: "Accounting", - description: "Merge Accounting Category", - }, - { - value: "Ticketing", - description: "Merge Ticketing Category", - }, - { - value: "File Storage", - description: "Merge File Storage Category", - }, - { - value: "CRM", - description: "Merge CRM Category", - }, - { - value: "Marketing Automation", - description: "Merge Marketing Automation Category", - }, - ], - }, - title: "Merge Categories", - description: "Array of Merge's Unified API Categories", - }, - new_york_city_neighborhood: { - type: "string", - title: "Borough", - description: "One of the 5 Boroughs of New York City", - }, - favorite_tv_shows: { - type: "array", - items: { - type: "string", - format: "uuid", - }, - title: "Favorite TV Shows", - description: "Array of TV Show objects on merge.tv_shows", - }, - favorite_watch: { - type: "string", - title: "Favorite Watch", - description: "Favorite watch of all time", - }, - }, - }, - }, - }, - remoteFieldClasses: { - key: "value", - }, - status: { - linkedAccountStatus: "linked_account_status", - canMakeRequest: true, - }, - hasConditionalParams: true, - hasRequiredLinkedAccountParams: true, - }); - }); - - test("remoteFieldClassesList", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "id", - display_name: "display_name", - remote_key_name: "remote_key_name", - description: "description", - is_custom: true, - is_common_model_field: true, - is_required: true, - field_type: "string", - field_format: "string", - field_choices: ["field_choices"], - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/invoices/remote-field-classes") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.invoices.remoteFieldClassesList({ - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - isCommonModelField: true, - isCustom: true, - pageSize: 1, - }); - expect(response).toEqual({ - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "id", - displayName: "display_name", - remoteKeyName: "remote_key_name", - description: "description", - isCustom: true, - isCommonModelField: true, - isRequired: true, - fieldType: "string", - fieldFormat: "string", - fieldChoices: ["field_choices"], - }, - ], - }); - }); -}); diff --git a/tests/wire/accounting/issues.test.ts b/tests/wire/accounting/issues.test.ts deleted file mode 100644 index c1f081d95..000000000 --- a/tests/wire/accounting/issues.test.ts +++ /dev/null @@ -1,117 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import { MergeClient } from "../../../src/Client"; -import { mockServerPool } from "../../mock-server/MockServerPool"; - -describe("IssuesClient", () => { - test("list", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - status: "ONGOING", - error_description: "Missing Permissions", - end_user: { key: "value" }, - first_incident_time: "2022-12-05T16:19:15Z", - last_incident_time: "2022-12-05T16:19:15Z", - is_muted: true, - error_details: ["Missing employee permissions.", "Missing time off permissions."], - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/issues") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.issues.list({ - accountToken: "account_token", - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - endDate: "end_date", - endUserOrganizationName: "end_user_organization_name", - firstIncidentTimeAfter: new Date("2024-01-15T09:30:00.000Z"), - firstIncidentTimeBefore: new Date("2024-01-15T09:30:00.000Z"), - includeMuted: "include_muted", - integrationName: "integration_name", - lastIncidentTimeAfter: new Date("2024-01-15T09:30:00.000Z"), - lastIncidentTimeBefore: new Date("2024-01-15T09:30:00.000Z"), - linkedAccountId: "linked_account_id", - pageSize: 1, - startDate: "start_date", - status: "ONGOING", - }); - expect(response).toEqual({ - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - status: "ONGOING", - errorDescription: "Missing Permissions", - endUser: { - key: "value", - }, - firstIncidentTime: new Date("2022-12-05T16:19:15.000Z"), - lastIncidentTime: new Date("2022-12-05T16:19:15.000Z"), - isMuted: true, - errorDetails: ["Missing employee permissions.", "Missing time off permissions."], - }, - ], - }); - }); - - test("retrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - status: "ONGOING", - error_description: "Missing Permissions", - end_user: { key: "value" }, - first_incident_time: "2022-12-05T16:19:15Z", - last_incident_time: "2022-12-05T16:19:15Z", - is_muted: true, - error_details: ["Missing employee permissions.", "Missing time off permissions."], - }; - server - .mockEndpoint() - .get("/accounting/v1/issues/id") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.issues.retrieve("id"); - expect(response).toEqual({ - id: "3fa85f64-5717-4562-b3fc-2c963f66afa6", - status: "ONGOING", - errorDescription: "Missing Permissions", - endUser: { - key: "value", - }, - firstIncidentTime: new Date("2022-12-05T16:19:15.000Z"), - lastIncidentTime: new Date("2022-12-05T16:19:15.000Z"), - isMuted: true, - errorDetails: ["Missing employee permissions.", "Missing time off permissions."], - }); - }); -}); diff --git a/tests/wire/accounting/items.test.ts b/tests/wire/accounting/items.test.ts deleted file mode 100644 index ef3708dc8..000000000 --- a/tests/wire/accounting/items.test.ts +++ /dev/null @@ -1,1315 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import { MergeClient } from "../../../src/Client"; -import { mockServerPool } from "../../mock-server/MockServerPool"; - -describe("ItemsClient", () => { - test("list", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "d2f972d0-2526-434b-9409-4c3b468e08f0", - remote_id: "12374", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - name: "Pickleball Paddle", - status: "ACTIVE", - type: "INVENTORY", - unit_price: 10, - purchase_price: 25, - purchase_account: "purchase_account", - sales_account: "sales_account", - company: "company", - purchase_tax_rate: "purchase_tax_rate", - sales_tax_rate: "sales_tax_rate", - remote_updated_at: "2020-03-31T00:00:00Z", - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/items") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.items.list({ - companyId: "company_id", - createdAfter: new Date("2024-01-15T09:30:00.000Z"), - createdBefore: new Date("2024-01-15T09:30:00.000Z"), - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - expand: "company", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - pageSize: 1, - remoteFields: "status", - remoteId: "remote_id", - showEnumOrigins: "status", - }); - expect(response).toEqual({ - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "d2f972d0-2526-434b-9409-4c3b468e08f0", - remoteId: "12374", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - name: "Pickleball Paddle", - status: "ACTIVE", - type: "INVENTORY", - unitPrice: 10, - purchasePrice: 25, - purchaseAccount: "purchase_account", - salesAccount: "sales_account", - company: "company", - purchaseTaxRate: "purchase_tax_rate", - salesTaxRate: "sales_tax_rate", - remoteUpdatedAt: new Date("2020-03-31T00:00:00.000Z"), - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - }, - ], - }); - }); - - test("create", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - const rawRequestBody = { model: {} }; - const rawResponseBody = { - model: { - id: "d2f972d0-2526-434b-9409-4c3b468e08f0", - remote_id: "12374", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - name: "Pickleball Paddle", - status: "ACTIVE", - type: "INVENTORY", - unit_price: 10, - purchase_price: 25, - purchase_account: "purchase_account", - sales_account: "sales_account", - company: "company", - purchase_tax_rate: "purchase_tax_rate", - sales_tax_rate: "sales_tax_rate", - remote_updated_at: "2020-03-31T00:00:00Z", - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - }, - warnings: [ - { - source: { pointer: "pointer" }, - title: "Unrecognized Field", - detail: "An unrecognized field, age, was passed in with request data.", - problem_type: "UNRECOGNIZED_FIELD", - }, - ], - errors: [ - { - source: { pointer: "pointer" }, - title: "Missing Required Field", - detail: "custom_fields is a required field on model.", - problem_type: "MISSING_REQUIRED_FIELD", - }, - ], - logs: [ - { - log_id: "99433219-8017-4acd-bb3c-ceb23d663832", - dashboard_view: "https://app.merge.dev/logs/99433219-8017-4acd-bb3c-ceb23d663832", - log_summary: { - url: "www.exampleintegration.com/api/v1/exampleapi", - method: "POST", - status_code: 200, - }, - }, - ], - }; - server - .mockEndpoint() - .post("/accounting/v1/items") - .jsonBody(rawRequestBody) - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.items.create({ - isDebugMode: true, - runAsync: true, - model: {}, - }); - expect(response).toEqual({ - model: { - id: "d2f972d0-2526-434b-9409-4c3b468e08f0", - remoteId: "12374", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - name: "Pickleball Paddle", - status: "ACTIVE", - type: "INVENTORY", - unitPrice: 10, - purchasePrice: 25, - purchaseAccount: "purchase_account", - salesAccount: "sales_account", - company: "company", - purchaseTaxRate: "purchase_tax_rate", - salesTaxRate: "sales_tax_rate", - remoteUpdatedAt: new Date("2020-03-31T00:00:00.000Z"), - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - }, - warnings: [ - { - source: { - pointer: "pointer", - }, - title: "Unrecognized Field", - detail: "An unrecognized field, age, was passed in with request data.", - problemType: "UNRECOGNIZED_FIELD", - }, - ], - errors: [ - { - source: { - pointer: "pointer", - }, - title: "Missing Required Field", - detail: "custom_fields is a required field on model.", - problemType: "MISSING_REQUIRED_FIELD", - }, - ], - logs: [ - { - logId: "99433219-8017-4acd-bb3c-ceb23d663832", - dashboardView: "https://app.merge.dev/logs/99433219-8017-4acd-bb3c-ceb23d663832", - logSummary: { - url: "www.exampleintegration.com/api/v1/exampleapi", - method: "POST", - statusCode: 200, - }, - }, - ], - }); - }); - - test("retrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - id: "d2f972d0-2526-434b-9409-4c3b468e08f0", - remote_id: "12374", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - name: "Pickleball Paddle", - status: "ACTIVE", - type: "INVENTORY", - unit_price: 10, - purchase_price: 25, - purchase_account: "purchase_account", - sales_account: "sales_account", - company: "company", - purchase_tax_rate: "purchase_tax_rate", - sales_tax_rate: "sales_tax_rate", - remote_updated_at: "2020-03-31T00:00:00Z", - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - }; - server - .mockEndpoint() - .get("/accounting/v1/items/id") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.items.retrieve("id", { - expand: "company", - includeRemoteData: true, - includeShellData: true, - remoteFields: "status", - showEnumOrigins: "status", - }); - expect(response).toEqual({ - id: "d2f972d0-2526-434b-9409-4c3b468e08f0", - remoteId: "12374", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - name: "Pickleball Paddle", - status: "ACTIVE", - type: "INVENTORY", - unitPrice: 10, - purchasePrice: 25, - purchaseAccount: "purchase_account", - salesAccount: "sales_account", - company: "company", - purchaseTaxRate: "purchase_tax_rate", - salesTaxRate: "sales_tax_rate", - remoteUpdatedAt: new Date("2020-03-31T00:00:00.000Z"), - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - }); - }); - - test("partialUpdate", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - const rawRequestBody = { model: {} }; - const rawResponseBody = { - model: { - id: "d2f972d0-2526-434b-9409-4c3b468e08f0", - remote_id: "12374", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - name: "Pickleball Paddle", - status: "ACTIVE", - type: "INVENTORY", - unit_price: 10, - purchase_price: 25, - purchase_account: "purchase_account", - sales_account: "sales_account", - company: "company", - purchase_tax_rate: "purchase_tax_rate", - sales_tax_rate: "sales_tax_rate", - remote_updated_at: "2020-03-31T00:00:00Z", - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - }, - warnings: [ - { - source: { pointer: "pointer" }, - title: "Unrecognized Field", - detail: "An unrecognized field, age, was passed in with request data.", - problem_type: "UNRECOGNIZED_FIELD", - }, - ], - errors: [ - { - source: { pointer: "pointer" }, - title: "Missing Required Field", - detail: "custom_fields is a required field on model.", - problem_type: "MISSING_REQUIRED_FIELD", - }, - ], - logs: [ - { - log_id: "99433219-8017-4acd-bb3c-ceb23d663832", - dashboard_view: "https://app.merge.dev/logs/99433219-8017-4acd-bb3c-ceb23d663832", - log_summary: { - url: "www.exampleintegration.com/api/v1/exampleapi", - method: "POST", - status_code: 200, - }, - }, - ], - }; - server - .mockEndpoint() - .patch("/accounting/v1/items/id") - .jsonBody(rawRequestBody) - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.items.partialUpdate("id", { - isDebugMode: true, - runAsync: true, - model: {}, - }); - expect(response).toEqual({ - model: { - id: "d2f972d0-2526-434b-9409-4c3b468e08f0", - remoteId: "12374", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - name: "Pickleball Paddle", - status: "ACTIVE", - type: "INVENTORY", - unitPrice: 10, - purchasePrice: 25, - purchaseAccount: "purchase_account", - salesAccount: "sales_account", - company: "company", - purchaseTaxRate: "purchase_tax_rate", - salesTaxRate: "sales_tax_rate", - remoteUpdatedAt: new Date("2020-03-31T00:00:00.000Z"), - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - }, - warnings: [ - { - source: { - pointer: "pointer", - }, - title: "Unrecognized Field", - detail: "An unrecognized field, age, was passed in with request data.", - problemType: "UNRECOGNIZED_FIELD", - }, - ], - errors: [ - { - source: { - pointer: "pointer", - }, - title: "Missing Required Field", - detail: "custom_fields is a required field on model.", - problemType: "MISSING_REQUIRED_FIELD", - }, - ], - logs: [ - { - logId: "99433219-8017-4acd-bb3c-ceb23d663832", - dashboardView: "https://app.merge.dev/logs/99433219-8017-4acd-bb3c-ceb23d663832", - logSummary: { - url: "www.exampleintegration.com/api/v1/exampleapi", - method: "POST", - statusCode: 200, - }, - }, - ], - }); - }); - - test("metaPatchRetrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - request_schema: { - type: "object", - properties: { - model: { - type: "object", - required: [ - "last_name", - "first_name", - "merge_categories", - "new_york_city_neighborhood", - "favorite_tv_shows", - "favorite_watch", - ], - properties: { - email_addresses: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - email_address_type: { type: "string", title: "email_address_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "email_addresses", - description: "Array of email_addresses objects", - }, - urls: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - url_type: { type: "string", title: "url_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "urls", - description: "Array of urls objects", - }, - first_name: { type: "string", title: "first_name", description: "The first name." }, - last_name: { type: "string", title: "last_name", description: "The last name." }, - phone_numbers: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - phone_number_type: { type: "string", title: "phone_number_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "phone_numbers", - description: "Array of phone_numbers objects", - }, - tags: { - type: "array", - items: { type: "string", format: "uuid" }, - title: "tags", - description: "Array of tags names", - }, - attachments: { - type: "array", - items: { - type: "object", - properties: { - id: { type: "string", title: "id" }, - file_url: { type: "string", title: "file_url" }, - file_name: { type: "string", title: "file_name" }, - attachment_type: { type: "string", title: "attachment_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "attachments", - description: "Array of attachments objects ", - }, - merge_categories: { - type: "array", - categories: { - type: "string", - enum: [ - "HRIS", - "ATS", - "Accounting", - "Ticketing", - "File Storage", - "CRM", - "Marketing Automation", - ], - enum_information: [ - { value: "HRIS", description: "Merge HRIS Category" }, - { value: "ATS", description: "Merge ATS Category" }, - { value: "Accounting", description: "Merge Accounting Category" }, - { value: "Ticketing", description: "Merge Ticketing Category" }, - { value: "File Storage", description: "Merge File Storage Category" }, - { value: "CRM", description: "Merge CRM Category" }, - { - value: "Marketing Automation", - description: "Merge Marketing Automation Category", - }, - ], - }, - title: "Merge Categories", - description: "Array of Merge's Unified API Categories", - }, - new_york_city_neighborhood: { - type: "string", - title: "Borough", - description: "One of the 5 Boroughs of New York City", - }, - favorite_tv_shows: { - type: "array", - items: { type: "string", format: "uuid" }, - title: "Favorite TV Shows", - description: "Array of TV Show objects on merge.tv_shows", - }, - favorite_watch: { - type: "string", - title: "Favorite Watch", - description: "Favorite watch of all time", - }, - }, - }, - }, - }, - remote_field_classes: { key: "value" }, - status: { linked_account_status: "linked_account_status", can_make_request: true }, - has_conditional_params: true, - has_required_linked_account_params: true, - }; - server - .mockEndpoint() - .get("/accounting/v1/items/meta/patch/id") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.items.metaPatchRetrieve("id"); - expect(response).toEqual({ - requestSchema: { - type: "object", - properties: { - model: { - type: "object", - required: [ - "last_name", - "first_name", - "merge_categories", - "new_york_city_neighborhood", - "favorite_tv_shows", - "favorite_watch", - ], - properties: { - email_addresses: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - email_address_type: { - type: "string", - title: "email_address_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "email_addresses", - description: "Array of email_addresses objects", - }, - urls: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - url_type: { - type: "string", - title: "url_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "urls", - description: "Array of urls objects", - }, - first_name: { - type: "string", - title: "first_name", - description: "The first name.", - }, - last_name: { - type: "string", - title: "last_name", - description: "The last name.", - }, - phone_numbers: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - phone_number_type: { - type: "string", - title: "phone_number_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "phone_numbers", - description: "Array of phone_numbers objects", - }, - tags: { - type: "array", - items: { - type: "string", - format: "uuid", - }, - title: "tags", - description: "Array of tags names", - }, - attachments: { - type: "array", - items: { - type: "object", - properties: { - id: { - type: "string", - title: "id", - }, - file_url: { - type: "string", - title: "file_url", - }, - file_name: { - type: "string", - title: "file_name", - }, - attachment_type: { - type: "string", - title: "attachment_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "attachments", - description: "Array of attachments objects ", - }, - merge_categories: { - type: "array", - categories: { - type: "string", - enum: [ - "HRIS", - "ATS", - "Accounting", - "Ticketing", - "File Storage", - "CRM", - "Marketing Automation", - ], - enum_information: [ - { - value: "HRIS", - description: "Merge HRIS Category", - }, - { - value: "ATS", - description: "Merge ATS Category", - }, - { - value: "Accounting", - description: "Merge Accounting Category", - }, - { - value: "Ticketing", - description: "Merge Ticketing Category", - }, - { - value: "File Storage", - description: "Merge File Storage Category", - }, - { - value: "CRM", - description: "Merge CRM Category", - }, - { - value: "Marketing Automation", - description: "Merge Marketing Automation Category", - }, - ], - }, - title: "Merge Categories", - description: "Array of Merge's Unified API Categories", - }, - new_york_city_neighborhood: { - type: "string", - title: "Borough", - description: "One of the 5 Boroughs of New York City", - }, - favorite_tv_shows: { - type: "array", - items: { - type: "string", - format: "uuid", - }, - title: "Favorite TV Shows", - description: "Array of TV Show objects on merge.tv_shows", - }, - favorite_watch: { - type: "string", - title: "Favorite Watch", - description: "Favorite watch of all time", - }, - }, - }, - }, - }, - remoteFieldClasses: { - key: "value", - }, - status: { - linkedAccountStatus: "linked_account_status", - canMakeRequest: true, - }, - hasConditionalParams: true, - hasRequiredLinkedAccountParams: true, - }); - }); - - test("metaPostRetrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - request_schema: { - type: "object", - properties: { - model: { - type: "object", - required: [ - "last_name", - "first_name", - "merge_categories", - "new_york_city_neighborhood", - "favorite_tv_shows", - "favorite_watch", - ], - properties: { - email_addresses: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - email_address_type: { type: "string", title: "email_address_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "email_addresses", - description: "Array of email_addresses objects", - }, - urls: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - url_type: { type: "string", title: "url_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "urls", - description: "Array of urls objects", - }, - first_name: { type: "string", title: "first_name", description: "The first name." }, - last_name: { type: "string", title: "last_name", description: "The last name." }, - phone_numbers: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - phone_number_type: { type: "string", title: "phone_number_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "phone_numbers", - description: "Array of phone_numbers objects", - }, - tags: { - type: "array", - items: { type: "string", format: "uuid" }, - title: "tags", - description: "Array of tags names", - }, - attachments: { - type: "array", - items: { - type: "object", - properties: { - id: { type: "string", title: "id" }, - file_url: { type: "string", title: "file_url" }, - file_name: { type: "string", title: "file_name" }, - attachment_type: { type: "string", title: "attachment_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "attachments", - description: "Array of attachments objects ", - }, - merge_categories: { - type: "array", - categories: { - type: "string", - enum: [ - "HRIS", - "ATS", - "Accounting", - "Ticketing", - "File Storage", - "CRM", - "Marketing Automation", - ], - enum_information: [ - { value: "HRIS", description: "Merge HRIS Category" }, - { value: "ATS", description: "Merge ATS Category" }, - { value: "Accounting", description: "Merge Accounting Category" }, - { value: "Ticketing", description: "Merge Ticketing Category" }, - { value: "File Storage", description: "Merge File Storage Category" }, - { value: "CRM", description: "Merge CRM Category" }, - { - value: "Marketing Automation", - description: "Merge Marketing Automation Category", - }, - ], - }, - title: "Merge Categories", - description: "Array of Merge's Unified API Categories", - }, - new_york_city_neighborhood: { - type: "string", - title: "Borough", - description: "One of the 5 Boroughs of New York City", - }, - favorite_tv_shows: { - type: "array", - items: { type: "string", format: "uuid" }, - title: "Favorite TV Shows", - description: "Array of TV Show objects on merge.tv_shows", - }, - favorite_watch: { - type: "string", - title: "Favorite Watch", - description: "Favorite watch of all time", - }, - }, - }, - }, - }, - remote_field_classes: { key: "value" }, - status: { linked_account_status: "linked_account_status", can_make_request: true }, - has_conditional_params: true, - has_required_linked_account_params: true, - }; - server - .mockEndpoint() - .get("/accounting/v1/items/meta/post") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.items.metaPostRetrieve(); - expect(response).toEqual({ - requestSchema: { - type: "object", - properties: { - model: { - type: "object", - required: [ - "last_name", - "first_name", - "merge_categories", - "new_york_city_neighborhood", - "favorite_tv_shows", - "favorite_watch", - ], - properties: { - email_addresses: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - email_address_type: { - type: "string", - title: "email_address_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "email_addresses", - description: "Array of email_addresses objects", - }, - urls: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - url_type: { - type: "string", - title: "url_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "urls", - description: "Array of urls objects", - }, - first_name: { - type: "string", - title: "first_name", - description: "The first name.", - }, - last_name: { - type: "string", - title: "last_name", - description: "The last name.", - }, - phone_numbers: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - phone_number_type: { - type: "string", - title: "phone_number_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "phone_numbers", - description: "Array of phone_numbers objects", - }, - tags: { - type: "array", - items: { - type: "string", - format: "uuid", - }, - title: "tags", - description: "Array of tags names", - }, - attachments: { - type: "array", - items: { - type: "object", - properties: { - id: { - type: "string", - title: "id", - }, - file_url: { - type: "string", - title: "file_url", - }, - file_name: { - type: "string", - title: "file_name", - }, - attachment_type: { - type: "string", - title: "attachment_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "attachments", - description: "Array of attachments objects ", - }, - merge_categories: { - type: "array", - categories: { - type: "string", - enum: [ - "HRIS", - "ATS", - "Accounting", - "Ticketing", - "File Storage", - "CRM", - "Marketing Automation", - ], - enum_information: [ - { - value: "HRIS", - description: "Merge HRIS Category", - }, - { - value: "ATS", - description: "Merge ATS Category", - }, - { - value: "Accounting", - description: "Merge Accounting Category", - }, - { - value: "Ticketing", - description: "Merge Ticketing Category", - }, - { - value: "File Storage", - description: "Merge File Storage Category", - }, - { - value: "CRM", - description: "Merge CRM Category", - }, - { - value: "Marketing Automation", - description: "Merge Marketing Automation Category", - }, - ], - }, - title: "Merge Categories", - description: "Array of Merge's Unified API Categories", - }, - new_york_city_neighborhood: { - type: "string", - title: "Borough", - description: "One of the 5 Boroughs of New York City", - }, - favorite_tv_shows: { - type: "array", - items: { - type: "string", - format: "uuid", - }, - title: "Favorite TV Shows", - description: "Array of TV Show objects on merge.tv_shows", - }, - favorite_watch: { - type: "string", - title: "Favorite Watch", - description: "Favorite watch of all time", - }, - }, - }, - }, - }, - remoteFieldClasses: { - key: "value", - }, - status: { - linkedAccountStatus: "linked_account_status", - canMakeRequest: true, - }, - hasConditionalParams: true, - hasRequiredLinkedAccountParams: true, - }); - }); -}); diff --git a/tests/wire/accounting/journalEntries.test.ts b/tests/wire/accounting/journalEntries.test.ts deleted file mode 100644 index ad3c41642..000000000 --- a/tests/wire/accounting/journalEntries.test.ts +++ /dev/null @@ -1,1217 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import { MergeClient } from "../../../src/Client"; -import { mockServerPool } from "../../mock-server/MockServerPool"; - -describe("JournalEntriesClient", () => { - test("list", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "088899", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - transaction_date: "2020-03-31T00:00:00Z", - payments: ["b26fd49a-cbae-470a-a8f8-bcbc119e0390"], - applied_payments: ["4311155d-f236-4a5d-9e0f-1cb167e38f95"], - memo: "Weekly Payment", - currency: "XUA", - exchange_rate: "2.9", - company: "company", - inclusive_of_tax: true, - lines: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "121222", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - account: "9d892439-5fab-4dbb-8bd8-34f7f96c7912", - net_amount: 25.54, - tracking_categories: [ - "d25d609b-945f-4762-b55a-1c8fb220c43c", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - employee: "123c8r35-5kf5-12x5-r833-99bwf35210b5", - project: "22e65a5d-2df5-4e6e-884a-e538d0339000", - contact: "d2d5ea3c-b032-11ec-b909-0242ac120002", - tax_rate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - description: "Cash payment for lunch", - exchange_rate: "2.9", - remote_was_deleted: false, - }, - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "121223", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - account: "f963f34d-3d2f-4f77-b557-cf36bc7e6498", - net_amount: 10, - tracking_categories: [ - "d25d609b-945f-4762-b55a-1c8fb220c43c", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - employee: "123c8r35-5kf5-12x5-r833-99bwf35210b5", - contact: "d2d5ea3c-b032-11ec-b909-0242ac120002", - tax_rate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - description: "Cash payment for lunch", - exchange_rate: "2.9", - }, - ], - journal_number: "42", - tracking_categories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - remote_was_deleted: true, - posting_status: "UNPOSTED", - accounting_period: "accounting_period", - remote_created_at: "2020-03-31T00:00:00Z", - remote_updated_at: "2020-03-31T00:00:00Z", - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - remote_fields: [{ remote_field_class: "remote_field_class", value: "string" }], - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/journal-entries") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.journalEntries.list({ - companyId: "company_id", - createdAfter: new Date("2024-01-15T09:30:00.000Z"), - createdBefore: new Date("2024-01-15T09:30:00.000Z"), - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - expand: "accounting_period", - includeDeletedData: true, - includeRemoteData: true, - includeRemoteFields: true, - includeShellData: true, - modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - pageSize: 1, - remoteId: "remote_id", - transactionDateAfter: new Date("2024-01-15T09:30:00.000Z"), - transactionDateBefore: new Date("2024-01-15T09:30:00.000Z"), - }); - expect(response).toEqual({ - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "088899", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - transactionDate: new Date("2020-03-31T00:00:00.000Z"), - payments: ["b26fd49a-cbae-470a-a8f8-bcbc119e0390"], - appliedPayments: ["4311155d-f236-4a5d-9e0f-1cb167e38f95"], - memo: "Weekly Payment", - currency: "XUA", - exchangeRate: "2.9", - company: "company", - inclusiveOfTax: true, - lines: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "121222", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - account: "9d892439-5fab-4dbb-8bd8-34f7f96c7912", - netAmount: 25.54, - trackingCategories: [ - "d25d609b-945f-4762-b55a-1c8fb220c43c", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - employee: "123c8r35-5kf5-12x5-r833-99bwf35210b5", - project: "22e65a5d-2df5-4e6e-884a-e538d0339000", - contact: "d2d5ea3c-b032-11ec-b909-0242ac120002", - taxRate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - description: "Cash payment for lunch", - exchangeRate: "2.9", - remoteWasDeleted: false, - }, - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "121223", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - account: "f963f34d-3d2f-4f77-b557-cf36bc7e6498", - netAmount: 10, - trackingCategories: [ - "d25d609b-945f-4762-b55a-1c8fb220c43c", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - employee: "123c8r35-5kf5-12x5-r833-99bwf35210b5", - contact: "d2d5ea3c-b032-11ec-b909-0242ac120002", - taxRate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - description: "Cash payment for lunch", - exchangeRate: "2.9", - }, - ], - journalNumber: "42", - trackingCategories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - remoteWasDeleted: true, - postingStatus: "UNPOSTED", - accountingPeriod: "accounting_period", - remoteCreatedAt: new Date("2020-03-31T00:00:00.000Z"), - remoteUpdatedAt: new Date("2020-03-31T00:00:00.000Z"), - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - remoteFields: [ - { - remoteFieldClass: "remote_field_class", - value: "string", - }, - ], - }, - ], - }); - }); - - test("create", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - const rawRequestBody = { model: {} }; - const rawResponseBody = { - model: { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "088899", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - transaction_date: "2020-03-31T00:00:00Z", - payments: ["b26fd49a-cbae-470a-a8f8-bcbc119e0390"], - applied_payments: ["4311155d-f236-4a5d-9e0f-1cb167e38f95"], - memo: "Weekly Payment", - currency: "XUA", - exchange_rate: "2.9", - company: "company", - inclusive_of_tax: true, - lines: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "121222", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - account: "9d892439-5fab-4dbb-8bd8-34f7f96c7912", - net_amount: 25.54, - tracking_categories: [ - "d25d609b-945f-4762-b55a-1c8fb220c43c", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - employee: "123c8r35-5kf5-12x5-r833-99bwf35210b5", - project: "22e65a5d-2df5-4e6e-884a-e538d0339000", - contact: "d2d5ea3c-b032-11ec-b909-0242ac120002", - tax_rate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - description: "Cash payment for lunch", - exchange_rate: "2.9", - remote_was_deleted: false, - }, - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "121223", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - account: "f963f34d-3d2f-4f77-b557-cf36bc7e6498", - net_amount: 10, - tracking_categories: [ - "d25d609b-945f-4762-b55a-1c8fb220c43c", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - employee: "123c8r35-5kf5-12x5-r833-99bwf35210b5", - contact: "d2d5ea3c-b032-11ec-b909-0242ac120002", - tax_rate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - description: "Cash payment for lunch", - exchange_rate: "2.9", - }, - ], - journal_number: "42", - tracking_categories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - remote_was_deleted: true, - posting_status: "UNPOSTED", - accounting_period: "accounting_period", - remote_created_at: "2020-03-31T00:00:00Z", - remote_updated_at: "2020-03-31T00:00:00Z", - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - remote_fields: [{ remote_field_class: "remote_field_class", value: "string" }], - }, - warnings: [ - { - source: { pointer: "pointer" }, - title: "Unrecognized Field", - detail: "An unrecognized field, age, was passed in with request data.", - problem_type: "UNRECOGNIZED_FIELD", - }, - ], - errors: [ - { - source: { pointer: "pointer" }, - title: "Missing Required Field", - detail: "custom_fields is a required field on model.", - problem_type: "MISSING_REQUIRED_FIELD", - }, - ], - logs: [ - { - log_id: "99433219-8017-4acd-bb3c-ceb23d663832", - dashboard_view: "https://app.merge.dev/logs/99433219-8017-4acd-bb3c-ceb23d663832", - log_summary: { - url: "www.exampleintegration.com/api/v1/exampleapi", - method: "POST", - status_code: 200, - }, - }, - ], - }; - server - .mockEndpoint() - .post("/accounting/v1/journal-entries") - .jsonBody(rawRequestBody) - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.journalEntries.create({ - isDebugMode: true, - runAsync: true, - model: {}, - }); - expect(response).toEqual({ - model: { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "088899", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - transactionDate: new Date("2020-03-31T00:00:00.000Z"), - payments: ["b26fd49a-cbae-470a-a8f8-bcbc119e0390"], - appliedPayments: ["4311155d-f236-4a5d-9e0f-1cb167e38f95"], - memo: "Weekly Payment", - currency: "XUA", - exchangeRate: "2.9", - company: "company", - inclusiveOfTax: true, - lines: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "121222", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - account: "9d892439-5fab-4dbb-8bd8-34f7f96c7912", - netAmount: 25.54, - trackingCategories: [ - "d25d609b-945f-4762-b55a-1c8fb220c43c", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - employee: "123c8r35-5kf5-12x5-r833-99bwf35210b5", - project: "22e65a5d-2df5-4e6e-884a-e538d0339000", - contact: "d2d5ea3c-b032-11ec-b909-0242ac120002", - taxRate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - description: "Cash payment for lunch", - exchangeRate: "2.9", - remoteWasDeleted: false, - }, - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "121223", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - account: "f963f34d-3d2f-4f77-b557-cf36bc7e6498", - netAmount: 10, - trackingCategories: [ - "d25d609b-945f-4762-b55a-1c8fb220c43c", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - employee: "123c8r35-5kf5-12x5-r833-99bwf35210b5", - contact: "d2d5ea3c-b032-11ec-b909-0242ac120002", - taxRate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - description: "Cash payment for lunch", - exchangeRate: "2.9", - }, - ], - journalNumber: "42", - trackingCategories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - remoteWasDeleted: true, - postingStatus: "UNPOSTED", - accountingPeriod: "accounting_period", - remoteCreatedAt: new Date("2020-03-31T00:00:00.000Z"), - remoteUpdatedAt: new Date("2020-03-31T00:00:00.000Z"), - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - remoteFields: [ - { - remoteFieldClass: "remote_field_class", - value: "string", - }, - ], - }, - warnings: [ - { - source: { - pointer: "pointer", - }, - title: "Unrecognized Field", - detail: "An unrecognized field, age, was passed in with request data.", - problemType: "UNRECOGNIZED_FIELD", - }, - ], - errors: [ - { - source: { - pointer: "pointer", - }, - title: "Missing Required Field", - detail: "custom_fields is a required field on model.", - problemType: "MISSING_REQUIRED_FIELD", - }, - ], - logs: [ - { - logId: "99433219-8017-4acd-bb3c-ceb23d663832", - dashboardView: "https://app.merge.dev/logs/99433219-8017-4acd-bb3c-ceb23d663832", - logSummary: { - url: "www.exampleintegration.com/api/v1/exampleapi", - method: "POST", - statusCode: 200, - }, - }, - ], - }); - }); - - test("retrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "088899", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - transaction_date: "2020-03-31T00:00:00Z", - payments: ["b26fd49a-cbae-470a-a8f8-bcbc119e0390"], - applied_payments: ["4311155d-f236-4a5d-9e0f-1cb167e38f95"], - memo: "Weekly Payment", - currency: "XUA", - exchange_rate: "2.9", - company: "company", - inclusive_of_tax: true, - lines: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "121222", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - account: "9d892439-5fab-4dbb-8bd8-34f7f96c7912", - net_amount: 25.54, - tracking_categories: [ - "d25d609b-945f-4762-b55a-1c8fb220c43c", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - currency: "XUA", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - employee: "123c8r35-5kf5-12x5-r833-99bwf35210b5", - project: "22e65a5d-2df5-4e6e-884a-e538d0339000", - contact: "d2d5ea3c-b032-11ec-b909-0242ac120002", - tax_rate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - description: "Cash payment for lunch", - exchange_rate: "2.9", - remote_was_deleted: false, - remote_fields: [{ remote_field_class: "remote_field_class", value: "string" }], - }, - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "121223", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - account: "f963f34d-3d2f-4f77-b557-cf36bc7e6498", - net_amount: 10, - tracking_categories: [ - "d25d609b-945f-4762-b55a-1c8fb220c43c", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - currency: "XUA", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - employee: "123c8r35-5kf5-12x5-r833-99bwf35210b5", - project: "project", - contact: "d2d5ea3c-b032-11ec-b909-0242ac120002", - tax_rate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - description: "Cash payment for lunch", - exchange_rate: "2.9", - remote_was_deleted: true, - remote_fields: [{ remote_field_class: "remote_field_class", value: "string" }], - }, - ], - journal_number: "42", - tracking_categories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - remote_was_deleted: true, - posting_status: "UNPOSTED", - accounting_period: "accounting_period", - remote_created_at: "2020-03-31T00:00:00Z", - remote_updated_at: "2020-03-31T00:00:00Z", - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - remote_fields: [{ remote_field_class: "remote_field_class", value: "string" }], - }; - server - .mockEndpoint() - .get("/accounting/v1/journal-entries/id") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.journalEntries.retrieve("id", { - expand: "accounting_period", - includeRemoteData: true, - includeRemoteFields: true, - includeShellData: true, - }); - expect(response).toEqual({ - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "088899", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - transactionDate: new Date("2020-03-31T00:00:00.000Z"), - payments: ["b26fd49a-cbae-470a-a8f8-bcbc119e0390"], - appliedPayments: ["4311155d-f236-4a5d-9e0f-1cb167e38f95"], - memo: "Weekly Payment", - currency: "XUA", - exchangeRate: "2.9", - company: "company", - inclusiveOfTax: true, - lines: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "121222", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - account: "9d892439-5fab-4dbb-8bd8-34f7f96c7912", - netAmount: 25.54, - trackingCategories: [ - "d25d609b-945f-4762-b55a-1c8fb220c43c", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - currency: "XUA", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - employee: "123c8r35-5kf5-12x5-r833-99bwf35210b5", - project: "22e65a5d-2df5-4e6e-884a-e538d0339000", - contact: "d2d5ea3c-b032-11ec-b909-0242ac120002", - taxRate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - description: "Cash payment for lunch", - exchangeRate: "2.9", - remoteWasDeleted: false, - remoteFields: [ - { - remoteFieldClass: "remote_field_class", - value: "string", - }, - ], - }, - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "121223", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - account: "f963f34d-3d2f-4f77-b557-cf36bc7e6498", - netAmount: 10, - trackingCategories: [ - "d25d609b-945f-4762-b55a-1c8fb220c43c", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - currency: "XUA", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - employee: "123c8r35-5kf5-12x5-r833-99bwf35210b5", - project: "project", - contact: "d2d5ea3c-b032-11ec-b909-0242ac120002", - taxRate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - description: "Cash payment for lunch", - exchangeRate: "2.9", - remoteWasDeleted: true, - remoteFields: [ - { - remoteFieldClass: "remote_field_class", - value: "string", - }, - ], - }, - ], - journalNumber: "42", - trackingCategories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - remoteWasDeleted: true, - postingStatus: "UNPOSTED", - accountingPeriod: "accounting_period", - remoteCreatedAt: new Date("2020-03-31T00:00:00.000Z"), - remoteUpdatedAt: new Date("2020-03-31T00:00:00.000Z"), - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - remoteFields: [ - { - remoteFieldClass: "remote_field_class", - value: "string", - }, - ], - }); - }); - - test("linesRemoteFieldClassesList", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "id", - display_name: "display_name", - remote_key_name: "remote_key_name", - description: "description", - is_custom: true, - is_common_model_field: true, - is_required: true, - field_type: "string", - field_format: "string", - field_choices: ["field_choices"], - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/journal-entries/lines/remote-field-classes") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.journalEntries.linesRemoteFieldClassesList({ - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - isCommonModelField: true, - isCustom: true, - pageSize: 1, - }); - expect(response).toEqual({ - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "id", - displayName: "display_name", - remoteKeyName: "remote_key_name", - description: "description", - isCustom: true, - isCommonModelField: true, - isRequired: true, - fieldType: "string", - fieldFormat: "string", - fieldChoices: ["field_choices"], - }, - ], - }); - }); - - test("metaPostRetrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - request_schema: { - type: "object", - properties: { - model: { - type: "object", - required: [ - "last_name", - "first_name", - "merge_categories", - "new_york_city_neighborhood", - "favorite_tv_shows", - "favorite_watch", - ], - properties: { - email_addresses: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - email_address_type: { type: "string", title: "email_address_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "email_addresses", - description: "Array of email_addresses objects", - }, - urls: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - url_type: { type: "string", title: "url_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "urls", - description: "Array of urls objects", - }, - first_name: { type: "string", title: "first_name", description: "The first name." }, - last_name: { type: "string", title: "last_name", description: "The last name." }, - phone_numbers: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - phone_number_type: { type: "string", title: "phone_number_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "phone_numbers", - description: "Array of phone_numbers objects", - }, - tags: { - type: "array", - items: { type: "string", format: "uuid" }, - title: "tags", - description: "Array of tags names", - }, - attachments: { - type: "array", - items: { - type: "object", - properties: { - id: { type: "string", title: "id" }, - file_url: { type: "string", title: "file_url" }, - file_name: { type: "string", title: "file_name" }, - attachment_type: { type: "string", title: "attachment_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "attachments", - description: "Array of attachments objects ", - }, - merge_categories: { - type: "array", - categories: { - type: "string", - enum: [ - "HRIS", - "ATS", - "Accounting", - "Ticketing", - "File Storage", - "CRM", - "Marketing Automation", - ], - enum_information: [ - { value: "HRIS", description: "Merge HRIS Category" }, - { value: "ATS", description: "Merge ATS Category" }, - { value: "Accounting", description: "Merge Accounting Category" }, - { value: "Ticketing", description: "Merge Ticketing Category" }, - { value: "File Storage", description: "Merge File Storage Category" }, - { value: "CRM", description: "Merge CRM Category" }, - { - value: "Marketing Automation", - description: "Merge Marketing Automation Category", - }, - ], - }, - title: "Merge Categories", - description: "Array of Merge's Unified API Categories", - }, - new_york_city_neighborhood: { - type: "string", - title: "Borough", - description: "One of the 5 Boroughs of New York City", - }, - favorite_tv_shows: { - type: "array", - items: { type: "string", format: "uuid" }, - title: "Favorite TV Shows", - description: "Array of TV Show objects on merge.tv_shows", - }, - favorite_watch: { - type: "string", - title: "Favorite Watch", - description: "Favorite watch of all time", - }, - }, - }, - }, - }, - remote_field_classes: { key: "value" }, - status: { linked_account_status: "linked_account_status", can_make_request: true }, - has_conditional_params: true, - has_required_linked_account_params: true, - }; - server - .mockEndpoint() - .get("/accounting/v1/journal-entries/meta/post") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.journalEntries.metaPostRetrieve(); - expect(response).toEqual({ - requestSchema: { - type: "object", - properties: { - model: { - type: "object", - required: [ - "last_name", - "first_name", - "merge_categories", - "new_york_city_neighborhood", - "favorite_tv_shows", - "favorite_watch", - ], - properties: { - email_addresses: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - email_address_type: { - type: "string", - title: "email_address_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "email_addresses", - description: "Array of email_addresses objects", - }, - urls: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - url_type: { - type: "string", - title: "url_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "urls", - description: "Array of urls objects", - }, - first_name: { - type: "string", - title: "first_name", - description: "The first name.", - }, - last_name: { - type: "string", - title: "last_name", - description: "The last name.", - }, - phone_numbers: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - phone_number_type: { - type: "string", - title: "phone_number_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "phone_numbers", - description: "Array of phone_numbers objects", - }, - tags: { - type: "array", - items: { - type: "string", - format: "uuid", - }, - title: "tags", - description: "Array of tags names", - }, - attachments: { - type: "array", - items: { - type: "object", - properties: { - id: { - type: "string", - title: "id", - }, - file_url: { - type: "string", - title: "file_url", - }, - file_name: { - type: "string", - title: "file_name", - }, - attachment_type: { - type: "string", - title: "attachment_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "attachments", - description: "Array of attachments objects ", - }, - merge_categories: { - type: "array", - categories: { - type: "string", - enum: [ - "HRIS", - "ATS", - "Accounting", - "Ticketing", - "File Storage", - "CRM", - "Marketing Automation", - ], - enum_information: [ - { - value: "HRIS", - description: "Merge HRIS Category", - }, - { - value: "ATS", - description: "Merge ATS Category", - }, - { - value: "Accounting", - description: "Merge Accounting Category", - }, - { - value: "Ticketing", - description: "Merge Ticketing Category", - }, - { - value: "File Storage", - description: "Merge File Storage Category", - }, - { - value: "CRM", - description: "Merge CRM Category", - }, - { - value: "Marketing Automation", - description: "Merge Marketing Automation Category", - }, - ], - }, - title: "Merge Categories", - description: "Array of Merge's Unified API Categories", - }, - new_york_city_neighborhood: { - type: "string", - title: "Borough", - description: "One of the 5 Boroughs of New York City", - }, - favorite_tv_shows: { - type: "array", - items: { - type: "string", - format: "uuid", - }, - title: "Favorite TV Shows", - description: "Array of TV Show objects on merge.tv_shows", - }, - favorite_watch: { - type: "string", - title: "Favorite Watch", - description: "Favorite watch of all time", - }, - }, - }, - }, - }, - remoteFieldClasses: { - key: "value", - }, - status: { - linkedAccountStatus: "linked_account_status", - canMakeRequest: true, - }, - hasConditionalParams: true, - hasRequiredLinkedAccountParams: true, - }); - }); - - test("remoteFieldClassesList", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "id", - display_name: "display_name", - remote_key_name: "remote_key_name", - description: "description", - is_custom: true, - is_common_model_field: true, - is_required: true, - field_type: "string", - field_format: "string", - field_choices: ["field_choices"], - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/journal-entries/remote-field-classes") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.journalEntries.remoteFieldClassesList({ - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - isCommonModelField: true, - isCustom: true, - pageSize: 1, - }); - expect(response).toEqual({ - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "id", - displayName: "display_name", - remoteKeyName: "remote_key_name", - description: "description", - isCustom: true, - isCommonModelField: true, - isRequired: true, - fieldType: "string", - fieldFormat: "string", - fieldChoices: ["field_choices"], - }, - ], - }); - }); -}); diff --git a/tests/wire/accounting/linkToken.test.ts b/tests/wire/accounting/linkToken.test.ts deleted file mode 100644 index a0fcb84da..000000000 --- a/tests/wire/accounting/linkToken.test.ts +++ /dev/null @@ -1,47 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import { MergeClient } from "../../../src/Client"; -import { mockServerPool } from "../../mock-server/MockServerPool"; - -describe("LinkTokenClient", () => { - test("create", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - const rawRequestBody = { - end_user_email_address: "example@gmail.com", - end_user_organization_name: "Test Organization", - end_user_origin_id: "12345", - categories: ["hris", "ats"], - }; - const rawResponseBody = { - link_token: "necdP7FtdASl1fQwm62be2_dM4wBG8_GactqoUV0", - integration_name: "Lever", - magic_link_url: "https://link.merge.dev/asdfjkl12345jsndfgi2i83n", - }; - server - .mockEndpoint() - .post("/accounting/v1/link-token") - .jsonBody(rawRequestBody) - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.linkToken.create({ - endUserEmailAddress: "example@gmail.com", - endUserOrganizationName: "Test Organization", - endUserOriginId: "12345", - categories: ["hris", "ats"], - }); - expect(response).toEqual({ - linkToken: "necdP7FtdASl1fQwm62be2_dM4wBG8_GactqoUV0", - integrationName: "Lever", - magicLinkUrl: "https://link.merge.dev/asdfjkl12345jsndfgi2i83n", - }); - }); -}); diff --git a/tests/wire/accounting/linkedAccounts.test.ts b/tests/wire/accounting/linkedAccounts.test.ts deleted file mode 100644 index fbe46bcb1..000000000 --- a/tests/wire/accounting/linkedAccounts.test.ts +++ /dev/null @@ -1,114 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import { MergeClient } from "../../../src/Client"; -import { mockServerPool } from "../../mock-server/MockServerPool"; - -describe("LinkedAccountsClient", () => { - test("list", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "e59b1821-f85c-4e28-a6b3-1804156f3563", - category: "hris", - status: "COMPLETE", - status_detail: "Invalid login credentials", - end_user_origin_id: "3ac95cde-6c7f-4eef-afec-be710b42308d", - end_user_organization_name: "Foo Bar, LLC", - end_user_email_address: "hradmin@foobar.dev", - subdomain: "foobar", - webhook_listener_url: "https://api.merge.dev/api/integrations/webhook-listener/7fc3mee0UW8ecV4", - is_duplicate: true, - integration: { - name: "name", - categories: ["hris"], - color: "color", - slug: "slug", - passthrough_available: true, - available_model_operations: [ - { - model_name: "Candidate", - available_operations: ["FETCH", "CREATE"], - required_post_parameters: ["remote_user_id"], - supported_fields: ["first_name", "last_name", "company", "title"], - }, - ], - }, - account_type: "PRODUCTION", - completed_at: "2024-08-26T20:11:19Z", - integration_specific_fields: { integration_specific_field: "Varies by platform" }, - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/linked-accounts") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.linkedAccounts.list({ - category: "accounting", - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - endUserEmailAddress: "end_user_email_address", - endUserOrganizationName: "end_user_organization_name", - endUserOriginId: "end_user_origin_id", - endUserOriginIds: "end_user_origin_ids", - id: "id", - ids: "ids", - includeDuplicates: true, - integrationName: "integration_name", - isTestAccount: "is_test_account", - pageSize: 1, - status: "status", - }); - expect(response).toEqual({ - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "e59b1821-f85c-4e28-a6b3-1804156f3563", - category: "hris", - status: "COMPLETE", - statusDetail: "Invalid login credentials", - endUserOriginId: "3ac95cde-6c7f-4eef-afec-be710b42308d", - endUserOrganizationName: "Foo Bar, LLC", - endUserEmailAddress: "hradmin@foobar.dev", - subdomain: "foobar", - webhookListenerUrl: "https://api.merge.dev/api/integrations/webhook-listener/7fc3mee0UW8ecV4", - isDuplicate: true, - integration: { - name: "name", - categories: ["hris"], - color: "color", - slug: "slug", - passthroughAvailable: true, - availableModelOperations: [ - { - modelName: "Candidate", - availableOperations: ["FETCH", "CREATE"], - requiredPostParameters: ["remote_user_id"], - supportedFields: ["first_name", "last_name", "company", "title"], - }, - ], - }, - accountType: "PRODUCTION", - completedAt: new Date("2024-08-26T20:11:19.000Z"), - integrationSpecificFields: { - integration_specific_field: "Varies by platform", - }, - }, - ], - }); - }); -}); diff --git a/tests/wire/accounting/passthrough.test.ts b/tests/wire/accounting/passthrough.test.ts deleted file mode 100644 index 40e699691..000000000 --- a/tests/wire/accounting/passthrough.test.ts +++ /dev/null @@ -1,69 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import { MergeClient } from "../../../src/Client"; -import { mockServerPool } from "../../mock-server/MockServerPool"; - -describe("PassthroughClient", () => { - test("create", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - const rawRequestBody = { method: "GET", path: "/scooters" }; - const rawResponseBody = { - method: "GET", - path: "/scooters", - status: 200, - response: { - scooters: [ - { company: "Lime", model: "Gen 2.5" }, - { company: "Bird", model: "Bird Zero" }, - ], - }, - response_headers: { "X-Page-Token": "value" }, - response_type: "JSON", - headers: { "EXTRA-HEADER": "value", Authorization: "" }, - }; - server - .mockEndpoint() - .post("/accounting/v1/passthrough") - .jsonBody(rawRequestBody) - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.passthrough.create({ - method: "GET", - path: "/scooters", - }); - expect(response).toEqual({ - method: "GET", - path: "/scooters", - status: 200, - response: { - scooters: [ - { - company: "Lime", - model: "Gen 2.5", - }, - { - company: "Bird", - model: "Bird Zero", - }, - ], - }, - responseHeaders: { - "X-Page-Token": "value", - }, - responseType: "JSON", - headers: { - "EXTRA-HEADER": "value", - Authorization: "", - }, - }); - }); -}); diff --git a/tests/wire/accounting/paymentMethods.test.ts b/tests/wire/accounting/paymentMethods.test.ts deleted file mode 100644 index ee7f0c5e2..000000000 --- a/tests/wire/accounting/paymentMethods.test.ts +++ /dev/null @@ -1,145 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import { MergeClient } from "../../../src/Client"; -import { mockServerPool } from "../../mock-server/MockServerPool"; - -describe("PaymentMethodsClient", () => { - test("list", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "088899", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - method_type: "CREDIT_CARD", - name: "John Smith's Credit Card", - is_active: true, - remote_updated_at: "2021-09-15T00:00:00Z", - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/payment-methods") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.paymentMethods.list({ - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - pageSize: 1, - }); - expect(response).toEqual({ - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "088899", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - methodType: "CREDIT_CARD", - name: "John Smith's Credit Card", - isActive: true, - remoteUpdatedAt: new Date("2021-09-15T00:00:00.000Z"), - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - }, - ], - }); - }); - - test("retrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "088899", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - method_type: "CREDIT_CARD", - name: "John Smith's Credit Card", - is_active: true, - remote_updated_at: "2021-09-15T00:00:00Z", - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - }; - server - .mockEndpoint() - .get("/accounting/v1/payment-methods/id") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.paymentMethods.retrieve("id", { - includeRemoteData: true, - includeShellData: true, - }); - expect(response).toEqual({ - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "088899", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - methodType: "CREDIT_CARD", - name: "John Smith's Credit Card", - isActive: true, - remoteUpdatedAt: new Date("2021-09-15T00:00:00.000Z"), - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - }); - }); -}); diff --git a/tests/wire/accounting/paymentTerms.test.ts b/tests/wire/accounting/paymentTerms.test.ts deleted file mode 100644 index 7b05d7145..000000000 --- a/tests/wire/accounting/paymentTerms.test.ts +++ /dev/null @@ -1,155 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import { MergeClient } from "../../../src/Client"; -import { mockServerPool } from "../../mock-server/MockServerPool"; - -describe("PaymentTermsClient", () => { - test("list", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "088899", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - name: "Net 30", - is_active: true, - company: "company", - days_until_due: 30, - discount_days: 15, - remote_last_modified_at: "2024-10-16T00:00:00Z", - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/payment-terms") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.paymentTerms.list({ - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - expand: "company", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - pageSize: 1, - }); - expect(response).toEqual({ - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "088899", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - name: "Net 30", - isActive: true, - company: "company", - daysUntilDue: 30, - discountDays: 15, - remoteLastModifiedAt: new Date("2024-10-16T00:00:00.000Z"), - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - }, - ], - }); - }); - - test("retrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "088899", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - name: "Net 30", - is_active: true, - company: "company", - days_until_due: 30, - discount_days: 15, - remote_last_modified_at: "2024-10-16T00:00:00Z", - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - }; - server - .mockEndpoint() - .get("/accounting/v1/payment-terms/id") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.paymentTerms.retrieve("id", { - expand: "company", - includeRemoteData: true, - includeShellData: true, - }); - expect(response).toEqual({ - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "088899", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - name: "Net 30", - isActive: true, - company: "company", - daysUntilDue: 30, - discountDays: 15, - remoteLastModifiedAt: new Date("2024-10-16T00:00:00.000Z"), - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - }); - }); -}); diff --git a/tests/wire/accounting/payments.test.ts b/tests/wire/accounting/payments.test.ts deleted file mode 100644 index d51a9570b..000000000 --- a/tests/wire/accounting/payments.test.ts +++ /dev/null @@ -1,1689 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import { MergeClient } from "../../../src/Client"; -import { mockServerPool } from "../../mock-server/MockServerPool"; - -describe("PaymentsClient", () => { - test("list", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "b26fd49a-cbae-470a-a8f8-bcbc119e0390", - remote_id: "987300", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - transaction_date: "2020-03-31T00:00:00Z", - contact: "contact", - account: "account", - payment_method: "payment_method", - currency: "XUA", - exchange_rate: "2.9", - company: "company", - total_amount: 50, - type: "ACCOUNTS_PAYABLE", - tracking_categories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - accounting_period: "accounting_period", - applied_to_lines: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "234", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - applied_amount: "25", - applied_date: "2020-03-31T00:00:00Z", - related_object_id: "a47e11b6-c73b-4a0c-be31-130fc48177fa", - related_object_type: "INVOICE", - }, - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "235", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - applied_amount: "25", - applied_date: "2020-03-31T00:00:00Z", - related_object_id: "9b96a886-29a5-452b-8733-2a1e03497cf4", - related_object_type: "CREDIT_NOTE", - }, - ], - remote_updated_at: "2020-03-31T00:00:00Z", - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - remote_fields: [{ remote_field_class: "remote_field_class", value: "string" }], - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/payments") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.payments.list({ - accountId: "account_id", - companyId: "company_id", - contactId: "contact_id", - createdAfter: new Date("2024-01-15T09:30:00.000Z"), - createdBefore: new Date("2024-01-15T09:30:00.000Z"), - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - expand: "account", - includeDeletedData: true, - includeRemoteData: true, - includeRemoteFields: true, - includeShellData: true, - modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - pageSize: 1, - remoteId: "remote_id", - transactionDateAfter: new Date("2024-01-15T09:30:00.000Z"), - transactionDateBefore: new Date("2024-01-15T09:30:00.000Z"), - }); - expect(response).toEqual({ - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "b26fd49a-cbae-470a-a8f8-bcbc119e0390", - remoteId: "987300", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - transactionDate: new Date("2020-03-31T00:00:00.000Z"), - contact: "contact", - account: "account", - paymentMethod: "payment_method", - currency: "XUA", - exchangeRate: "2.9", - company: "company", - totalAmount: 50, - type: "ACCOUNTS_PAYABLE", - trackingCategories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - accountingPeriod: "accounting_period", - appliedToLines: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "234", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - appliedAmount: "25", - appliedDate: new Date("2020-03-31T00:00:00.000Z"), - relatedObjectId: "a47e11b6-c73b-4a0c-be31-130fc48177fa", - relatedObjectType: "INVOICE", - }, - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "235", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - appliedAmount: "25", - appliedDate: new Date("2020-03-31T00:00:00.000Z"), - relatedObjectId: "9b96a886-29a5-452b-8733-2a1e03497cf4", - relatedObjectType: "CREDIT_NOTE", - }, - ], - remoteUpdatedAt: new Date("2020-03-31T00:00:00.000Z"), - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - remoteFields: [ - { - remoteFieldClass: "remote_field_class", - value: "string", - }, - ], - }, - ], - }); - }); - - test("create", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - const rawRequestBody = { model: {} }; - const rawResponseBody = { - model: { - id: "b26fd49a-cbae-470a-a8f8-bcbc119e0390", - remote_id: "987300", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - transaction_date: "2020-03-31T00:00:00Z", - contact: "contact", - account: "account", - payment_method: "payment_method", - currency: "XUA", - exchange_rate: "2.9", - company: "company", - total_amount: 50, - type: "ACCOUNTS_PAYABLE", - tracking_categories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - accounting_period: "accounting_period", - applied_to_lines: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "234", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - applied_amount: "25", - applied_date: "2020-03-31T00:00:00Z", - related_object_id: "a47e11b6-c73b-4a0c-be31-130fc48177fa", - related_object_type: "INVOICE", - }, - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "235", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - applied_amount: "25", - applied_date: "2020-03-31T00:00:00Z", - related_object_id: "9b96a886-29a5-452b-8733-2a1e03497cf4", - related_object_type: "CREDIT_NOTE", - }, - ], - remote_updated_at: "2020-03-31T00:00:00Z", - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - remote_fields: [{ remote_field_class: "remote_field_class", value: "string" }], - }, - warnings: [ - { - source: { pointer: "pointer" }, - title: "Unrecognized Field", - detail: "An unrecognized field, age, was passed in with request data.", - problem_type: "UNRECOGNIZED_FIELD", - }, - ], - errors: [ - { - source: { pointer: "pointer" }, - title: "Missing Required Field", - detail: "custom_fields is a required field on model.", - problem_type: "MISSING_REQUIRED_FIELD", - }, - ], - logs: [ - { - log_id: "99433219-8017-4acd-bb3c-ceb23d663832", - dashboard_view: "https://app.merge.dev/logs/99433219-8017-4acd-bb3c-ceb23d663832", - log_summary: { - url: "www.exampleintegration.com/api/v1/exampleapi", - method: "POST", - status_code: 200, - }, - }, - ], - }; - server - .mockEndpoint() - .post("/accounting/v1/payments") - .jsonBody(rawRequestBody) - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.payments.create({ - isDebugMode: true, - runAsync: true, - model: {}, - }); - expect(response).toEqual({ - model: { - id: "b26fd49a-cbae-470a-a8f8-bcbc119e0390", - remoteId: "987300", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - transactionDate: new Date("2020-03-31T00:00:00.000Z"), - contact: "contact", - account: "account", - paymentMethod: "payment_method", - currency: "XUA", - exchangeRate: "2.9", - company: "company", - totalAmount: 50, - type: "ACCOUNTS_PAYABLE", - trackingCategories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - accountingPeriod: "accounting_period", - appliedToLines: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "234", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - appliedAmount: "25", - appliedDate: new Date("2020-03-31T00:00:00.000Z"), - relatedObjectId: "a47e11b6-c73b-4a0c-be31-130fc48177fa", - relatedObjectType: "INVOICE", - }, - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "235", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - appliedAmount: "25", - appliedDate: new Date("2020-03-31T00:00:00.000Z"), - relatedObjectId: "9b96a886-29a5-452b-8733-2a1e03497cf4", - relatedObjectType: "CREDIT_NOTE", - }, - ], - remoteUpdatedAt: new Date("2020-03-31T00:00:00.000Z"), - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - remoteFields: [ - { - remoteFieldClass: "remote_field_class", - value: "string", - }, - ], - }, - warnings: [ - { - source: { - pointer: "pointer", - }, - title: "Unrecognized Field", - detail: "An unrecognized field, age, was passed in with request data.", - problemType: "UNRECOGNIZED_FIELD", - }, - ], - errors: [ - { - source: { - pointer: "pointer", - }, - title: "Missing Required Field", - detail: "custom_fields is a required field on model.", - problemType: "MISSING_REQUIRED_FIELD", - }, - ], - logs: [ - { - logId: "99433219-8017-4acd-bb3c-ceb23d663832", - dashboardView: "https://app.merge.dev/logs/99433219-8017-4acd-bb3c-ceb23d663832", - logSummary: { - url: "www.exampleintegration.com/api/v1/exampleapi", - method: "POST", - statusCode: 200, - }, - }, - ], - }); - }); - - test("retrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - id: "b26fd49a-cbae-470a-a8f8-bcbc119e0390", - remote_id: "987300", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - transaction_date: "2020-03-31T00:00:00Z", - contact: "contact", - account: "account", - payment_method: "payment_method", - currency: "XUA", - exchange_rate: "2.9", - company: "company", - total_amount: 50, - type: "ACCOUNTS_PAYABLE", - tracking_categories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - accounting_period: "accounting_period", - applied_to_lines: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "234", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - applied_amount: "25", - applied_date: "2020-03-31T00:00:00Z", - related_object_id: "a47e11b6-c73b-4a0c-be31-130fc48177fa", - related_object_type: "INVOICE", - }, - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "235", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - applied_amount: "25", - applied_date: "2020-03-31T00:00:00Z", - related_object_id: "9b96a886-29a5-452b-8733-2a1e03497cf4", - related_object_type: "CREDIT_NOTE", - }, - ], - remote_updated_at: "2020-03-31T00:00:00Z", - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - remote_fields: [{ remote_field_class: "remote_field_class", value: "string" }], - }; - server - .mockEndpoint() - .get("/accounting/v1/payments/id") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.payments.retrieve("id", { - expand: "account", - includeRemoteData: true, - includeRemoteFields: true, - includeShellData: true, - }); - expect(response).toEqual({ - id: "b26fd49a-cbae-470a-a8f8-bcbc119e0390", - remoteId: "987300", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - transactionDate: new Date("2020-03-31T00:00:00.000Z"), - contact: "contact", - account: "account", - paymentMethod: "payment_method", - currency: "XUA", - exchangeRate: "2.9", - company: "company", - totalAmount: 50, - type: "ACCOUNTS_PAYABLE", - trackingCategories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - accountingPeriod: "accounting_period", - appliedToLines: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "234", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - appliedAmount: "25", - appliedDate: new Date("2020-03-31T00:00:00.000Z"), - relatedObjectId: "a47e11b6-c73b-4a0c-be31-130fc48177fa", - relatedObjectType: "INVOICE", - }, - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "235", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - appliedAmount: "25", - appliedDate: new Date("2020-03-31T00:00:00.000Z"), - relatedObjectId: "9b96a886-29a5-452b-8733-2a1e03497cf4", - relatedObjectType: "CREDIT_NOTE", - }, - ], - remoteUpdatedAt: new Date("2020-03-31T00:00:00.000Z"), - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - remoteFields: [ - { - remoteFieldClass: "remote_field_class", - value: "string", - }, - ], - }); - }); - - test("partialUpdate", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - const rawRequestBody = { model: {} }; - const rawResponseBody = { - model: { - id: "b26fd49a-cbae-470a-a8f8-bcbc119e0390", - remote_id: "987300", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - transaction_date: "2020-03-31T00:00:00Z", - contact: "contact", - account: "account", - payment_method: "payment_method", - currency: "XUA", - exchange_rate: "2.9", - company: "company", - total_amount: 50, - type: "ACCOUNTS_PAYABLE", - tracking_categories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - accounting_period: "accounting_period", - applied_to_lines: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "234", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - applied_amount: "25", - applied_date: "2020-03-31T00:00:00Z", - related_object_id: "a47e11b6-c73b-4a0c-be31-130fc48177fa", - related_object_type: "INVOICE", - }, - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "235", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - applied_amount: "25", - applied_date: "2020-03-31T00:00:00Z", - related_object_id: "9b96a886-29a5-452b-8733-2a1e03497cf4", - related_object_type: "CREDIT_NOTE", - }, - ], - remote_updated_at: "2020-03-31T00:00:00Z", - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - remote_fields: [{ remote_field_class: "remote_field_class", value: "string" }], - }, - warnings: [ - { - source: { pointer: "pointer" }, - title: "Unrecognized Field", - detail: "An unrecognized field, age, was passed in with request data.", - problem_type: "UNRECOGNIZED_FIELD", - }, - ], - errors: [ - { - source: { pointer: "pointer" }, - title: "Missing Required Field", - detail: "custom_fields is a required field on model.", - problem_type: "MISSING_REQUIRED_FIELD", - }, - ], - logs: [ - { - log_id: "99433219-8017-4acd-bb3c-ceb23d663832", - dashboard_view: "https://app.merge.dev/logs/99433219-8017-4acd-bb3c-ceb23d663832", - log_summary: { - url: "www.exampleintegration.com/api/v1/exampleapi", - method: "POST", - status_code: 200, - }, - }, - ], - }; - server - .mockEndpoint() - .patch("/accounting/v1/payments/id") - .jsonBody(rawRequestBody) - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.payments.partialUpdate("id", { - isDebugMode: true, - runAsync: true, - model: {}, - }); - expect(response).toEqual({ - model: { - id: "b26fd49a-cbae-470a-a8f8-bcbc119e0390", - remoteId: "987300", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - transactionDate: new Date("2020-03-31T00:00:00.000Z"), - contact: "contact", - account: "account", - paymentMethod: "payment_method", - currency: "XUA", - exchangeRate: "2.9", - company: "company", - totalAmount: 50, - type: "ACCOUNTS_PAYABLE", - trackingCategories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - accountingPeriod: "accounting_period", - appliedToLines: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "234", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - appliedAmount: "25", - appliedDate: new Date("2020-03-31T00:00:00.000Z"), - relatedObjectId: "a47e11b6-c73b-4a0c-be31-130fc48177fa", - relatedObjectType: "INVOICE", - }, - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "235", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - appliedAmount: "25", - appliedDate: new Date("2020-03-31T00:00:00.000Z"), - relatedObjectId: "9b96a886-29a5-452b-8733-2a1e03497cf4", - relatedObjectType: "CREDIT_NOTE", - }, - ], - remoteUpdatedAt: new Date("2020-03-31T00:00:00.000Z"), - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - remoteFields: [ - { - remoteFieldClass: "remote_field_class", - value: "string", - }, - ], - }, - warnings: [ - { - source: { - pointer: "pointer", - }, - title: "Unrecognized Field", - detail: "An unrecognized field, age, was passed in with request data.", - problemType: "UNRECOGNIZED_FIELD", - }, - ], - errors: [ - { - source: { - pointer: "pointer", - }, - title: "Missing Required Field", - detail: "custom_fields is a required field on model.", - problemType: "MISSING_REQUIRED_FIELD", - }, - ], - logs: [ - { - logId: "99433219-8017-4acd-bb3c-ceb23d663832", - dashboardView: "https://app.merge.dev/logs/99433219-8017-4acd-bb3c-ceb23d663832", - logSummary: { - url: "www.exampleintegration.com/api/v1/exampleapi", - method: "POST", - statusCode: 200, - }, - }, - ], - }); - }); - - test("lineItemsRemoteFieldClassesList", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "id", - display_name: "display_name", - remote_key_name: "remote_key_name", - description: "description", - is_custom: true, - is_common_model_field: true, - is_required: true, - field_type: "string", - field_format: "string", - field_choices: ["field_choices"], - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/payments/line-items/remote-field-classes") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.payments.lineItemsRemoteFieldClassesList({ - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - isCommonModelField: true, - isCustom: true, - pageSize: 1, - }); - expect(response).toEqual({ - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "id", - displayName: "display_name", - remoteKeyName: "remote_key_name", - description: "description", - isCustom: true, - isCommonModelField: true, - isRequired: true, - fieldType: "string", - fieldFormat: "string", - fieldChoices: ["field_choices"], - }, - ], - }); - }); - - test("metaPatchRetrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - request_schema: { - type: "object", - properties: { - model: { - type: "object", - required: [ - "last_name", - "first_name", - "merge_categories", - "new_york_city_neighborhood", - "favorite_tv_shows", - "favorite_watch", - ], - properties: { - email_addresses: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - email_address_type: { type: "string", title: "email_address_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "email_addresses", - description: "Array of email_addresses objects", - }, - urls: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - url_type: { type: "string", title: "url_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "urls", - description: "Array of urls objects", - }, - first_name: { type: "string", title: "first_name", description: "The first name." }, - last_name: { type: "string", title: "last_name", description: "The last name." }, - phone_numbers: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - phone_number_type: { type: "string", title: "phone_number_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "phone_numbers", - description: "Array of phone_numbers objects", - }, - tags: { - type: "array", - items: { type: "string", format: "uuid" }, - title: "tags", - description: "Array of tags names", - }, - attachments: { - type: "array", - items: { - type: "object", - properties: { - id: { type: "string", title: "id" }, - file_url: { type: "string", title: "file_url" }, - file_name: { type: "string", title: "file_name" }, - attachment_type: { type: "string", title: "attachment_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "attachments", - description: "Array of attachments objects ", - }, - merge_categories: { - type: "array", - categories: { - type: "string", - enum: [ - "HRIS", - "ATS", - "Accounting", - "Ticketing", - "File Storage", - "CRM", - "Marketing Automation", - ], - enum_information: [ - { value: "HRIS", description: "Merge HRIS Category" }, - { value: "ATS", description: "Merge ATS Category" }, - { value: "Accounting", description: "Merge Accounting Category" }, - { value: "Ticketing", description: "Merge Ticketing Category" }, - { value: "File Storage", description: "Merge File Storage Category" }, - { value: "CRM", description: "Merge CRM Category" }, - { - value: "Marketing Automation", - description: "Merge Marketing Automation Category", - }, - ], - }, - title: "Merge Categories", - description: "Array of Merge's Unified API Categories", - }, - new_york_city_neighborhood: { - type: "string", - title: "Borough", - description: "One of the 5 Boroughs of New York City", - }, - favorite_tv_shows: { - type: "array", - items: { type: "string", format: "uuid" }, - title: "Favorite TV Shows", - description: "Array of TV Show objects on merge.tv_shows", - }, - favorite_watch: { - type: "string", - title: "Favorite Watch", - description: "Favorite watch of all time", - }, - }, - }, - }, - }, - remote_field_classes: { key: "value" }, - status: { linked_account_status: "linked_account_status", can_make_request: true }, - has_conditional_params: true, - has_required_linked_account_params: true, - }; - server - .mockEndpoint() - .get("/accounting/v1/payments/meta/patch/id") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.payments.metaPatchRetrieve("id"); - expect(response).toEqual({ - requestSchema: { - type: "object", - properties: { - model: { - type: "object", - required: [ - "last_name", - "first_name", - "merge_categories", - "new_york_city_neighborhood", - "favorite_tv_shows", - "favorite_watch", - ], - properties: { - email_addresses: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - email_address_type: { - type: "string", - title: "email_address_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "email_addresses", - description: "Array of email_addresses objects", - }, - urls: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - url_type: { - type: "string", - title: "url_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "urls", - description: "Array of urls objects", - }, - first_name: { - type: "string", - title: "first_name", - description: "The first name.", - }, - last_name: { - type: "string", - title: "last_name", - description: "The last name.", - }, - phone_numbers: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - phone_number_type: { - type: "string", - title: "phone_number_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "phone_numbers", - description: "Array of phone_numbers objects", - }, - tags: { - type: "array", - items: { - type: "string", - format: "uuid", - }, - title: "tags", - description: "Array of tags names", - }, - attachments: { - type: "array", - items: { - type: "object", - properties: { - id: { - type: "string", - title: "id", - }, - file_url: { - type: "string", - title: "file_url", - }, - file_name: { - type: "string", - title: "file_name", - }, - attachment_type: { - type: "string", - title: "attachment_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "attachments", - description: "Array of attachments objects ", - }, - merge_categories: { - type: "array", - categories: { - type: "string", - enum: [ - "HRIS", - "ATS", - "Accounting", - "Ticketing", - "File Storage", - "CRM", - "Marketing Automation", - ], - enum_information: [ - { - value: "HRIS", - description: "Merge HRIS Category", - }, - { - value: "ATS", - description: "Merge ATS Category", - }, - { - value: "Accounting", - description: "Merge Accounting Category", - }, - { - value: "Ticketing", - description: "Merge Ticketing Category", - }, - { - value: "File Storage", - description: "Merge File Storage Category", - }, - { - value: "CRM", - description: "Merge CRM Category", - }, - { - value: "Marketing Automation", - description: "Merge Marketing Automation Category", - }, - ], - }, - title: "Merge Categories", - description: "Array of Merge's Unified API Categories", - }, - new_york_city_neighborhood: { - type: "string", - title: "Borough", - description: "One of the 5 Boroughs of New York City", - }, - favorite_tv_shows: { - type: "array", - items: { - type: "string", - format: "uuid", - }, - title: "Favorite TV Shows", - description: "Array of TV Show objects on merge.tv_shows", - }, - favorite_watch: { - type: "string", - title: "Favorite Watch", - description: "Favorite watch of all time", - }, - }, - }, - }, - }, - remoteFieldClasses: { - key: "value", - }, - status: { - linkedAccountStatus: "linked_account_status", - canMakeRequest: true, - }, - hasConditionalParams: true, - hasRequiredLinkedAccountParams: true, - }); - }); - - test("metaPostRetrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - request_schema: { - type: "object", - properties: { - model: { - type: "object", - required: [ - "last_name", - "first_name", - "merge_categories", - "new_york_city_neighborhood", - "favorite_tv_shows", - "favorite_watch", - ], - properties: { - email_addresses: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - email_address_type: { type: "string", title: "email_address_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "email_addresses", - description: "Array of email_addresses objects", - }, - urls: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - url_type: { type: "string", title: "url_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "urls", - description: "Array of urls objects", - }, - first_name: { type: "string", title: "first_name", description: "The first name." }, - last_name: { type: "string", title: "last_name", description: "The last name." }, - phone_numbers: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - phone_number_type: { type: "string", title: "phone_number_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "phone_numbers", - description: "Array of phone_numbers objects", - }, - tags: { - type: "array", - items: { type: "string", format: "uuid" }, - title: "tags", - description: "Array of tags names", - }, - attachments: { - type: "array", - items: { - type: "object", - properties: { - id: { type: "string", title: "id" }, - file_url: { type: "string", title: "file_url" }, - file_name: { type: "string", title: "file_name" }, - attachment_type: { type: "string", title: "attachment_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "attachments", - description: "Array of attachments objects ", - }, - merge_categories: { - type: "array", - categories: { - type: "string", - enum: [ - "HRIS", - "ATS", - "Accounting", - "Ticketing", - "File Storage", - "CRM", - "Marketing Automation", - ], - enum_information: [ - { value: "HRIS", description: "Merge HRIS Category" }, - { value: "ATS", description: "Merge ATS Category" }, - { value: "Accounting", description: "Merge Accounting Category" }, - { value: "Ticketing", description: "Merge Ticketing Category" }, - { value: "File Storage", description: "Merge File Storage Category" }, - { value: "CRM", description: "Merge CRM Category" }, - { - value: "Marketing Automation", - description: "Merge Marketing Automation Category", - }, - ], - }, - title: "Merge Categories", - description: "Array of Merge's Unified API Categories", - }, - new_york_city_neighborhood: { - type: "string", - title: "Borough", - description: "One of the 5 Boroughs of New York City", - }, - favorite_tv_shows: { - type: "array", - items: { type: "string", format: "uuid" }, - title: "Favorite TV Shows", - description: "Array of TV Show objects on merge.tv_shows", - }, - favorite_watch: { - type: "string", - title: "Favorite Watch", - description: "Favorite watch of all time", - }, - }, - }, - }, - }, - remote_field_classes: { key: "value" }, - status: { linked_account_status: "linked_account_status", can_make_request: true }, - has_conditional_params: true, - has_required_linked_account_params: true, - }; - server - .mockEndpoint() - .get("/accounting/v1/payments/meta/post") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.payments.metaPostRetrieve(); - expect(response).toEqual({ - requestSchema: { - type: "object", - properties: { - model: { - type: "object", - required: [ - "last_name", - "first_name", - "merge_categories", - "new_york_city_neighborhood", - "favorite_tv_shows", - "favorite_watch", - ], - properties: { - email_addresses: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - email_address_type: { - type: "string", - title: "email_address_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "email_addresses", - description: "Array of email_addresses objects", - }, - urls: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - url_type: { - type: "string", - title: "url_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "urls", - description: "Array of urls objects", - }, - first_name: { - type: "string", - title: "first_name", - description: "The first name.", - }, - last_name: { - type: "string", - title: "last_name", - description: "The last name.", - }, - phone_numbers: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - phone_number_type: { - type: "string", - title: "phone_number_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "phone_numbers", - description: "Array of phone_numbers objects", - }, - tags: { - type: "array", - items: { - type: "string", - format: "uuid", - }, - title: "tags", - description: "Array of tags names", - }, - attachments: { - type: "array", - items: { - type: "object", - properties: { - id: { - type: "string", - title: "id", - }, - file_url: { - type: "string", - title: "file_url", - }, - file_name: { - type: "string", - title: "file_name", - }, - attachment_type: { - type: "string", - title: "attachment_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "attachments", - description: "Array of attachments objects ", - }, - merge_categories: { - type: "array", - categories: { - type: "string", - enum: [ - "HRIS", - "ATS", - "Accounting", - "Ticketing", - "File Storage", - "CRM", - "Marketing Automation", - ], - enum_information: [ - { - value: "HRIS", - description: "Merge HRIS Category", - }, - { - value: "ATS", - description: "Merge ATS Category", - }, - { - value: "Accounting", - description: "Merge Accounting Category", - }, - { - value: "Ticketing", - description: "Merge Ticketing Category", - }, - { - value: "File Storage", - description: "Merge File Storage Category", - }, - { - value: "CRM", - description: "Merge CRM Category", - }, - { - value: "Marketing Automation", - description: "Merge Marketing Automation Category", - }, - ], - }, - title: "Merge Categories", - description: "Array of Merge's Unified API Categories", - }, - new_york_city_neighborhood: { - type: "string", - title: "Borough", - description: "One of the 5 Boroughs of New York City", - }, - favorite_tv_shows: { - type: "array", - items: { - type: "string", - format: "uuid", - }, - title: "Favorite TV Shows", - description: "Array of TV Show objects on merge.tv_shows", - }, - favorite_watch: { - type: "string", - title: "Favorite Watch", - description: "Favorite watch of all time", - }, - }, - }, - }, - }, - remoteFieldClasses: { - key: "value", - }, - status: { - linkedAccountStatus: "linked_account_status", - canMakeRequest: true, - }, - hasConditionalParams: true, - hasRequiredLinkedAccountParams: true, - }); - }); - - test("remoteFieldClassesList", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "id", - display_name: "display_name", - remote_key_name: "remote_key_name", - description: "description", - is_custom: true, - is_common_model_field: true, - is_required: true, - field_type: "string", - field_format: "string", - field_choices: ["field_choices"], - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/payments/remote-field-classes") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.payments.remoteFieldClassesList({ - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - isCommonModelField: true, - isCustom: true, - pageSize: 1, - }); - expect(response).toEqual({ - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "id", - displayName: "display_name", - remoteKeyName: "remote_key_name", - description: "description", - isCustom: true, - isCommonModelField: true, - isRequired: true, - fieldType: "string", - fieldFormat: "string", - fieldChoices: ["field_choices"], - }, - ], - }); - }); -}); diff --git a/tests/wire/accounting/phoneNumbers.test.ts b/tests/wire/accounting/phoneNumbers.test.ts deleted file mode 100644 index 2ae51c106..000000000 --- a/tests/wire/accounting/phoneNumbers.test.ts +++ /dev/null @@ -1,41 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import { MergeClient } from "../../../src/Client"; -import { mockServerPool } from "../../mock-server/MockServerPool"; - -describe("PhoneNumbersClient", () => { - test("retrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - number: "+3198675309", - type: "Mobile", - }; - server - .mockEndpoint() - .get("/accounting/v1/phone-numbers/id") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.phoneNumbers.retrieve("id", { - includeRemoteData: true, - includeShellData: true, - }); - expect(response).toEqual({ - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - number: "+3198675309", - type: "Mobile", - }); - }); -}); diff --git a/tests/wire/accounting/projects.test.ts b/tests/wire/accounting/projects.test.ts deleted file mode 100644 index ee68e23b7..000000000 --- a/tests/wire/accounting/projects.test.ts +++ /dev/null @@ -1,153 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import { MergeClient } from "../../../src/Client"; -import { mockServerPool } from "../../mock-server/MockServerPool"; - -describe("ProjectsClient", () => { - test("list", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "088899", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - name: "Permissions Mapping", - is_active: true, - company: "company", - contact: "contact", - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/projects") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.projects.list({ - companyId: "company_id", - createdAfter: new Date("2024-01-15T09:30:00.000Z"), - createdBefore: new Date("2024-01-15T09:30:00.000Z"), - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - expand: "company", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - pageSize: 1, - remoteId: "remote_id", - }); - expect(response).toEqual({ - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "088899", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - name: "Permissions Mapping", - isActive: true, - company: "company", - contact: "contact", - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - }, - ], - }); - }); - - test("retrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "088899", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - name: "Permissions Mapping", - is_active: true, - company: "company", - contact: "contact", - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - }; - server - .mockEndpoint() - .get("/accounting/v1/projects/id") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.projects.retrieve("id", { - expand: "company", - includeRemoteData: true, - includeShellData: true, - }); - expect(response).toEqual({ - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "088899", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - name: "Permissions Mapping", - isActive: true, - company: "company", - contact: "contact", - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - }); - }); -}); diff --git a/tests/wire/accounting/purchaseOrders.test.ts b/tests/wire/accounting/purchaseOrders.test.ts deleted file mode 100644 index 684e0fc4b..000000000 --- a/tests/wire/accounting/purchaseOrders.test.ts +++ /dev/null @@ -1,1257 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import { MergeClient } from "../../../src/Client"; -import { mockServerPool } from "../../mock-server/MockServerPool"; - -describe("PurchaseOrdersClient", () => { - test("list", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "0048ea5b-911e-4dff-9364-92070dea62ff", - remote_id: "239741", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - status: "DRAFT", - issue_date: "2020-03-31T00:00:00Z", - purchase_order_number: "PO1234", - delivery_date: "2020-04-15T00:00:00Z", - delivery_address: "delivery_address", - customer: "3e442c5d-8f51-4103-b5c9-dcee39c30a08", - vendor: "vendor", - memo: "private note", - company: "company", - total_amount: 260, - currency: "XUA", - exchange_rate: "2.9", - payment_term: "payment_term", - line_items: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "121222", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - description: "Pickleball paddles", - unit_price: 25, - quantity: 10, - item: "0958cbc6-6040-430a-848e-aafacbadf4ae", - tracking_categories: [ - "f1214c24-2702-4617-b74b-3ddecfc0d384", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - tax_amount: "tax_amount", - total_line_amount: "total_line_amount", - currency: "USD", - tax_rate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - exchange_rate: "2.9", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - remote_was_deleted: false, - }, - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "121222", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - description: "Pickleball Balls", - unit_price: 1, - quantity: 10, - item: "249c9faa-3045-4a31-953b-8f22d3613301", - tracking_categories: [ - "f1214c24-2702-4617-b74b-3ddecfc0d384", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - tax_amount: "tax_amount", - total_line_amount: "total_line_amount", - tax_rate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - exchange_rate: "2.9", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - }, - ], - inclusive_of_tax: true, - tracking_categories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - accounting_period: "accounting_period", - remote_created_at: "2020-03-31T00:00:00Z", - remote_updated_at: "2020-03-31T00:00:00Z", - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - remote_fields: [{ remote_field_class: "remote_field_class", value: "string" }], - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/purchase-orders") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.purchaseOrders.list({ - companyId: "company_id", - createdAfter: new Date("2024-01-15T09:30:00.000Z"), - createdBefore: new Date("2024-01-15T09:30:00.000Z"), - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - expand: "accounting_period", - includeDeletedData: true, - includeRemoteData: true, - includeRemoteFields: true, - includeShellData: true, - issueDateAfter: new Date("2024-01-15T09:30:00.000Z"), - issueDateBefore: new Date("2024-01-15T09:30:00.000Z"), - modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - pageSize: 1, - remoteFields: "status", - remoteId: "remote_id", - showEnumOrigins: "status", - }); - expect(response).toEqual({ - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "0048ea5b-911e-4dff-9364-92070dea62ff", - remoteId: "239741", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - status: "DRAFT", - issueDate: new Date("2020-03-31T00:00:00.000Z"), - purchaseOrderNumber: "PO1234", - deliveryDate: new Date("2020-04-15T00:00:00.000Z"), - deliveryAddress: "delivery_address", - customer: "3e442c5d-8f51-4103-b5c9-dcee39c30a08", - vendor: "vendor", - memo: "private note", - company: "company", - totalAmount: 260, - currency: "XUA", - exchangeRate: "2.9", - paymentTerm: "payment_term", - lineItems: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "121222", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - description: "Pickleball paddles", - unitPrice: 25, - quantity: 10, - item: "0958cbc6-6040-430a-848e-aafacbadf4ae", - trackingCategories: [ - "f1214c24-2702-4617-b74b-3ddecfc0d384", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - taxAmount: "tax_amount", - totalLineAmount: "total_line_amount", - currency: "USD", - taxRate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - exchangeRate: "2.9", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - remoteWasDeleted: false, - }, - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "121222", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - description: "Pickleball Balls", - unitPrice: 1, - quantity: 10, - item: "249c9faa-3045-4a31-953b-8f22d3613301", - trackingCategories: [ - "f1214c24-2702-4617-b74b-3ddecfc0d384", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - taxAmount: "tax_amount", - totalLineAmount: "total_line_amount", - taxRate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - exchangeRate: "2.9", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - }, - ], - inclusiveOfTax: true, - trackingCategories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - accountingPeriod: "accounting_period", - remoteCreatedAt: new Date("2020-03-31T00:00:00.000Z"), - remoteUpdatedAt: new Date("2020-03-31T00:00:00.000Z"), - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - remoteFields: [ - { - remoteFieldClass: "remote_field_class", - value: "string", - }, - ], - }, - ], - }); - }); - - test("create", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - const rawRequestBody = { model: {} }; - const rawResponseBody = { - model: { - id: "0048ea5b-911e-4dff-9364-92070dea62ff", - remote_id: "239741", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - status: "DRAFT", - issue_date: "2020-03-31T00:00:00Z", - purchase_order_number: "PO1234", - delivery_date: "2020-04-15T00:00:00Z", - delivery_address: "delivery_address", - customer: "3e442c5d-8f51-4103-b5c9-dcee39c30a08", - vendor: "vendor", - memo: "private note", - company: "company", - total_amount: 260, - currency: "XUA", - exchange_rate: "2.9", - payment_term: "payment_term", - line_items: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "121222", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - description: "Pickleball paddles", - unit_price: 25, - quantity: 10, - item: "0958cbc6-6040-430a-848e-aafacbadf4ae", - tracking_categories: [ - "f1214c24-2702-4617-b74b-3ddecfc0d384", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - tax_amount: "tax_amount", - total_line_amount: "total_line_amount", - currency: "USD", - tax_rate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - exchange_rate: "2.9", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - remote_was_deleted: false, - }, - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "121222", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - description: "Pickleball Balls", - unit_price: 1, - quantity: 10, - item: "249c9faa-3045-4a31-953b-8f22d3613301", - tracking_categories: [ - "f1214c24-2702-4617-b74b-3ddecfc0d384", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - tax_amount: "tax_amount", - total_line_amount: "total_line_amount", - tax_rate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - exchange_rate: "2.9", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - }, - ], - inclusive_of_tax: true, - tracking_categories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - accounting_period: "accounting_period", - remote_created_at: "2020-03-31T00:00:00Z", - remote_updated_at: "2020-03-31T00:00:00Z", - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - remote_fields: [{ remote_field_class: "remote_field_class", value: "string" }], - }, - warnings: [ - { - source: { pointer: "pointer" }, - title: "Unrecognized Field", - detail: "An unrecognized field, age, was passed in with request data.", - problem_type: "UNRECOGNIZED_FIELD", - }, - ], - errors: [ - { - source: { pointer: "pointer" }, - title: "Missing Required Field", - detail: "custom_fields is a required field on model.", - problem_type: "MISSING_REQUIRED_FIELD", - }, - ], - logs: [ - { - log_id: "99433219-8017-4acd-bb3c-ceb23d663832", - dashboard_view: "https://app.merge.dev/logs/99433219-8017-4acd-bb3c-ceb23d663832", - log_summary: { - url: "www.exampleintegration.com/api/v1/exampleapi", - method: "POST", - status_code: 200, - }, - }, - ], - }; - server - .mockEndpoint() - .post("/accounting/v1/purchase-orders") - .jsonBody(rawRequestBody) - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.purchaseOrders.create({ - isDebugMode: true, - runAsync: true, - model: {}, - }); - expect(response).toEqual({ - model: { - id: "0048ea5b-911e-4dff-9364-92070dea62ff", - remoteId: "239741", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - status: "DRAFT", - issueDate: new Date("2020-03-31T00:00:00.000Z"), - purchaseOrderNumber: "PO1234", - deliveryDate: new Date("2020-04-15T00:00:00.000Z"), - deliveryAddress: "delivery_address", - customer: "3e442c5d-8f51-4103-b5c9-dcee39c30a08", - vendor: "vendor", - memo: "private note", - company: "company", - totalAmount: 260, - currency: "XUA", - exchangeRate: "2.9", - paymentTerm: "payment_term", - lineItems: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "121222", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - description: "Pickleball paddles", - unitPrice: 25, - quantity: 10, - item: "0958cbc6-6040-430a-848e-aafacbadf4ae", - trackingCategories: [ - "f1214c24-2702-4617-b74b-3ddecfc0d384", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - taxAmount: "tax_amount", - totalLineAmount: "total_line_amount", - currency: "USD", - taxRate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - exchangeRate: "2.9", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - remoteWasDeleted: false, - }, - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "121222", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - description: "Pickleball Balls", - unitPrice: 1, - quantity: 10, - item: "249c9faa-3045-4a31-953b-8f22d3613301", - trackingCategories: [ - "f1214c24-2702-4617-b74b-3ddecfc0d384", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - taxAmount: "tax_amount", - totalLineAmount: "total_line_amount", - taxRate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - exchangeRate: "2.9", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - }, - ], - inclusiveOfTax: true, - trackingCategories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - accountingPeriod: "accounting_period", - remoteCreatedAt: new Date("2020-03-31T00:00:00.000Z"), - remoteUpdatedAt: new Date("2020-03-31T00:00:00.000Z"), - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - remoteFields: [ - { - remoteFieldClass: "remote_field_class", - value: "string", - }, - ], - }, - warnings: [ - { - source: { - pointer: "pointer", - }, - title: "Unrecognized Field", - detail: "An unrecognized field, age, was passed in with request data.", - problemType: "UNRECOGNIZED_FIELD", - }, - ], - errors: [ - { - source: { - pointer: "pointer", - }, - title: "Missing Required Field", - detail: "custom_fields is a required field on model.", - problemType: "MISSING_REQUIRED_FIELD", - }, - ], - logs: [ - { - logId: "99433219-8017-4acd-bb3c-ceb23d663832", - dashboardView: "https://app.merge.dev/logs/99433219-8017-4acd-bb3c-ceb23d663832", - logSummary: { - url: "www.exampleintegration.com/api/v1/exampleapi", - method: "POST", - statusCode: 200, - }, - }, - ], - }); - }); - - test("retrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - id: "0048ea5b-911e-4dff-9364-92070dea62ff", - remote_id: "239741", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - status: "DRAFT", - issue_date: "2020-03-31T00:00:00Z", - purchase_order_number: "PO1234", - delivery_date: "2020-04-15T00:00:00Z", - delivery_address: "delivery_address", - customer: "3e442c5d-8f51-4103-b5c9-dcee39c30a08", - vendor: "vendor", - memo: "private note", - company: "company", - total_amount: 260, - currency: "XUA", - exchange_rate: "2.9", - payment_term: "payment_term", - line_items: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "121222", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - description: "Pickleball paddles", - unit_price: 25, - quantity: 10, - item: "0958cbc6-6040-430a-848e-aafacbadf4ae", - account: "account", - tracking_categories: [ - "f1214c24-2702-4617-b74b-3ddecfc0d384", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - tax_amount: "tax_amount", - total_line_amount: "total_line_amount", - currency: "USD", - tax_rate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - exchange_rate: "2.9", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - remote_was_deleted: false, - remote_fields: [{ remote_field_class: "remote_field_class", value: "string" }], - }, - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "121222", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - description: "Pickleball Balls", - unit_price: 1, - quantity: 10, - item: "249c9faa-3045-4a31-953b-8f22d3613301", - account: "account", - tracking_categories: [ - "f1214c24-2702-4617-b74b-3ddecfc0d384", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - tax_amount: "tax_amount", - total_line_amount: "total_line_amount", - currency: "XUA", - tax_rate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - exchange_rate: "2.9", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - remote_was_deleted: true, - remote_fields: [{ remote_field_class: "remote_field_class", value: "string" }], - }, - ], - inclusive_of_tax: true, - tracking_categories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - accounting_period: "accounting_period", - remote_created_at: "2020-03-31T00:00:00Z", - remote_updated_at: "2020-03-31T00:00:00Z", - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - remote_fields: [{ remote_field_class: "remote_field_class", value: "string" }], - }; - server - .mockEndpoint() - .get("/accounting/v1/purchase-orders/id") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.purchaseOrders.retrieve("id", { - expand: "accounting_period", - includeRemoteData: true, - includeRemoteFields: true, - includeShellData: true, - remoteFields: "status", - showEnumOrigins: "status", - }); - expect(response).toEqual({ - id: "0048ea5b-911e-4dff-9364-92070dea62ff", - remoteId: "239741", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - status: "DRAFT", - issueDate: new Date("2020-03-31T00:00:00.000Z"), - purchaseOrderNumber: "PO1234", - deliveryDate: new Date("2020-04-15T00:00:00.000Z"), - deliveryAddress: "delivery_address", - customer: "3e442c5d-8f51-4103-b5c9-dcee39c30a08", - vendor: "vendor", - memo: "private note", - company: "company", - totalAmount: 260, - currency: "XUA", - exchangeRate: "2.9", - paymentTerm: "payment_term", - lineItems: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "121222", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - description: "Pickleball paddles", - unitPrice: 25, - quantity: 10, - item: "0958cbc6-6040-430a-848e-aafacbadf4ae", - account: "account", - trackingCategories: [ - "f1214c24-2702-4617-b74b-3ddecfc0d384", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - taxAmount: "tax_amount", - totalLineAmount: "total_line_amount", - currency: "USD", - taxRate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - exchangeRate: "2.9", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - remoteWasDeleted: false, - remoteFields: [ - { - remoteFieldClass: "remote_field_class", - value: "string", - }, - ], - }, - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "121222", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - description: "Pickleball Balls", - unitPrice: 1, - quantity: 10, - item: "249c9faa-3045-4a31-953b-8f22d3613301", - account: "account", - trackingCategories: [ - "f1214c24-2702-4617-b74b-3ddecfc0d384", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - taxAmount: "tax_amount", - totalLineAmount: "total_line_amount", - currency: "XUA", - taxRate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - exchangeRate: "2.9", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - remoteWasDeleted: true, - remoteFields: [ - { - remoteFieldClass: "remote_field_class", - value: "string", - }, - ], - }, - ], - inclusiveOfTax: true, - trackingCategories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - accountingPeriod: "accounting_period", - remoteCreatedAt: new Date("2020-03-31T00:00:00.000Z"), - remoteUpdatedAt: new Date("2020-03-31T00:00:00.000Z"), - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - remoteFields: [ - { - remoteFieldClass: "remote_field_class", - value: "string", - }, - ], - }); - }); - - test("lineItemsRemoteFieldClassesList", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "id", - display_name: "display_name", - remote_key_name: "remote_key_name", - description: "description", - is_custom: true, - is_common_model_field: true, - is_required: true, - field_type: "string", - field_format: "string", - field_choices: ["field_choices"], - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/purchase-orders/line-items/remote-field-classes") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.purchaseOrders.lineItemsRemoteFieldClassesList({ - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - isCommonModelField: true, - isCustom: true, - pageSize: 1, - }); - expect(response).toEqual({ - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "id", - displayName: "display_name", - remoteKeyName: "remote_key_name", - description: "description", - isCustom: true, - isCommonModelField: true, - isRequired: true, - fieldType: "string", - fieldFormat: "string", - fieldChoices: ["field_choices"], - }, - ], - }); - }); - - test("metaPostRetrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - request_schema: { - type: "object", - properties: { - model: { - type: "object", - required: [ - "last_name", - "first_name", - "merge_categories", - "new_york_city_neighborhood", - "favorite_tv_shows", - "favorite_watch", - ], - properties: { - email_addresses: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - email_address_type: { type: "string", title: "email_address_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "email_addresses", - description: "Array of email_addresses objects", - }, - urls: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - url_type: { type: "string", title: "url_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "urls", - description: "Array of urls objects", - }, - first_name: { type: "string", title: "first_name", description: "The first name." }, - last_name: { type: "string", title: "last_name", description: "The last name." }, - phone_numbers: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - phone_number_type: { type: "string", title: "phone_number_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "phone_numbers", - description: "Array of phone_numbers objects", - }, - tags: { - type: "array", - items: { type: "string", format: "uuid" }, - title: "tags", - description: "Array of tags names", - }, - attachments: { - type: "array", - items: { - type: "object", - properties: { - id: { type: "string", title: "id" }, - file_url: { type: "string", title: "file_url" }, - file_name: { type: "string", title: "file_name" }, - attachment_type: { type: "string", title: "attachment_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "attachments", - description: "Array of attachments objects ", - }, - merge_categories: { - type: "array", - categories: { - type: "string", - enum: [ - "HRIS", - "ATS", - "Accounting", - "Ticketing", - "File Storage", - "CRM", - "Marketing Automation", - ], - enum_information: [ - { value: "HRIS", description: "Merge HRIS Category" }, - { value: "ATS", description: "Merge ATS Category" }, - { value: "Accounting", description: "Merge Accounting Category" }, - { value: "Ticketing", description: "Merge Ticketing Category" }, - { value: "File Storage", description: "Merge File Storage Category" }, - { value: "CRM", description: "Merge CRM Category" }, - { - value: "Marketing Automation", - description: "Merge Marketing Automation Category", - }, - ], - }, - title: "Merge Categories", - description: "Array of Merge's Unified API Categories", - }, - new_york_city_neighborhood: { - type: "string", - title: "Borough", - description: "One of the 5 Boroughs of New York City", - }, - favorite_tv_shows: { - type: "array", - items: { type: "string", format: "uuid" }, - title: "Favorite TV Shows", - description: "Array of TV Show objects on merge.tv_shows", - }, - favorite_watch: { - type: "string", - title: "Favorite Watch", - description: "Favorite watch of all time", - }, - }, - }, - }, - }, - remote_field_classes: { key: "value" }, - status: { linked_account_status: "linked_account_status", can_make_request: true }, - has_conditional_params: true, - has_required_linked_account_params: true, - }; - server - .mockEndpoint() - .get("/accounting/v1/purchase-orders/meta/post") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.purchaseOrders.metaPostRetrieve(); - expect(response).toEqual({ - requestSchema: { - type: "object", - properties: { - model: { - type: "object", - required: [ - "last_name", - "first_name", - "merge_categories", - "new_york_city_neighborhood", - "favorite_tv_shows", - "favorite_watch", - ], - properties: { - email_addresses: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - email_address_type: { - type: "string", - title: "email_address_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "email_addresses", - description: "Array of email_addresses objects", - }, - urls: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - url_type: { - type: "string", - title: "url_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "urls", - description: "Array of urls objects", - }, - first_name: { - type: "string", - title: "first_name", - description: "The first name.", - }, - last_name: { - type: "string", - title: "last_name", - description: "The last name.", - }, - phone_numbers: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - phone_number_type: { - type: "string", - title: "phone_number_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "phone_numbers", - description: "Array of phone_numbers objects", - }, - tags: { - type: "array", - items: { - type: "string", - format: "uuid", - }, - title: "tags", - description: "Array of tags names", - }, - attachments: { - type: "array", - items: { - type: "object", - properties: { - id: { - type: "string", - title: "id", - }, - file_url: { - type: "string", - title: "file_url", - }, - file_name: { - type: "string", - title: "file_name", - }, - attachment_type: { - type: "string", - title: "attachment_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "attachments", - description: "Array of attachments objects ", - }, - merge_categories: { - type: "array", - categories: { - type: "string", - enum: [ - "HRIS", - "ATS", - "Accounting", - "Ticketing", - "File Storage", - "CRM", - "Marketing Automation", - ], - enum_information: [ - { - value: "HRIS", - description: "Merge HRIS Category", - }, - { - value: "ATS", - description: "Merge ATS Category", - }, - { - value: "Accounting", - description: "Merge Accounting Category", - }, - { - value: "Ticketing", - description: "Merge Ticketing Category", - }, - { - value: "File Storage", - description: "Merge File Storage Category", - }, - { - value: "CRM", - description: "Merge CRM Category", - }, - { - value: "Marketing Automation", - description: "Merge Marketing Automation Category", - }, - ], - }, - title: "Merge Categories", - description: "Array of Merge's Unified API Categories", - }, - new_york_city_neighborhood: { - type: "string", - title: "Borough", - description: "One of the 5 Boroughs of New York City", - }, - favorite_tv_shows: { - type: "array", - items: { - type: "string", - format: "uuid", - }, - title: "Favorite TV Shows", - description: "Array of TV Show objects on merge.tv_shows", - }, - favorite_watch: { - type: "string", - title: "Favorite Watch", - description: "Favorite watch of all time", - }, - }, - }, - }, - }, - remoteFieldClasses: { - key: "value", - }, - status: { - linkedAccountStatus: "linked_account_status", - canMakeRequest: true, - }, - hasConditionalParams: true, - hasRequiredLinkedAccountParams: true, - }); - }); - - test("remoteFieldClassesList", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "id", - display_name: "display_name", - remote_key_name: "remote_key_name", - description: "description", - is_custom: true, - is_common_model_field: true, - is_required: true, - field_type: "string", - field_format: "string", - field_choices: ["field_choices"], - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/purchase-orders/remote-field-classes") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.purchaseOrders.remoteFieldClassesList({ - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - isCommonModelField: true, - isCustom: true, - pageSize: 1, - }); - expect(response).toEqual({ - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "id", - displayName: "display_name", - remoteKeyName: "remote_key_name", - description: "description", - isCustom: true, - isCommonModelField: true, - isRequired: true, - fieldType: "string", - fieldFormat: "string", - fieldChoices: ["field_choices"], - }, - ], - }); - }); -}); diff --git a/tests/wire/accounting/regenerateKey.test.ts b/tests/wire/accounting/regenerateKey.test.ts deleted file mode 100644 index 786d51679..000000000 --- a/tests/wire/accounting/regenerateKey.test.ts +++ /dev/null @@ -1,37 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import { MergeClient } from "../../../src/Client"; -import { mockServerPool } from "../../mock-server/MockServerPool"; - -describe("RegenerateKeyClient", () => { - test("create", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - const rawRequestBody = { name: "Remote Deployment Key 1" }; - const rawResponseBody = { - name: "Remote Deployment Key 1", - key: "hXY57W0g0WkdRHjCaPvwijK63fwfN-o_Wh7f30SLTq_uPCOLo-WFcA", - }; - server - .mockEndpoint() - .post("/accounting/v1/regenerate-key") - .jsonBody(rawRequestBody) - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.regenerateKey.create({ - name: "Remote Deployment Key 1", - }); - expect(response).toEqual({ - name: "Remote Deployment Key 1", - key: "hXY57W0g0WkdRHjCaPvwijK63fwfN-o_Wh7f30SLTq_uPCOLo-WFcA", - }); - }); -}); diff --git a/tests/wire/accounting/scopes.test.ts b/tests/wire/accounting/scopes.test.ts deleted file mode 100644 index 46d248260..000000000 --- a/tests/wire/accounting/scopes.test.ts +++ /dev/null @@ -1,294 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import { MergeClient } from "../../../src/Client"; -import { mockServerPool } from "../../mock-server/MockServerPool"; - -describe("ScopesClient", () => { - test("default_scopes_retrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - common_models: [ - { - model_name: "Employee", - model_permissions: { READ: { is_enabled: true }, WRITE: { is_enabled: false } }, - field_permissions: { - enabled_fields: [ - "avatar", - "created_at", - "custom_fields", - "date_of_birth", - "first_name", - "gender", - "remote_created_at", - "remote_data", - ], - disabled_fields: [ - "company", - "employments", - "groups", - "home_location", - "manager", - "work_location", - ], - }, - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/default-scopes") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.scopes.defaultScopesRetrieve(); - expect(response).toEqual({ - commonModels: [ - { - modelName: "Employee", - modelPermissions: { - READ: { - isEnabled: true, - }, - WRITE: { - isEnabled: false, - }, - }, - fieldPermissions: { - enabledFields: [ - "avatar", - "created_at", - "custom_fields", - "date_of_birth", - "first_name", - "gender", - "remote_created_at", - "remote_data", - ], - disabledFields: [ - "company", - "employments", - "groups", - "home_location", - "manager", - "work_location", - ], - }, - }, - ], - }); - }); - - test("linked_account_scopes_retrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - common_models: [ - { - model_name: "Employee", - model_permissions: { READ: { is_enabled: true }, WRITE: { is_enabled: false } }, - field_permissions: { - enabled_fields: [ - "avatar", - "created_at", - "custom_fields", - "date_of_birth", - "first_name", - "gender", - "remote_created_at", - "remote_data", - ], - disabled_fields: [ - "company", - "employments", - "groups", - "home_location", - "manager", - "work_location", - ], - }, - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/linked-account-scopes") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.scopes.linkedAccountScopesRetrieve(); - expect(response).toEqual({ - commonModels: [ - { - modelName: "Employee", - modelPermissions: { - READ: { - isEnabled: true, - }, - WRITE: { - isEnabled: false, - }, - }, - fieldPermissions: { - enabledFields: [ - "avatar", - "created_at", - "custom_fields", - "date_of_birth", - "first_name", - "gender", - "remote_created_at", - "remote_data", - ], - disabledFields: [ - "company", - "employments", - "groups", - "home_location", - "manager", - "work_location", - ], - }, - }, - ], - }); - }); - - test("linked_account_scopes_create", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - const rawRequestBody = { - common_models: [ - { - model_name: "Employee", - model_permissions: { READ: { is_enabled: true }, WRITE: { is_enabled: false } }, - field_permissions: { - enabled_fields: ["avatar", "home_location"], - disabled_fields: ["work_location"], - }, - }, - { model_name: "Benefit", model_permissions: { WRITE: { is_enabled: false } } }, - ], - }; - const rawResponseBody = { - common_models: [ - { - model_name: "Employee", - model_permissions: { READ: { is_enabled: true }, WRITE: { is_enabled: false } }, - field_permissions: { - enabled_fields: [ - "avatar", - "created_at", - "custom_fields", - "date_of_birth", - "first_name", - "gender", - "remote_created_at", - "remote_data", - ], - disabled_fields: [ - "company", - "employments", - "groups", - "home_location", - "manager", - "work_location", - ], - }, - }, - ], - }; - server - .mockEndpoint() - .post("/accounting/v1/linked-account-scopes") - .jsonBody(rawRequestBody) - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.scopes.linkedAccountScopesCreate({ - commonModels: [ - { - modelName: "Employee", - modelPermissions: { - READ: { - isEnabled: true, - }, - WRITE: { - isEnabled: false, - }, - }, - fieldPermissions: { - enabledFields: ["avatar", "home_location"], - disabledFields: ["work_location"], - }, - }, - { - modelName: "Benefit", - modelPermissions: { - WRITE: { - isEnabled: false, - }, - }, - }, - ], - }); - expect(response).toEqual({ - commonModels: [ - { - modelName: "Employee", - modelPermissions: { - READ: { - isEnabled: true, - }, - WRITE: { - isEnabled: false, - }, - }, - fieldPermissions: { - enabledFields: [ - "avatar", - "created_at", - "custom_fields", - "date_of_birth", - "first_name", - "gender", - "remote_created_at", - "remote_data", - ], - disabledFields: [ - "company", - "employments", - "groups", - "home_location", - "manager", - "work_location", - ], - }, - }, - ], - }); - }); -}); diff --git a/tests/wire/accounting/syncStatus.test.ts b/tests/wire/accounting/syncStatus.test.ts deleted file mode 100644 index 6af1e3c70..000000000 --- a/tests/wire/accounting/syncStatus.test.ts +++ /dev/null @@ -1,63 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import { MergeClient } from "../../../src/Client"; -import { mockServerPool } from "../../mock-server/MockServerPool"; - -describe("SyncStatusClient", () => { - test("list", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - model_name: "Invoice", - model_id: "accounting.Invoices", - last_sync_start: "2021-03-30T19:44:18Z", - next_sync_start: "2021-03-30T20:44:18Z", - last_sync_result: "SYNCING", - last_sync_finished: "2021-03-30T19:55:18Z", - status: "SYNCING", - is_initial_sync: true, - selective_sync_configurations_usage: "IN_NEXT_SYNC", - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/sync-status") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.syncStatus.list({ - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - pageSize: 1, - }); - expect(response).toEqual({ - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - modelName: "Invoice", - modelId: "accounting.Invoices", - lastSyncStart: new Date("2021-03-30T19:44:18.000Z"), - nextSyncStart: new Date("2021-03-30T20:44:18.000Z"), - lastSyncResult: "SYNCING", - lastSyncFinished: new Date("2021-03-30T19:55:18.000Z"), - status: "SYNCING", - isInitialSync: true, - selectiveSyncConfigurationsUsage: "IN_NEXT_SYNC", - }, - ], - }); - }); -}); diff --git a/tests/wire/accounting/taxRates.test.ts b/tests/wire/accounting/taxRates.test.ts deleted file mode 100644 index 4608c819e..000000000 --- a/tests/wire/accounting/taxRates.test.ts +++ /dev/null @@ -1,224 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import { MergeClient } from "../../../src/Client"; -import { mockServerPool } from "../../mock-server/MockServerPool"; - -describe("TaxRatesClient", () => { - test("list", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "b82302de-852e-4e60-b050-edf9da3b7c02", - remote_id: "039111", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - company: "company", - code: "890", - name: "State tax rate", - description: "Sales Tax", - status: "ACTIVE", - country: "US", - total_tax_rate: 15, - effective_tax_rate: 15, - tax_components: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "039111", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - name: "Drink Tax Component", - rate: "rate", - is_compound: true, - component_type: "SALES", - }, - ], - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/tax-rates") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.taxRates.list({ - companyId: "company_id", - createdAfter: new Date("2024-01-15T09:30:00.000Z"), - createdBefore: new Date("2024-01-15T09:30:00.000Z"), - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - expand: "company", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - name: "name", - pageSize: 1, - remoteId: "remote_id", - }); - expect(response).toEqual({ - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "b82302de-852e-4e60-b050-edf9da3b7c02", - remoteId: "039111", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - company: "company", - code: "890", - name: "State tax rate", - description: "Sales Tax", - status: "ACTIVE", - country: "US", - totalTaxRate: 15, - effectiveTaxRate: 15, - taxComponents: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "039111", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - name: "Drink Tax Component", - rate: "rate", - isCompound: true, - componentType: "SALES", - }, - ], - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - }, - ], - }); - }); - - test("retrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - id: "b82302de-852e-4e60-b050-edf9da3b7c02", - remote_id: "039111", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - company: "company", - code: "890", - name: "State tax rate", - description: "Sales Tax", - status: "ACTIVE", - country: "US", - total_tax_rate: 15, - effective_tax_rate: 15, - tax_components: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "039111", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - name: "Drink Tax Component", - rate: "rate", - is_compound: true, - component_type: "SALES", - remote_was_deleted: true, - }, - ], - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - }; - server - .mockEndpoint() - .get("/accounting/v1/tax-rates/id") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.taxRates.retrieve("id", { - expand: "company", - includeRemoteData: true, - includeShellData: true, - }); - expect(response).toEqual({ - id: "b82302de-852e-4e60-b050-edf9da3b7c02", - remoteId: "039111", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - company: "company", - code: "890", - name: "State tax rate", - description: "Sales Tax", - status: "ACTIVE", - country: "US", - totalTaxRate: 15, - effectiveTaxRate: 15, - taxComponents: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "039111", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - name: "Drink Tax Component", - rate: "rate", - isCompound: true, - componentType: "SALES", - remoteWasDeleted: true, - }, - ], - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - }); - }); -}); diff --git a/tests/wire/accounting/trackingCategories.test.ts b/tests/wire/accounting/trackingCategories.test.ts deleted file mode 100644 index 0d0a3c8fd..000000000 --- a/tests/wire/accounting/trackingCategories.test.ts +++ /dev/null @@ -1,154 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import { MergeClient } from "../../../src/Client"; -import { mockServerPool } from "../../mock-server/MockServerPool"; - -describe("TrackingCategoriesClient", () => { - test("list", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "948201", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - name: "Marketing Department", - status: "ACTIVE", - category_type: "CLASS", - parent_category: "d25d609b-945f-4762-b55a-1c8fb220c43c", - company: "company", - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/tracking-categories") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.trackingCategories.list({ - categoryType: "", - companyId: "company_id", - createdAfter: new Date("2024-01-15T09:30:00.000Z"), - createdBefore: new Date("2024-01-15T09:30:00.000Z"), - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - expand: "company", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - name: "name", - pageSize: 1, - remoteFields: "status", - remoteId: "remote_id", - showEnumOrigins: "status", - status: "", - }); - expect(response).toEqual({ - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "948201", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - name: "Marketing Department", - status: "ACTIVE", - categoryType: "CLASS", - parentCategory: "d25d609b-945f-4762-b55a-1c8fb220c43c", - company: "company", - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - }, - ], - }); - }); - - test("retrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "948201", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - name: "Marketing Department", - status: "ACTIVE", - category_type: "CLASS", - parent_category: "d25d609b-945f-4762-b55a-1c8fb220c43c", - company: "company", - remote_was_deleted: true, - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - }; - server - .mockEndpoint() - .get("/accounting/v1/tracking-categories/id") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.trackingCategories.retrieve("id", { - expand: "company", - includeRemoteData: true, - includeShellData: true, - remoteFields: "status", - showEnumOrigins: "status", - }); - expect(response).toEqual({ - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "948201", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - name: "Marketing Department", - status: "ACTIVE", - categoryType: "CLASS", - parentCategory: "d25d609b-945f-4762-b55a-1c8fb220c43c", - company: "company", - remoteWasDeleted: true, - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - }); - }); -}); diff --git a/tests/wire/accounting/transactions.test.ts b/tests/wire/accounting/transactions.test.ts deleted file mode 100644 index 22c8e2ee8..000000000 --- a/tests/wire/accounting/transactions.test.ts +++ /dev/null @@ -1,387 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import { MergeClient } from "../../../src/Client"; -import { mockServerPool } from "../../mock-server/MockServerPool"; - -describe("TransactionsClient", () => { - test("list", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "0048ea5b-911e-4dff-9364-92070dea62ff", - remote_id: "239741", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - transaction_type: "estimate", - number: "122", - transaction_date: "2020-03-31T00:00:00Z", - account: "account", - contact: "contact", - inclusive_of_tax: true, - total_amount: "total_amount", - currency: "XUA", - exchange_rate: "2.9", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - tracking_categories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - line_items: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "121222", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - memo: "Pickleball paddles", - unit_price: "25.0", - quantity: "10.0", - item: "0958cbc6-6040-430a-848e-aafacbadf4ae", - account: "2b38c085-2620-4269-b5ec-75dd9095ed2c", - tracking_categories: [ - "f1214c24-2702-4617-b74b-3ddecfc0d384", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - total_line_amount: "total_line_amount", - tax_rate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - currency: "USD", - exchange_rate: "2.9", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - remote_was_deleted: false, - }, - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "121222", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - memo: "Pickleball balls", - unit_price: "25.0", - quantity: "10.0", - item: "249c9faa-3045-4a31-953b-8f22d3613301", - account: "3e442c5d-8f51-4103-b5c9-dcee39c30a08", - tracking_categories: [ - "f1214c24-2702-4617-b74b-3ddecfc0d384", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - total_line_amount: "total_line_amount", - tax_rate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - exchange_rate: "2.9", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - }, - ], - remote_was_deleted: true, - accounting_period: "accounting_period", - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/transactions") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.transactions.list({ - companyId: "company_id", - createdAfter: new Date("2024-01-15T09:30:00.000Z"), - createdBefore: new Date("2024-01-15T09:30:00.000Z"), - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - expand: "account", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - pageSize: 1, - remoteId: "remote_id", - transactionDateAfter: new Date("2024-01-15T09:30:00.000Z"), - transactionDateBefore: new Date("2024-01-15T09:30:00.000Z"), - }); - expect(response).toEqual({ - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "0048ea5b-911e-4dff-9364-92070dea62ff", - remoteId: "239741", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - transactionType: "estimate", - number: "122", - transactionDate: new Date("2020-03-31T00:00:00.000Z"), - account: "account", - contact: "contact", - inclusiveOfTax: true, - totalAmount: "total_amount", - currency: "XUA", - exchangeRate: "2.9", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - trackingCategories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - lineItems: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "121222", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - memo: "Pickleball paddles", - unitPrice: "25.0", - quantity: "10.0", - item: "0958cbc6-6040-430a-848e-aafacbadf4ae", - account: "2b38c085-2620-4269-b5ec-75dd9095ed2c", - trackingCategories: [ - "f1214c24-2702-4617-b74b-3ddecfc0d384", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - totalLineAmount: "total_line_amount", - taxRate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - currency: "USD", - exchangeRate: "2.9", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - remoteWasDeleted: false, - }, - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "121222", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - memo: "Pickleball balls", - unitPrice: "25.0", - quantity: "10.0", - item: "249c9faa-3045-4a31-953b-8f22d3613301", - account: "3e442c5d-8f51-4103-b5c9-dcee39c30a08", - trackingCategories: [ - "f1214c24-2702-4617-b74b-3ddecfc0d384", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - totalLineAmount: "total_line_amount", - taxRate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - exchangeRate: "2.9", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - }, - ], - remoteWasDeleted: true, - accountingPeriod: "accounting_period", - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - }, - ], - }); - }); - - test("retrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - id: "0048ea5b-911e-4dff-9364-92070dea62ff", - remote_id: "239741", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - transaction_type: "estimate", - number: "122", - transaction_date: "2020-03-31T00:00:00Z", - account: "account", - contact: "contact", - inclusive_of_tax: true, - total_amount: "total_amount", - currency: "XUA", - exchange_rate: "2.9", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - tracking_categories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - line_items: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "121222", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - memo: "Pickleball paddles", - unit_price: "25.0", - quantity: "10.0", - item: "0958cbc6-6040-430a-848e-aafacbadf4ae", - account: "2b38c085-2620-4269-b5ec-75dd9095ed2c", - tracking_categories: [ - "f1214c24-2702-4617-b74b-3ddecfc0d384", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - total_line_amount: "total_line_amount", - tax_rate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - currency: "USD", - exchange_rate: "2.9", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - remote_was_deleted: false, - }, - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "121222", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - memo: "Pickleball balls", - unit_price: "25.0", - quantity: "10.0", - item: "249c9faa-3045-4a31-953b-8f22d3613301", - account: "3e442c5d-8f51-4103-b5c9-dcee39c30a08", - tracking_categories: [ - "f1214c24-2702-4617-b74b-3ddecfc0d384", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - total_line_amount: "total_line_amount", - tax_rate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - currency: "XUA", - exchange_rate: "2.9", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - remote_was_deleted: true, - }, - ], - remote_was_deleted: true, - accounting_period: "accounting_period", - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - }; - server - .mockEndpoint() - .get("/accounting/v1/transactions/id") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.transactions.retrieve("id", { - expand: "account", - includeRemoteData: true, - includeShellData: true, - }); - expect(response).toEqual({ - id: "0048ea5b-911e-4dff-9364-92070dea62ff", - remoteId: "239741", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - transactionType: "estimate", - number: "122", - transactionDate: new Date("2020-03-31T00:00:00.000Z"), - account: "account", - contact: "contact", - inclusiveOfTax: true, - totalAmount: "total_amount", - currency: "XUA", - exchangeRate: "2.9", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - trackingCategories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - lineItems: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "121222", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - memo: "Pickleball paddles", - unitPrice: "25.0", - quantity: "10.0", - item: "0958cbc6-6040-430a-848e-aafacbadf4ae", - account: "2b38c085-2620-4269-b5ec-75dd9095ed2c", - trackingCategories: [ - "f1214c24-2702-4617-b74b-3ddecfc0d384", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - totalLineAmount: "total_line_amount", - taxRate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - currency: "USD", - exchangeRate: "2.9", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - remoteWasDeleted: false, - }, - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "121222", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - memo: "Pickleball balls", - unitPrice: "25.0", - quantity: "10.0", - item: "249c9faa-3045-4a31-953b-8f22d3613301", - account: "3e442c5d-8f51-4103-b5c9-dcee39c30a08", - trackingCategories: [ - "f1214c24-2702-4617-b74b-3ddecfc0d384", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - totalLineAmount: "total_line_amount", - taxRate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - currency: "XUA", - exchangeRate: "2.9", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - remoteWasDeleted: true, - }, - ], - remoteWasDeleted: true, - accountingPeriod: "accounting_period", - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - }); - }); -}); diff --git a/tests/wire/accounting/vendorCredits.test.ts b/tests/wire/accounting/vendorCredits.test.ts deleted file mode 100644 index 36f2b1c46..000000000 --- a/tests/wire/accounting/vendorCredits.test.ts +++ /dev/null @@ -1,1070 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import { MergeClient } from "../../../src/Client"; -import { mockServerPool } from "../../mock-server/MockServerPool"; - -describe("VendorCreditsClient", () => { - test("list", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "088899", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - number: "6", - transaction_date: "2020-03-31T00:00:00Z", - vendor: "vendor", - total_amount: 10000, - currency: "XUA", - exchange_rate: "2.9", - inclusive_of_tax: true, - company: "company", - lines: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "121222", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - net_amount: 25.54, - tracking_categories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - description: "Gifted Merge Credit", - account: "9d892439-5fab-4dbb-8bd8-34f7f96c7912", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - project: "22e65a5d-2df5-4e6e-884a-e538d0339000", - contact: "908934-49j9-093f-0989-908923908", - tax_rate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - exchange_rate: "2.9", - remote_was_deleted: false, - }, - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "121223", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - net_amount: 10, - tracking_categories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - description: "Refund for overpayment", - account: "9d892439-5fab-4dbb-8bd8-34f7f96c7912", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - tax_rate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - exchange_rate: "2.9", - }, - ], - tracking_categories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - applied_to_lines: [ - { - remote_id: "088899", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - invoice: "5b3c1341-a20f-4e51-b72c-f3830a16c97b", - applied_date: "2020-03-31T00:00:00Z", - applied_amount: "2.9", - }, - ], - remote_was_deleted: true, - accounting_period: "accounting_period", - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - }, - ], - }; - server - .mockEndpoint() - .get("/accounting/v1/vendor-credits") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.vendorCredits.list({ - companyId: "company_id", - createdAfter: new Date("2024-01-15T09:30:00.000Z"), - createdBefore: new Date("2024-01-15T09:30:00.000Z"), - cursor: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - expand: "accounting_period", - includeDeletedData: true, - includeRemoteData: true, - includeShellData: true, - modifiedAfter: new Date("2024-01-15T09:30:00.000Z"), - modifiedBefore: new Date("2024-01-15T09:30:00.000Z"), - pageSize: 1, - remoteId: "remote_id", - transactionDateAfter: new Date("2024-01-15T09:30:00.000Z"), - transactionDateBefore: new Date("2024-01-15T09:30:00.000Z"), - }); - expect(response).toEqual({ - next: "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw", - previous: "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ", - results: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "088899", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - number: "6", - transactionDate: new Date("2020-03-31T00:00:00.000Z"), - vendor: "vendor", - totalAmount: 10000, - currency: "XUA", - exchangeRate: "2.9", - inclusiveOfTax: true, - company: "company", - lines: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "121222", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - netAmount: 25.54, - trackingCategories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - description: "Gifted Merge Credit", - account: "9d892439-5fab-4dbb-8bd8-34f7f96c7912", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - project: "22e65a5d-2df5-4e6e-884a-e538d0339000", - contact: "908934-49j9-093f-0989-908923908", - taxRate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - exchangeRate: "2.9", - remoteWasDeleted: false, - }, - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "121223", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - netAmount: 10, - trackingCategories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - description: "Refund for overpayment", - account: "9d892439-5fab-4dbb-8bd8-34f7f96c7912", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - taxRate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - exchangeRate: "2.9", - }, - ], - trackingCategories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - appliedToLines: [ - { - remoteId: "088899", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - invoice: "5b3c1341-a20f-4e51-b72c-f3830a16c97b", - appliedDate: new Date("2020-03-31T00:00:00.000Z"), - appliedAmount: "2.9", - }, - ], - remoteWasDeleted: true, - accountingPeriod: "accounting_period", - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - }, - ], - }); - }); - - test("create", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - const rawRequestBody = { model: {} }; - const rawResponseBody = { - model: { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "088899", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - number: "6", - transaction_date: "2020-03-31T00:00:00Z", - vendor: "vendor", - total_amount: 10000, - currency: "XUA", - exchange_rate: "2.9", - inclusive_of_tax: true, - company: "company", - lines: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "121222", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - net_amount: 25.54, - tracking_categories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - description: "Gifted Merge Credit", - account: "9d892439-5fab-4dbb-8bd8-34f7f96c7912", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - project: "22e65a5d-2df5-4e6e-884a-e538d0339000", - contact: "908934-49j9-093f-0989-908923908", - tax_rate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - exchange_rate: "2.9", - remote_was_deleted: false, - }, - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "121223", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - net_amount: 10, - tracking_categories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - description: "Refund for overpayment", - account: "9d892439-5fab-4dbb-8bd8-34f7f96c7912", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - tax_rate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - exchange_rate: "2.9", - }, - ], - tracking_categories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - applied_to_lines: [ - { - remote_id: "088899", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - invoice: "5b3c1341-a20f-4e51-b72c-f3830a16c97b", - applied_date: "2020-03-31T00:00:00Z", - applied_amount: "2.9", - }, - ], - remote_was_deleted: true, - accounting_period: "accounting_period", - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - }, - warnings: [ - { - source: { pointer: "pointer" }, - title: "Unrecognized Field", - detail: "An unrecognized field, age, was passed in with request data.", - problem_type: "UNRECOGNIZED_FIELD", - }, - ], - errors: [ - { - source: { pointer: "pointer" }, - title: "Missing Required Field", - detail: "custom_fields is a required field on model.", - problem_type: "MISSING_REQUIRED_FIELD", - }, - ], - logs: [ - { - log_id: "99433219-8017-4acd-bb3c-ceb23d663832", - dashboard_view: "https://app.merge.dev/logs/99433219-8017-4acd-bb3c-ceb23d663832", - log_summary: { - url: "www.exampleintegration.com/api/v1/exampleapi", - method: "POST", - status_code: 200, - }, - }, - ], - }; - server - .mockEndpoint() - .post("/accounting/v1/vendor-credits") - .jsonBody(rawRequestBody) - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.vendorCredits.create({ - isDebugMode: true, - runAsync: true, - model: {}, - }); - expect(response).toEqual({ - model: { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "088899", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - number: "6", - transactionDate: new Date("2020-03-31T00:00:00.000Z"), - vendor: "vendor", - totalAmount: 10000, - currency: "XUA", - exchangeRate: "2.9", - inclusiveOfTax: true, - company: "company", - lines: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "121222", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - netAmount: 25.54, - trackingCategories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - description: "Gifted Merge Credit", - account: "9d892439-5fab-4dbb-8bd8-34f7f96c7912", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - project: "22e65a5d-2df5-4e6e-884a-e538d0339000", - contact: "908934-49j9-093f-0989-908923908", - taxRate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - exchangeRate: "2.9", - remoteWasDeleted: false, - }, - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "121223", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - netAmount: 10, - trackingCategories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - description: "Refund for overpayment", - account: "9d892439-5fab-4dbb-8bd8-34f7f96c7912", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - taxRate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - exchangeRate: "2.9", - }, - ], - trackingCategories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - appliedToLines: [ - { - remoteId: "088899", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - invoice: "5b3c1341-a20f-4e51-b72c-f3830a16c97b", - appliedDate: new Date("2020-03-31T00:00:00.000Z"), - appliedAmount: "2.9", - }, - ], - remoteWasDeleted: true, - accountingPeriod: "accounting_period", - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - }, - warnings: [ - { - source: { - pointer: "pointer", - }, - title: "Unrecognized Field", - detail: "An unrecognized field, age, was passed in with request data.", - problemType: "UNRECOGNIZED_FIELD", - }, - ], - errors: [ - { - source: { - pointer: "pointer", - }, - title: "Missing Required Field", - detail: "custom_fields is a required field on model.", - problemType: "MISSING_REQUIRED_FIELD", - }, - ], - logs: [ - { - logId: "99433219-8017-4acd-bb3c-ceb23d663832", - dashboardView: "https://app.merge.dev/logs/99433219-8017-4acd-bb3c-ceb23d663832", - logSummary: { - url: "www.exampleintegration.com/api/v1/exampleapi", - method: "POST", - statusCode: 200, - }, - }, - ], - }); - }); - - test("retrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "088899", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - number: "6", - transaction_date: "2020-03-31T00:00:00Z", - vendor: "vendor", - total_amount: 10000, - currency: "XUA", - exchange_rate: "2.9", - inclusive_of_tax: true, - company: "company", - lines: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "121222", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - net_amount: 25.54, - tracking_categories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - description: "Gifted Merge Credit", - account: "9d892439-5fab-4dbb-8bd8-34f7f96c7912", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - project: "22e65a5d-2df5-4e6e-884a-e538d0339000", - contact: "908934-49j9-093f-0989-908923908", - tax_rate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - exchange_rate: "2.9", - remote_was_deleted: false, - }, - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remote_id: "121223", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - net_amount: 10, - tracking_categories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - description: "Refund for overpayment", - account: "9d892439-5fab-4dbb-8bd8-34f7f96c7912", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - project: "project", - contact: "contact", - tax_rate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - exchange_rate: "2.9", - remote_was_deleted: true, - }, - ], - tracking_categories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - applied_to_lines: [ - { - remote_id: "088899", - created_at: "2021-09-15T00:00:00Z", - modified_at: "2021-10-16T00:00:00Z", - invoice: "5b3c1341-a20f-4e51-b72c-f3830a16c97b", - applied_date: "2020-03-31T00:00:00Z", - applied_amount: "2.9", - remote_was_deleted: true, - }, - ], - remote_was_deleted: true, - accounting_period: "accounting_period", - field_mappings: { - organization_defined_targets: { custom_key: "custom_value" }, - linked_account_defined_targets: { custom_key: "custom_value" }, - }, - remote_data: [{ path: "/actions", data: ["Varies by platform"] }], - }; - server - .mockEndpoint() - .get("/accounting/v1/vendor-credits/id") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.vendorCredits.retrieve("id", { - expand: "accounting_period", - includeRemoteData: true, - includeShellData: true, - }); - expect(response).toEqual({ - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "088899", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - number: "6", - transactionDate: new Date("2020-03-31T00:00:00.000Z"), - vendor: "vendor", - totalAmount: 10000, - currency: "XUA", - exchangeRate: "2.9", - inclusiveOfTax: true, - company: "company", - lines: [ - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "121222", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - netAmount: 25.54, - trackingCategories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - description: "Gifted Merge Credit", - account: "9d892439-5fab-4dbb-8bd8-34f7f96c7912", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - project: "22e65a5d-2df5-4e6e-884a-e538d0339000", - contact: "908934-49j9-093f-0989-908923908", - taxRate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - exchangeRate: "2.9", - remoteWasDeleted: false, - }, - { - id: "ecbe05ac-62a3-46c5-ab31-4b478b37d1b4", - remoteId: "121223", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - netAmount: 10, - trackingCategories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - description: "Refund for overpayment", - account: "9d892439-5fab-4dbb-8bd8-34f7f96c7912", - company: "595c8f97-2ac4-45b7-b000-41bdf43240b5", - project: "project", - contact: "contact", - taxRate: "a12e7c20-1922-9df7-s75n-edfeewnn7384", - exchangeRate: "2.9", - remoteWasDeleted: true, - }, - ], - trackingCategories: [ - "b38c59b0-a9d7-4740-b1ee-5436c6751e3d", - "9b840d2-686a-465a-8a8e-7b028498f8e4", - "a47e11b6-c73b-4a0c-be31-130fc48177fa", - ], - appliedToLines: [ - { - remoteId: "088899", - createdAt: new Date("2021-09-15T00:00:00.000Z"), - modifiedAt: new Date("2021-10-16T00:00:00.000Z"), - invoice: "5b3c1341-a20f-4e51-b72c-f3830a16c97b", - appliedDate: new Date("2020-03-31T00:00:00.000Z"), - appliedAmount: "2.9", - remoteWasDeleted: true, - }, - ], - remoteWasDeleted: true, - accountingPeriod: "accounting_period", - fieldMappings: { - organization_defined_targets: { - custom_key: "custom_value", - }, - linked_account_defined_targets: { - custom_key: "custom_value", - }, - }, - remoteData: [ - { - path: "/actions", - data: ["Varies by platform"], - }, - ], - }); - }); - - test("metaPostRetrieve", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = { - request_schema: { - type: "object", - properties: { - model: { - type: "object", - required: [ - "last_name", - "first_name", - "merge_categories", - "new_york_city_neighborhood", - "favorite_tv_shows", - "favorite_watch", - ], - properties: { - email_addresses: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - email_address_type: { type: "string", title: "email_address_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "email_addresses", - description: "Array of email_addresses objects", - }, - urls: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - url_type: { type: "string", title: "url_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "urls", - description: "Array of urls objects", - }, - first_name: { type: "string", title: "first_name", description: "The first name." }, - last_name: { type: "string", title: "last_name", description: "The last name." }, - phone_numbers: { - type: "array", - items: { - type: "object", - properties: { - value: { type: "string", title: "value" }, - phone_number_type: { type: "string", title: "phone_number_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "phone_numbers", - description: "Array of phone_numbers objects", - }, - tags: { - type: "array", - items: { type: "string", format: "uuid" }, - title: "tags", - description: "Array of tags names", - }, - attachments: { - type: "array", - items: { - type: "object", - properties: { - id: { type: "string", title: "id" }, - file_url: { type: "string", title: "file_url" }, - file_name: { type: "string", title: "file_name" }, - attachment_type: { type: "string", title: "attachment_type" }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "attachments", - description: "Array of attachments objects ", - }, - merge_categories: { - type: "array", - categories: { - type: "string", - enum: [ - "HRIS", - "ATS", - "Accounting", - "Ticketing", - "File Storage", - "CRM", - "Marketing Automation", - ], - enum_information: [ - { value: "HRIS", description: "Merge HRIS Category" }, - { value: "ATS", description: "Merge ATS Category" }, - { value: "Accounting", description: "Merge Accounting Category" }, - { value: "Ticketing", description: "Merge Ticketing Category" }, - { value: "File Storage", description: "Merge File Storage Category" }, - { value: "CRM", description: "Merge CRM Category" }, - { - value: "Marketing Automation", - description: "Merge Marketing Automation Category", - }, - ], - }, - title: "Merge Categories", - description: "Array of Merge's Unified API Categories", - }, - new_york_city_neighborhood: { - type: "string", - title: "Borough", - description: "One of the 5 Boroughs of New York City", - }, - favorite_tv_shows: { - type: "array", - items: { type: "string", format: "uuid" }, - title: "Favorite TV Shows", - description: "Array of TV Show objects on merge.tv_shows", - }, - favorite_watch: { - type: "string", - title: "Favorite Watch", - description: "Favorite watch of all time", - }, - }, - }, - }, - }, - remote_field_classes: { key: "value" }, - status: { linked_account_status: "linked_account_status", can_make_request: true }, - has_conditional_params: true, - has_required_linked_account_params: true, - }; - server - .mockEndpoint() - .get("/accounting/v1/vendor-credits/meta/post") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.vendorCredits.metaPostRetrieve(); - expect(response).toEqual({ - requestSchema: { - type: "object", - properties: { - model: { - type: "object", - required: [ - "last_name", - "first_name", - "merge_categories", - "new_york_city_neighborhood", - "favorite_tv_shows", - "favorite_watch", - ], - properties: { - email_addresses: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - email_address_type: { - type: "string", - title: "email_address_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "email_addresses", - description: "Array of email_addresses objects", - }, - urls: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - url_type: { - type: "string", - title: "url_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "urls", - description: "Array of urls objects", - }, - first_name: { - type: "string", - title: "first_name", - description: "The first name.", - }, - last_name: { - type: "string", - title: "last_name", - description: "The last name.", - }, - phone_numbers: { - type: "array", - items: { - type: "object", - properties: { - value: { - type: "string", - title: "value", - }, - phone_number_type: { - type: "string", - title: "phone_number_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "phone_numbers", - description: "Array of phone_numbers objects", - }, - tags: { - type: "array", - items: { - type: "string", - format: "uuid", - }, - title: "tags", - description: "Array of tags names", - }, - attachments: { - type: "array", - items: { - type: "object", - properties: { - id: { - type: "string", - title: "id", - }, - file_url: { - type: "string", - title: "file_url", - }, - file_name: { - type: "string", - title: "file_name", - }, - attachment_type: { - type: "string", - title: "attachment_type", - }, - integration_params: { - type: "object", - title: "integration_params", - properties: {}, - }, - linked_account_params: { - type: "object", - title: "linked_account_params", - properties: {}, - }, - }, - }, - title: "attachments", - description: "Array of attachments objects ", - }, - merge_categories: { - type: "array", - categories: { - type: "string", - enum: [ - "HRIS", - "ATS", - "Accounting", - "Ticketing", - "File Storage", - "CRM", - "Marketing Automation", - ], - enum_information: [ - { - value: "HRIS", - description: "Merge HRIS Category", - }, - { - value: "ATS", - description: "Merge ATS Category", - }, - { - value: "Accounting", - description: "Merge Accounting Category", - }, - { - value: "Ticketing", - description: "Merge Ticketing Category", - }, - { - value: "File Storage", - description: "Merge File Storage Category", - }, - { - value: "CRM", - description: "Merge CRM Category", - }, - { - value: "Marketing Automation", - description: "Merge Marketing Automation Category", - }, - ], - }, - title: "Merge Categories", - description: "Array of Merge's Unified API Categories", - }, - new_york_city_neighborhood: { - type: "string", - title: "Borough", - description: "One of the 5 Boroughs of New York City", - }, - favorite_tv_shows: { - type: "array", - items: { - type: "string", - format: "uuid", - }, - title: "Favorite TV Shows", - description: "Array of TV Show objects on merge.tv_shows", - }, - favorite_watch: { - type: "string", - title: "Favorite Watch", - description: "Favorite watch of all time", - }, - }, - }, - }, - }, - remoteFieldClasses: { - key: "value", - }, - status: { - linkedAccountStatus: "linked_account_status", - canMakeRequest: true, - }, - hasConditionalParams: true, - hasRequiredLinkedAccountParams: true, - }); - }); -}); diff --git a/tests/wire/accounting/webhookReceivers.test.ts b/tests/wire/accounting/webhookReceivers.test.ts deleted file mode 100644 index e17bc8975..000000000 --- a/tests/wire/accounting/webhookReceivers.test.ts +++ /dev/null @@ -1,64 +0,0 @@ -// This file was auto-generated by Fern from our API Definition. - -import { MergeClient } from "../../../src/Client"; -import { mockServerPool } from "../../mock-server/MockServerPool"; - -describe("WebhookReceiversClient", () => { - test("list", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - - const rawResponseBody = [{ event: "event", is_active: true, key: "key" }]; - server - .mockEndpoint() - .get("/accounting/v1/webhook-receivers") - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.webhookReceivers.list(); - expect(response).toEqual([ - { - event: "event", - isActive: true, - key: "key", - }, - ]); - }); - - test("create", async () => { - const server = mockServerPool.createServer(); - const client = new MergeClient({ - maxRetries: 0, - apiKey: "test", - accountToken: "test", - environment: server.baseUrl, - }); - const rawRequestBody = { event: "event", is_active: true }; - const rawResponseBody = { event: "event", is_active: true, key: "key" }; - server - .mockEndpoint() - .post("/accounting/v1/webhook-receivers") - .jsonBody(rawRequestBody) - .respondWith() - .statusCode(200) - .jsonBody(rawResponseBody) - .build(); - - const response = await client.accounting.webhookReceivers.create({ - event: "event", - isActive: true, - }); - expect(response).toEqual({ - event: "event", - isActive: true, - key: "key", - }); - }); -});